From 6dcec8a176c19eba3734ab1b973791f972bbd5cb Mon Sep 17 00:00:00 2001
From: mdipierro This is a new markup language that we call markmin designed to produce high quality scientific papers and books and also put them online. We provide serializers for html, latex and pdf. It is implemented in the Example of usage: We wanted a markup language with the following requirements: (results depend on text but in average for text ~100K markmin is 30% faster than markdown, for text ~10K it is 10x faster) The web2py book published by lulu, for example, was entirely generated with markmin2pdf from the online web2py wiki markmin2html.py and markmin2latex.py are single files and have no web2py dependence. Their license is BSD. The format is always You can place an anchor anywhere in the text using the syntax This is a new markup language that we call markmin designed to produce high quality scientific papers and books and also put them online. We provide serializers for html, latex and pdf. It is implemented in the Example of usage: This is a blockquote with a list with tables in it: This this a new paragraph with a table. Table has header, footer, sections, odd and even rows: Now lists can be multilevel: Ordered item 1 of sublevel 2 with a paragraph (paragraph can start with point after plus or minus characters, e.g. ++. or --.) This is another item. But with 3 paragraphs, blockquote and sublists: This is the second paragraph in the item. You can add paragraphs to an item, using point notation, where first characters in the string are sequence of points with space between them and another string. For example, this paragraph (in sublevel 2) starts with two points: This is yet another paragraph in the item. and this is a paragraph in sublevel 4 This is a new item with paragraph in sublevel 3. Yet another item with code block: Item in sublevel 3 can be continued with paragraphs. This is a continuous paragraph for item 2 in sublevel 2. You can use such structure to create difficult structured documents. Single paragraph with '----' in it will be turned into separator: And this is the last paragraph in the test. Be happy! ==================== We wanted a markup language with the following requirements: (results depend on text but in average for text ~100K markmin is 30% faster than markdown, for text ~10K it is 10x faster) The web2py book published by lulu, for example, was entirely generated with markmin2pdf from the online web2py wiki markmin2html.py and markmin2latex.py are single files and have no web2py dependence. Their license is BSD. The format is always You can place an anchor anywhere in the text using the syntax is rendered as Two new lines between items break the list in two lists. is rendered as Two new lines between items break the list in two lists. is rendered as Something like this
-Markmin markup language
About
markmin2html function in the markmin2html.py.>>> m = "Hello **world** [[link http://web2py.com]]"
->>> from markmin2html import markmin2html
->>> print markmin2html(m)
->>> from markmin2latex import markmin2latex
->>> print markmin2latex(m)
->>> from markmin2pdf import markmin2pdf # requires pdflatex
->>> print markmin2pdf(m)Why?
Download
Examples
Bold, italic, code and links
-SOURCE OUTPUT # title title ## section section ### subsection subsection **bold** bold ''italic'' italic ``verbatim`` verbatimhttp://google.com http://google.com [[click me #myanchor]]click me More on links
[[title link]]. Notice you can nest bold, italic and code inside the link title.Anchors
[[name]] where name is the name of the anchor.
-You can then link the anchor with link, i.e. [[link #myanchor]].Images
-This paragraph has an image aligned to the right with a width of 200px. Its is placed using the code[[some image http://www.web2py.com/examples/static/web2py_logo.png right 200px]].Unordered Lists
- Dog
+
+
+
+
+
+Markmin markup language
About
markmin2html function in the markmin2html.py.
====================m = "Hello **world** [[link http://web2py.com]]"
+from markmin2html import markmin2html
+print markmin2html(m)
+from markmin2latex import markmin2latex
+print markmin2latex(m)
+from markmin2pdf import markmin2pdf # requires pdflatex
+print markmin2pdf(m)This is a test block with new features:
This is a paragraph before list. You can continue paragraph on the next lines.
This is an ordered list with tables:aa bb cc 11 22 33 T1 T2 t3 aaa bbb ccc ddd fff ggg 123 0 5.0 Title 1 Title 2 Title 3 data 1 data 2 2.00 data 3 data4(long) 23.00 data 5 33.50 New section New data 5.00 data 1 data2(long) 100.45 data 3 12.50 data 4 data 5 .33 data 6 data7(long) 8.01 data 8 514 Total: 9 items 698,79 Multilevel lists
.. This is the second paragraph...this is a blockquote in a list
You can use blockquote with headers, paragraphs, tables and lists in it:
Tables can have or have not header and footer. This table is defined without any header and footer in it:red fox 0 blue dolphin 1000 green leaf 10000 line 1
+ line 2
+ line 3
This item finishes with this paragraph. line 1
+line 2
+ line 3 this is another
+code block
+ in the
+ sublevel 3 itemThis is the last section of the test
Why?
Download
Examples
Bold, italic, code and links
SOURCE OUTPUT # titletitle ## sectionsection ### subsectionsubsection **bold**bold ''italic''italic ~~strikeout~~strikeout``verbatim``verbatim``color with **bold**``:redcolor with bold ``many colors``:color[blue:#ffff00]many colors http://google.comhttp://google.com [[**click** me #myanchor]]click me [[click me [extra info] #myanchor popup]]click me More on links
[[title link]] or [[title [extra] link]]. Notice you can nest bold, italic, strikeout and code inside the link title.Anchors
[[name]] where name is the name of the anchor. You can then link the anchor with link, i.e. [[link #myanchor]] or link with an extra info, i.e. [[link with an extra info [extra info] #myanchor]].Images
This paragraph has an image aligned to the right with a width of 200px. Its is placed using the code[[alt-string for the image [the image title] http://www.web2py.com/examples/static/web2py_logo.png right 200px]].Unordered Lists
- Dog
- Cat
-- MouseOrdered Lists
+ Dog
+- MouseOrdered Lists
+ Dog
+ Cat
-+ MouseTables
-is a table and is rendered as
----------
-**A** | **B** | **C**
-0 | 0 | X
-0 | X | 0
-X | 0 | 0
------:abc
Four or more dashes delimit the table and | separates the columns.
-The A B C 0 0 X 0 X 0 X 0 0 :abc at the end sets the class for the table and it is optional.
A table with a single cell is rendered as a blockquote:
Hello world-
<code>, escaping and extra stuffdef test():
- return "this is Python code"Optionally a ` inside a ``...`` block can be inserted escaped with !`!.
-The :python after the markup is also optional. If present, by default, it is used to set the class of the <code> block.
-The behavior can be overridden by passing an argument extra to the render function. For example:
>>> markmin2html("``aaa``:custom",
- extra=dict(custom=lambda text: 'x'+text+'x'))generates
'xaaax'(the ``...``:custom block is rendered by the custom=lambda function passed to render).
Markmin also supports the <video> and <audio> html5 tags using the notation: -
[[title link video]]
-[[title link audio]]Formulas can be embedded into HTML with $$formula$$.
-You can use Google charts to render the formula:
>>> LATEX = '<img src="http://chart.apis.google.com/chart?cht=tx&chl=%s" align="center"/>'
->>> markmin2html(text,{'latex':lambda code: LATEX % code.replace('"','"')})This requires a syntax highlighting tool, such as the web2py CODE helper.
>>> extra={'code_cpp':lambda text: CODE(text,language='cpp').xml(),
- 'code_java':lambda text: CODE(text,language='java').xml(),
- 'code_python':lambda text: CODE(text,language='python').xml(),
- 'code_html':lambda text: CODE(text,language='html').xml()}
->>> markmin2html(text,extra=extra)Code can now be marked up as in this example:
``
++ Mouseis rendered as
+ Dogs
+ -- red
+ -- brown
+ -- black
++ Cats
+ -- fluffy
+ -- smooth
+ -- bald
++ Mice
+ -- small
+ -- big
+ -- hugeis rendered as
Something like this
-----------------
+**A**|**B**|**C**
+=================
+ 0 | 0 | X
+ 0 | X | 0
+ X | 0 | 0
+=================
+**D**|**F**|**G**
+-----------------:abc[id] is a table and is rendered as| A | B | C |
| 0 | 0 | X |
| 0 | X | 0 |
| X | 0 | 0 |
| D | F | G |
:abc, :id[abc_1] or :abc[abc_1] at the end sets the class and/or id for the table and it is optional.A table with a single cell is rendered as a blockquote:
Hello world
Blockquote can contain headers, paragraphs, lists and tables:
-----
+ This is a paragraph in a blockquote
+
+ + item 1
+ + item 2
+ -- item 2.1
+ -- item 2.2
+ + item 3
+
+ ---------
+ 0 | 0 | X
+ 0 | X | 0
+ X | 0 | 0
+ ---------:tableclass1
+-----is rendered as:
This is a paragraph in a blockquote
- item 1
- item 2
- item 2.1
- item 2.2
- item 3
0 0 X 0 X 0 X 0 0
<code>, escaping and extra stuffdef test():
+ return "this is Python code"Optionally a ` inside a ``...`` block can be inserted escaped with !`!.
NOTE: You can escape markmin constructions ('',``,**,~~,[,{,]},$,@) with '\' character: so \`\` can replace !`!`! escape string
The :python after the markup is also optional. If present, by default, it is used to set the class of the <code> block. The behavior can be overridden by passing an argument extra to the render function. For example:
markmin2html("``aaa``:custom",
+ extra=dict(custom=lambda text: 'x'+text+'x'))generates
'xaaax'(the ``...``:custom block is rendered by the custom=lambda function passed to render).
Markmin also supports the <video> and <audio> html5 tags using the notation:
[[message link video]]
+[[message link audio]]
+
+[[message [title] link video]]
+[[message [title] link audio]] where message will be shown in brousers without HTML5 video/audio tags support.Formulas can be embedded into HTML with $$formula$$. You can use Google charts to render the formula:
LATEX = '<img src="http://chart.apis.google.com/chart?cht=tx&chl=%s" />'
+markmin2html(text,{'latex':lambda code: LATEX % code.replace('"','\"')})This requires a syntax highlighting tool, such as the web2py CODE helper.
extra={'code_cpp':lambda text: CODE(text,language='cpp').xml(),
+ 'code_java':lambda text: CODE(text,language='java').xml(),
+ 'code_python':lambda text: CODE(text,language='python').xml(),
+ 'code_html':lambda text: CODE(text,language='html').xml()} or simple:extra={'code':lambda text,lang='python': CODE(text,language=lang).xml()}markmin2html(text,extra=extra)Code can now be marked up as in this example:
``
<html><body>example</body></html>
-``:code_htmlCitations are treated as internal links in html and proper citations in latex if there is a final section called "References". Items like
- [[key]] valuein the References will be translated into Latex
\bibitem{key} valueHere is an example of usage:
As shown in Ref.``mdipierro``:cite
+``:code_html OR``
+<html><body>example</body></html>
+``:code[html]Citations are treated as internal links in html and proper citations in latex if there is a final section called "References". Items like
- [[key]] valuein the References will be translated into Latex
\bibitem{key} valueHere is an example of usage:
As shown in Ref.``mdipierro``:cite
## References
-- [[mdipierro]] web2py Manual, 3rd Edition, lulu.com<ul/>, <ol/>, <code/>, <table/>, <blockquote/>, <h1/>, ..., <h6/> do not have <p>...</p> around them.
<ul/>, <ol/>, <code/>, <table/>, <blockquote/>, <h1/>, ..., <h6/> do not have <p>...</p> around them.