jemdocThis website is generated by jemdoc+MathJax and hosted on Github Pages. jemdoc is a light text-based markup language designed for creating websites by Jacob Mattingley. Thanks to Dr. Wonseok Shin, MathJax is supported. Maybe consider using Shin's custom css. Other packages
Below are guides on jemdoc and its syntax, not exhaustive, copied :) Basic formatting
BlocksCode block syntax
~~~ {Optionally empty title}{Optionally empty highlight mode} Code block with monospaced text. ~~~ Information block
Omit the second pair of braces in the first line of the block (or omit the whole first line altogether if you don't want a title) and you will get an information block. All the usual conventions apply in here. Headings and listsHeadings are defined by starting a line with =.
Lists are defined with - for bulleted lists, . for numbered lists and : for lists of definitions. Here is some code and the resulting list: - Bullet level one -- Bullet level two . Number level one .. Number level two .. Number level two (again) : {jemdoc} light markup : {asciidoc} a great alternative, but more complicated
Preventing matches
Other stuff
This page is not exhaustive. These are some extended syntax options that may come in useful. Left aligned image blocksAs seen here, for example, left-aligned image blocks place an image and allow ordinary jemdoc marked-up text to flow around the right-hand side. Left-aligned image block syntax
~~~ {}{img_left}{FILENAME.IMG}{alt text}{WIDTHpx}{HEIGHTpx}{IMGLINKTARGET} Ordinary jemdoc markup goes here. ~~~ All arguments may be left blank, though you should specify an image filename, and alt text should be descriptive for reasons like those given by Wikipedia. Raw blocksWhen placing large amounts of raw html, you should use a raw block instead of {{inline html escaping}}. As well as cleaner syntax, raw blocks will avoid having <p> tags in the wrong places. Raw block syntax
~~~ {}{raw} Any text here will be copied straight to the output file without processing. ~~~ Other character setsHere's a quick example of how to include text in a language with a different character set. To include Korean (한국말), use something like this: {{<span lang="ko" xml:lang="ko">}}한국말{{</span>}} (Let me know if you need better support for your language.) Including other filesThe line #include{otherfile.jemdoc} will include the contents of otherfile.jemdoc as if the contents were actually in the ordinary input file (that is, with full jemdoc substitutions). The line #includeraw{otherfile.html} will copy the contents of otherfile.html verbatim to the current position in the output file (that is, without any jemdoc substitutions). |