hplgit / doconce

Lightweight markup language - document once, include anywhere
http://hplgit.github.io/doconce/doc/web/index.html
Other
310 stars 60 forks source link

Tag for epirgraph #123

Closed worldmind closed 6 years ago

worldmind commented 6 years ago

I think epirgraph it is basic tag. LaTeX has \epirgraph{phrase}{author}, but in DocOnce I can not found something like it/

KGHustad commented 6 years ago

You can generate format-specific code with a simple if-test

# #if FORMAT == "latex"
Latex specific code
# #else
Code to use for other formats
# #endif