File install/INSTALL.md changed (mode: 100644) (index 18ea7f0..d29a45d) |
... |
... |
Type: `git clone https://github.com/poonamveeral/GeneralRepo` |
192 |
192 |
16) Test pandoc-citeproc |
16) Test pandoc-citeproc |
193 |
193 |
* In the same install folder, type: |
* In the same install folder, type: |
194 |
194 |
|
|
195 |
|
`pandoc --citeproc test_pandoc-citeproc.md -o test_pandoc-citeproc.html` |
|
|
195 |
|
`pandoc -citeproc test_pandoc-citeproc.md -o test_pandoc-citeproc.html` |
196 |
196 |
|
|
197 |
197 |
* In the install folder, you should see a file called "test_pandoc-citeproc.html" containing |
* In the install folder, you should see a file called "test_pandoc-citeproc.html" containing |
198 |
198 |
|
|
|
... |
... |
For our example, in your terminal, while in the directory of where your markdown |
285 |
285 |
or |
or |
286 |
286 |
|
|
287 |
287 |
``` |
``` |
288 |
|
pandoc --toc --filter pandoc-numbering --citeproc --filter pandoc-include-code \ |
|
|
288 |
|
pandoc --toc --filter pandoc-numbering -citeproc --filter pandoc-include-code \ |
289 |
289 |
--top-level-division=chapter -M date="$(LANG=en_us_88591 date '+%B %e, %Y (%r)')" \ |
--top-level-division=chapter -M date="$(LANG=en_us_88591 date '+%B %e, %Y (%r)')" \ |
290 |
290 |
--pdf-engine=xelatex --pdf-engine-opt=-shell-escape -V links-as-notes \ |
--pdf-engine=xelatex --pdf-engine-opt=-shell-escape -V links-as-notes \ |
291 |
291 |
--default-image-extension=pdf -o example.pdf example.md |
--default-image-extension=pdf -o example.pdf example.md |
|
... |
... |
For our example, in your terminal, while in the directory of where your markdown |
301 |
301 |
or |
or |
302 |
302 |
|
|
303 |
303 |
``` |
``` |
304 |
|
pandoc --toc --filter pandoc-numbering --citeproc --filter pandoc-include-code \ |
|
|
304 |
|
pandoc --toc --filter pandoc-numbering -citeproc --filter pandoc-include-code \ |
305 |
305 |
--top-level-division=chapter -M date="$(LANG=en_us_88591 date '+%B %e, %Y (%r)')" \ |
--top-level-division=chapter -M date="$(LANG=en_us_88591 date '+%B %e, %Y (%r)')" \ |
306 |
306 |
--default-image-extension=svg -o example.odt example.md |
--default-image-extension=svg -o example.odt example.md |
307 |
307 |
``` |
``` |
|
... |
... |
For our example, in your terminal, while in the directory of where your markdown |
317 |
317 |
or |
or |
318 |
318 |
|
|
319 |
319 |
``` |
``` |
320 |
|
pandoc --toc --filter pandoc-numbering --citeproc --filter pandoc-include-code \ |
|
|
320 |
|
pandoc --toc --filter pandoc-numbering -citeproc --filter pandoc-include-code \ |
321 |
321 |
--top-level-division=chapter -M date="$(LANG=en_us_88591 date '+%B %e, %Y (%r)')" \ |
--top-level-division=chapter -M date="$(LANG=en_us_88591 date '+%B %e, %Y (%r)')" \ |
322 |
322 |
--css=style/style.css --toc-depth=1 --self-contained --default-image-extension=svg \ |
--css=style/style.css --toc-depth=1 --self-contained --default-image-extension=svg \ |
323 |
323 |
-o example.html example.md |
-o example.html example.md |
File notes/Makefile changed (mode: 100644) (index 01fde7c..1bba46f) |
12 |
12 |
|
|
13 |
13 |
MAKEFLAGS:= -j |
MAKEFLAGS:= -j |
14 |
14 |
# Maximize parallel execution whenever possible |
# Maximize parallel execution whenever possible |
15 |
|
OPTIONSPANDOC:= --toc --filter pandoc-numbering --citeproc --filter pandoc-include-code --top-level-division=chapter -M date="$$(LANG=en_us_88591 date '+%B %e, %Y (%r)')" --lua-filter filters/default-code-class.lua -M default-code-class=sqlmysql |
|
|
15 |
|
OPTIONSPANDOC:= --toc --filter pandoc-numbering -citeproc --filter pandoc-include-code --top-level-division=chapter -M date="$$(LANG=en_us_88591 date '+%B %e, %Y (%r)')" --lua-filter filters/default-code-class.lua -M default-code-class=sqlmysql |
16 |
16 |
# Options common to all invokations of pandoc. Cf https://pandoc.org/MANUAL.html to understand them. |
# Options common to all invokations of pandoc. Cf https://pandoc.org/MANUAL.html to understand them. |
17 |
17 |
# -citeproc used to be --filter pandoc-citeproc |
# -citeproc used to be --filter pandoc-citeproc |
18 |
18 |
OPTIONSPANDOCODT:= $(OPTIONSPANDOC) --default-image-extension=svg |
OPTIONSPANDOCODT:= $(OPTIONSPANDOC) --default-image-extension=svg |