We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 38ef9dc commit ab64c14Copy full SHA for ab64c14
.gitignore
@@ -1,2 +1,3 @@
1
/manual/build/**
2
manual/index.html
3
+manual/tool/template/mdbookDEV.html
manual/tool/Makefile_include
@@ -22,6 +22,20 @@ pdf:: metadata.yml *.md
22
-V geometry:landscape
23
24
25
+dev:: metadata.yml *.md
26
+ pandoc \
27
+ metadata.yml $(shell echo *.md) \
28
+ --output index.html \
29
+ --template $(TOOL_DIR)/template/mdbookDEV.html \
30
+ --from markdown \
31
+ --listings \
32
+ --table-of-contents \
33
+ --toc-depth=3 \
34
+ --katex \
35
+ --dpi=300
36
+ @echo "HTML file generated: index.html"
37
+ @explorer.exe "H:\User Folders\Documents\3D Printer\Printers\Voron\PFA\MicronManual\manual\index.html"
38
+
39
40
html:: metadata.yml *.md
41
pandoc \
0 commit comments