Commit be4d19ff authored by pennae's avatar pennae
Browse files

doc: render nixpkgs manual with nrd

also updates nixdoc to 2.3.0. the nixdoc update is not a separate commit
because that would leave the manual build broken for one commit,
potentially breaking bisects and rebases.
parent b521f451
Loading
Loading
Loading
Loading

doc/Makefile

deleted100644 → 0
+0 −101
Original line number Diff line number Diff line
MD_TARGETS=$(addsuffix .xml, $(basename $(shell find . -type f -regex '.*\.md$$' -not -name README.md)))

PANDOC ?= pandoc

pandoc_media_dir = media
# NOTE: Keep in sync with conversion script (/maintainers/scripts/db-to-md.sh).
# TODO: Remove raw-attribute when we can get rid of DocBook altogether.
pandoc_commonmark_enabled_extensions = +attributes+fenced_divs+footnotes+bracketed_spans+definition_lists+pipe_tables+raw_attribute
# Not needed:
# - docbook-reader/citerefentry-to-rst-role.lua (only relevant for DocBook → MarkDown/rST/MyST)
pandoc_flags = --extract-media=$(pandoc_media_dir) \
	--lua-filter=$(PANDOC_LUA_FILTERS_DIR)/diagram-generator.lua \
	--lua-filter=build-aux/pandoc-filters/myst-reader/roles.lua \
	--lua-filter=$(PANDOC_LINK_MANPAGES_FILTER) \
	--lua-filter=build-aux/pandoc-filters/docbook-writer/rst-roles.lua \
	--lua-filter=build-aux/pandoc-filters/docbook-writer/labelless-link-is-xref.lua \
	-f commonmark$(pandoc_commonmark_enabled_extensions)+smart

.PHONY: all
all: validate format out/html/index.html

.PHONY: render-md
render-md: ${MD_TARGETS}

.PHONY: debug
debug:
	nix-shell --run "xmloscopy --docbook5 ./manual.xml ./manual-full.xml"

.PHONY: format
format: doc-support/result
	find . -iname '*.xml' -type f | while read f; do \
		echo $$f ;\
		xmlformat --config-file "doc-support/result/xmlformat.conf" -i $$f ;\
	done

.PHONY: fix-misc-xml
fix-misc-xml:
	find . -iname '*.xml' -type f \
		-exec ../nixos/doc/varlistentry-fixer.rb {} ';'

.PHONY: clean
clean:
	rm -f ${MD_TARGETS} doc-support/result .version manual-full.xml functions/library/locations.xml functions/library/generated
	rm -rf ./out/ ./highlightjs ./media

.PHONY: validate
validate: manual-full.xml doc-support/result
	jing doc-support/result/docbook.rng manual-full.xml

out/html/index.html: doc-support/result manual-full.xml style.css highlightjs
	mkdir -p out/html
	xsltproc \
		--nonet --xinclude \
		--output $@ \
		doc-support/result/xhtml.xsl \
		./manual-full.xml

	mkdir -p out/html/highlightjs/
	cp -r highlightjs out/html/

	cp -r $(pandoc_media_dir) out/html/
	cp ./overrides.css out/html/
	cp ./style.css out/html/style.css

	mkdir -p out/html/images/callouts
	cp doc-support/result/xsl/docbook/images/callouts/*.svg out/html/images/callouts/
	chmod u+w -R out/html/

highlightjs: doc-support/result
	mkdir -p highlightjs
	cp -r doc-support/result/highlightjs/highlight.pack.js highlightjs/
	cp -r doc-support/result/highlightjs/LICENSE highlightjs/
	cp -r doc-support/result/highlightjs/mono-blue.css highlightjs/
	cp -r doc-support/result/highlightjs/loader.js highlightjs/


manual-full.xml: ${MD_TARGETS} .version functions/library/locations.xml functions/library/generated *.xml **/*.xml **/**/*.xml
	xmllint --nonet --xinclude --noxincludenode manual.xml --output manual-full.xml

.version: doc-support/result
	ln -rfs ./doc-support/result/version .version

doc-support/result: doc-support/default.nix
	(cd doc-support; nix-build)

functions/library/locations.xml: doc-support/result
	ln -rfs ./doc-support/result/function-locations.xml functions/library/locations.xml

functions/library/generated: doc-support/result
	ln -rfs ./doc-support/result/function-docs functions/library/generated

%.section.xml: %.section.md
	$(PANDOC) $^ -t docbook \
		$(pandoc_flags) \
		-o $@

%.chapter.xml: %.chapter.md
	$(PANDOC) $^ -t docbook \
		--top-level-division=chapter \
		$(pandoc_flags) \
		-o $@

doc/builders.md

0 → 100644
+12 −0
Original line number Diff line number Diff line
# Builders {#part-builders}

```{=include=} chapters
builders/fetchers.chapter.md
builders/trivial-builders.chapter.md
builders/testers.chapter.md
builders/special.md
builders/images.md
hooks/index.md
languages-frameworks/index.md
builders/packages/index.md
```

doc/builders/images.md

0 → 100644
+13 −0
Original line number Diff line number Diff line
# Images {#chap-images}

This chapter describes tools for creating various types of images.

```{=include=} sections
images/appimagetools.section.md
images/dockertools.section.md
images/ocitools.section.md
images/snaptools.section.md
images/portableservice.section.md
images/makediskimage.section.md
images/binarycache.section.md
```

doc/builders/images.xml

deleted100644 → 0
+0 −15
Original line number Diff line number Diff line
<chapter xmlns="http://docbook.org/ns/docbook"
         xmlns:xi="http://www.w3.org/2001/XInclude"
         xml:id="chap-images">
 <title>Images</title>
 <para>
  This chapter describes tools for creating various types of images.
 </para>
 <xi:include href="images/appimagetools.section.xml" />
 <xi:include href="images/dockertools.section.xml" />
 <xi:include href="images/ocitools.section.xml" />
 <xi:include href="images/snaptools.section.xml" />
 <xi:include href="images/portableservice.section.xml" />
 <xi:include href="images/makediskimage.section.xml" />
 <xi:include href="images/binarycache.section.xml" />
</chapter>
+1 −1
Original line number Diff line number Diff line
# DLib {#dlib}

[DLib](http://dlib.net/) is a modern, C++-based toolkit which provides several machine learning algorithms.
[DLib](http://dlib.net/) is a modern, C++\-based toolkit which provides several machine learning algorithms.

## Compiling without AVX support {#compiling-without-avx-support}

Loading