The Makefile builds the specification, but not the tutorial.
I’ve got it build something by duplicating SPEC_SRC to TUTORIAL_SRC, then:
TUTORIAL_HTML := tutorial/tutorial.html
$(TUTORIAL_HTML): $(TUTORIAL_SRC) _spec/template.html Makefile
pandoc -t html5 \
-f markdown \
--template=_spec/template.html \
$(PANDOC_FLAGS) --listings --highlight-style=pygments \
--mathjax \
$(TUTORIAL_SRC) \
-o $(TUTORIAL_HTML)
This however does not include the example listings read using {% capture source %}{% include examples/hello-world/hello.aum %}{% endcapture %} and then {{ source }} as is done in hello-world.md for instance.
Maybe this version of pandoc does not have the necessary modules or whatever, but is there some option I’m missing?
The Makefile builds the specification, but not the tutorial.
I’ve got it build something by duplicating
SPEC_SRCtoTUTORIAL_SRC, then:This however does not include the example listings read using
{% capture source %}{% include examples/hello-world/hello.aum %}{% endcapture %}and then{{ source }}as is done inhello-world.mdfor instance.Maybe this version of
pandocdoes not have the necessary modules or whatever, but is there some option I’m missing?