docgenerator 1.0.4 → 1.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/creole/creole2doc.rb +777 -0
- data/lib/creole/creole_inclusion_and_plugins.rb +236 -0
- data/lib/creole/creole_placeholder.rb +74 -0
- data/lib/creole/creole_tabular.rb +170 -0
- data/lib/docgenerator.rb +15 -6
- data/lib/docgenerator_attribute.rb +2 -2
- data/lib/docgenerator_characters.rb +20 -4
- data/lib/docgenerator_document.rb +132 -42
- data/lib/docgenerator_element.rb +531 -524
- data/lib/docgenerator_elements.rb +408 -399
- data/lib/docgenerator_environments.rb +28 -2
- data/lib/docgenerator_footnote.rb +72 -79
- data/lib/docgenerator_sections.rb +1 -1
- data/lib/docgenerator_tabular.rb +8 -3
- data/lib/packages/docgenerator_beamer.rb +253 -0
- data/lib/packages/docgenerator_scrlettr2.rb +53 -9
- data/lib/templates/docgenerator_template_css.rb +4 -0
- data/lib/wiki2doc/wiki2docgenerator.rb +1087 -970
- data/lib/yaml2presentation/yaml2presentation.rb +1091 -0
- data/self_docgenerator.rb +8 -6
- data/unittest/Red_Flower.jpg +0 -0
- data/unittest/creole1.0test.txt +128 -0
- data/unittest/expected/beamer_01_doc.html +1 -1
- data/unittest/expected/beamer_02_doc.html +1 -1
- data/unittest/expected/beamer_doc_html_overview_with_detailpic_and_text_doc.html +34 -0
- data/unittest/expected/beamer_doc_html_overview_with_detailpic_doc.html +34 -0
- data/unittest/expected/beamer_doc_key_doc.html +1 -1
- data/unittest/expected/beamer_doc_note_doc.html +1 -1
- data/unittest/expected/beamer_doc_pic_bottom_doc.html +1 -1
- data/unittest/expected/beamer_doc_pic_doc.html +1 -1
- data/unittest/expected/beamer_doc_pic_left_doc.html +1 -1
- data/unittest/expected/beamer_doc_pic_right_doc.html +1 -1
- data/unittest/expected/beamer_doc_pic_top_doc.html +1 -1
- data/unittest/expected/test_footnote.html +2 -2
- data/unittest/expected/test_footnote.latex +1 -1
- data/unittest/expected/test_footnote_group.html +3 -3
- data/unittest/expected/test_footnote_group.latex +2 -2
- data/unittest/expected_creole/test_creole.html +3 -0
- data/unittest/expected_creole/test_creole_characters_all.html +10 -0
- data/unittest/expected_creole/test_creole_characters_all.latex +20 -0
- data/unittest/expected_creole/test_creole_characters_special.html +10 -0
- data/unittest/expected_creole/test_creole_characters_special.latex +18 -0
- data/unittest/expected_creole/test_creole_countdown.html +3 -0
- data/unittest/expected_creole/test_creole_countdown.latex +4 -0
- data/unittest/expected_creole/test_creole_creole1.0test.html +182 -0
- data/unittest/expected_creole/test_creole_creole1.0test.latex +253 -0
- data/unittest/expected_creole/test_creole_creole1.0test.text +160 -0
- data/unittest/expected_creole/test_creole_footnotes.html +9 -0
- data/unittest/expected_creole/test_creole_footnotes.latex +14 -0
- data/unittest/expected_creole/test_creole_footnotes_label.html +9 -0
- data/unittest/expected_creole/test_creole_headings.html +17 -0
- data/unittest/expected_creole/test_creole_headings.latex +19 -0
- data/unittest/expected_creole/test_creole_headings.text +48 -0
- data/unittest/expected_creole/test_creole_headings.wiki +37 -0
- data/unittest/expected_creole/test_creole_hr.html +7 -0
- data/unittest/expected_creole/test_creole_hr.latex +9 -0
- data/unittest/expected_creole/test_creole_hr.text +4 -0
- data/unittest/expected_creole/test_creole_inline.html +3 -0
- data/unittest/expected_creole/test_creole_inline.latex +4 -0
- data/unittest/expected_creole/test_creole_inline.text +2 -0
- data/unittest/expected_creole/test_creole_inline_ruby.html +12 -0
- data/unittest/expected_creole/test_creole_inline_ruby.latex +20 -0
- data/unittest/expected_creole/test_creole_inline_ruby_raw.html +6 -0
- data/unittest/expected_creole/test_creole_inline_ruby_raw.latex +8 -0
- data/unittest/expected_creole/test_creole_input.normsource +23 -0
- data/unittest/expected_creole/test_creole_label.html +12 -0
- data/unittest/expected_creole/test_creole_label.latex +15 -0
- data/unittest/expected_creole/test_creole_line_break.html +6 -0
- data/unittest/expected_creole/test_creole_line_break.latex +8 -0
- data/unittest/expected_creole/test_creole_links_explicit_internal.html +6 -0
- data/unittest/expected_creole/test_creole_links_explicit_internal.text +4 -0
- data/unittest/expected_creole/test_creole_links_explicit_with_em.html +3 -0
- data/unittest/expected_creole/test_creole_links_explicit_with_em.latex +4 -0
- data/unittest/expected_creole/test_creole_links_explicit_with_em.text +2 -0
- data/unittest/expected_creole/test_creole_links_external.html +6 -0
- data/unittest/expected_creole/test_creole_links_external.latex +8 -0
- data/unittest/expected_creole/test_creole_links_external.text +4 -0
- data/unittest/expected_creole/test_creole_links_external_implicit.html +9 -0
- data/unittest/expected_creole/test_creole_links_external_implicit.latex +12 -0
- data/unittest/expected_creole/test_creole_links_external_implicit.text +6 -0
- data/unittest/expected_creole/test_creole_links_file.html +6 -0
- data/unittest/expected_creole/test_creole_links_file.latex +8 -0
- data/unittest/expected_creole/test_creole_links_file.text +4 -0
- data/unittest/expected_creole/test_creole_list_ol.html +12 -0
- data/unittest/expected_creole/test_creole_list_ol.latex +22 -0
- data/unittest/expected_creole/test_creole_list_ol_after_ul.html +12 -0
- data/unittest/expected_creole/test_creole_list_ol_after_ul.latex +20 -0
- data/unittest/expected_creole/test_creole_list_ol_after_ul.text +6 -0
- data/unittest/expected_creole/test_creole_list_ol_ul.html +15 -0
- data/unittest/expected_creole/test_creole_list_ol_ul.latex +26 -0
- data/unittest/expected_creole/test_creole_list_ul.html +22 -0
- data/unittest/expected_creole/test_creole_list_ul.latex +40 -0
- data/unittest/expected_creole/test_creole_list_ul.normsource +83 -0
- data/unittest/expected_creole/test_creole_list_ul_too_much.html +24 -0
- data/unittest/expected_creole/test_creole_list_ul_too_much.latex +44 -0
- data/unittest/expected_creole/test_creole_newline.html +9 -0
- data/unittest/expected_creole/test_creole_newline.latex +11 -0
- data/unittest/expected_creole/test_creole_newline.text +7 -0
- data/unittest/expected_creole/test_creole_paragraphs.html +6 -0
- data/unittest/expected_creole/test_creole_paragraphs.latex +8 -0
- data/unittest/expected_creole/test_creole_paragraphs.normsource +27 -0
- data/unittest/expected_creole/test_creole_paragraphs.text +4 -0
- data/unittest/expected_creole/test_creole_paragraphs.wiki +4 -0
- data/unittest/expected_creole/test_creole_paragraphs_wrap.html +5 -0
- data/unittest/expected_creole/test_creole_paragraphs_wrap.latex +6 -0
- data/unittest/expected_creole/test_creole_paragraphs_wrap.text +4 -0
- data/unittest/expected_creole/test_creole_paragraphs_wrap.wiki +4 -0
- data/unittest/expected_creole/test_creole_paragraphs_wrap0.html +9 -0
- data/unittest/expected_creole/test_creole_paragraphs_wrap0.latex +11 -0
- data/unittest/expected_creole/test_creole_paragraphs_wrap0.text +7 -0
- data/unittest/expected_creole/test_creole_paragraphs_wrap0.wiki +7 -0
- data/unittest/expected_creole/test_creole_paragraphs_wrap60.html +5 -0
- data/unittest/expected_creole/test_creole_paragraphs_wrap60.latex +6 -0
- data/unittest/expected_creole/test_creole_paragraphs_wrap60.text +4 -0
- data/unittest/expected_creole/test_creole_paragraphs_wrap60.wiki +4 -0
- data/unittest/expected_creole/test_creole_picture_link.html +6 -0
- data/unittest/expected_creole/test_creole_pictures.html +10 -0
- data/unittest/expected_creole/test_creole_pictures.latex +13 -0
- data/unittest/expected_creole/test_creole_pictures_css.html +3 -0
- data/unittest/expected_creole/test_creole_pictures_css.latex +4 -0
- data/unittest/expected_creole/test_creole_pictures_imgclass.html +6 -0
- data/unittest/expected_creole/test_creole_pictures_imgclass.latex +8 -0
- data/unittest/expected_creole/test_creole_placeholders_html.html +7 -0
- data/unittest/expected_creole/test_creole_placeholders_html.latex +8 -0
- data/unittest/expected_creole/test_creole_placeholders_html.text +4 -0
- data/unittest/expected_creole/test_creole_placeholders_latex.html +6 -0
- data/unittest/expected_creole/test_creole_placeholders_latex.latex +9 -0
- data/unittest/expected_creole/test_creole_placeholders_latex.text +4 -0
- data/unittest/expected_creole/test_creole_tabular.html +20 -0
- data/unittest/expected_creole/test_creole_tabular.latex +22 -0
- data/unittest/expected_creole/test_creole_tabular_creole.html +18 -0
- data/unittest/expected_creole/test_creole_tabular_creole.latex +19 -0
- data/unittest/expected_creole/test_creole_tabular_css.html +20 -0
- data/unittest/expected_creole/test_creole_tabular_css.latex +22 -0
- data/unittest/expected_creole/test_creole_toc.html +11 -0
- data/unittest/expected_creole/test_creole_toc.latex +22 -0
- data/unittest/expected_creole/test_creole_toc.text +4 -0
- data/unittest/expected_creole/test_creole_toc_text.html +5 -0
- data/unittest/expected_creole/test_creole_toc_text.latex +5 -0
- data/unittest/expected_creole/test_creole_ul_multiple_line.html +7 -0
- data/unittest/expected_creole/test_creole_ul_multiple_line.latex +14 -0
- data/unittest/expected_creole/test_creole_ul_with_blank.html +11 -0
- data/unittest/expected_creole/test_creole_ul_with_blank.latex +20 -0
- data/unittest/expected_creole/test_creole_ul_with_bold.creole +0 -0
- data/unittest/expected_creole/test_creole_ul_with_bold.html +11 -0
- data/unittest/expected_creole/test_creole_ul_with_bold.latex +18 -0
- data/unittest/expected_creole/test_creole_ul_with_bold.text +7 -0
- data/unittest/expected_creole/test_creole_verbatim.html +25 -0
- data/unittest/expected_creole/test_creole_verbatim.latex +33 -0
- data/unittest/expected_creole/test_creole_verbatim.text +17 -0
- data/unittest/expected_creole/test_creole_verbatim_inline.html +6 -0
- data/unittest/expected_creole/test_creole_verbatim_inline.latex +8 -0
- data/unittest/expected_creole/test_creole_verbatim_inline_at_start.html +6 -0
- data/unittest/expected_creole/test_creole_verbatim_inline_at_start.latex +8 -0
- data/unittest/expected_privat/test_creole_test_document.html +6 -0
- data/unittest/{expected → expected_wiki}/test_wiki.html +0 -0
- data/unittest/{expected → expected_wiki}/test_wiki.latex +0 -0
- data/unittest/{expected → expected_wiki}/test_wiki.text +0 -0
- data/unittest/{expected → expected_wiki}/test_wiki.wiki +0 -0
- data/unittest/{expected → expected_wiki}/test_wiki_amazon.html +0 -0
- data/unittest/{expected → expected_wiki}/test_wiki_description.html +0 -0
- data/unittest/{expected → expected_wiki}/test_wiki_description.latex +0 -0
- data/unittest/{expected → expected_wiki}/test_wiki_description.text +0 -0
- data/unittest/{expected → expected_wiki}/test_wiki_description.wiki +0 -0
- data/unittest/expected_wiki/test_wiki_footnote.html +8 -0
- data/unittest/expected_wiki/test_wiki_footnote.latex +17 -0
- data/unittest/{expected → expected_wiki}/test_wiki_footnote.text +2 -4
- data/unittest/expected_wiki/test_wiki_footnote.wiki +10 -0
- data/unittest/expected_wiki/test_wiki_footnote_2.html +8 -0
- data/unittest/expected_wiki/test_wiki_footnote_groupid.html +21 -0
- data/unittest/{expected → expected_wiki}/test_wiki_html_code.html +0 -0
- data/unittest/{expected → expected_wiki}/test_wiki_html_code.latex +0 -0
- data/unittest/{expected → expected_wiki}/test_wiki_html_code.text +0 -0
- data/unittest/{expected → expected_wiki}/test_wiki_html_code.wiki +0 -0
- data/unittest/{expected → expected_wiki}/test_wiki_inline.html +0 -0
- data/unittest/{expected → expected_wiki}/test_wiki_inline.latex +0 -0
- data/unittest/{expected → expected_wiki}/test_wiki_inline.text +0 -0
- data/unittest/{expected → expected_wiki}/test_wiki_inline.wiki +0 -0
- data/unittest/{expected → expected_wiki}/test_wiki_label.html +0 -0
- data/unittest/{expected → expected_wiki}/test_wiki_link.html +0 -0
- data/unittest/{expected → expected_wiki}/test_wiki_link.latex +0 -0
- data/unittest/{expected → expected_wiki}/test_wiki_link.log +0 -0
- data/unittest/{expected → expected_wiki}/test_wiki_link.wiki +0 -0
- data/unittest/{expected → expected_wiki}/test_wiki_list_ol.html +0 -0
- data/unittest/{expected → expected_wiki}/test_wiki_list_ol.latex +0 -0
- data/unittest/{expected → expected_wiki}/test_wiki_list_ol.text +0 -0
- data/unittest/{expected → expected_wiki}/test_wiki_list_ol.wiki +0 -0
- data/unittest/{expected → expected_wiki}/test_wiki_list_ol_after_ul.html +0 -0
- data/unittest/{expected → expected_wiki}/test_wiki_list_ol_after_ul.latex +0 -0
- data/unittest/{expected → expected_wiki}/test_wiki_list_ol_after_ul.text +0 -0
- data/unittest/{expected → expected_wiki}/test_wiki_list_ol_after_ul.wiki +0 -0
- data/unittest/{expected → expected_wiki}/test_wiki_list_ol_ul.html +0 -0
- data/unittest/{expected → expected_wiki}/test_wiki_list_ol_ul.latex +0 -0
- data/unittest/{expected → expected_wiki}/test_wiki_list_ol_ul.text +0 -0
- data/unittest/{expected → expected_wiki}/test_wiki_list_ol_ul.wiki +0 -0
- data/unittest/{expected → expected_wiki}/test_wiki_list_ul.html +0 -0
- data/unittest/{expected → expected_wiki}/test_wiki_list_ul.latex +0 -0
- data/unittest/{expected → expected_wiki}/test_wiki_list_ul.text +0 -0
- data/unittest/{expected → expected_wiki}/test_wiki_list_ul.wiki +0 -0
- data/unittest/{expected → expected_wiki}/test_wiki_list_ul_too_much.html +0 -0
- data/unittest/{expected → expected_wiki}/test_wiki_list_ul_too_much.latex +0 -0
- data/unittest/{expected → expected_wiki}/test_wiki_list_ul_too_much.text +0 -0
- data/unittest/{expected → expected_wiki}/test_wiki_list_ul_too_much.wiki +0 -0
- data/unittest/{expected → expected_wiki}/test_wiki_picture.html +0 -0
- data/unittest/{expected → expected_wiki}/test_wiki_picture.latex +0 -0
- data/unittest/{expected → expected_wiki}/test_wiki_picture_thumb.html +0 -0
- data/unittest/{expected → expected_wiki}/test_wiki_tab1.html +0 -0
- data/unittest/{expected → expected_wiki}/test_wiki_tab1.latex +0 -0
- data/unittest/{expected → expected_wiki}/test_wiki_tab1.wiki +0 -0
- data/unittest/{expected → expected_wiki}/test_wiki_textformatting.html +0 -0
- data/unittest/{expected → expected_wiki}/test_wiki_textformatting.latex +0 -0
- data/unittest/{expected → expected_wiki}/test_wiki_textformatting.text +0 -0
- data/unittest/{expected → expected_wiki}/test_wiki_textformatting.wiki +0 -0
- data/unittest/{expected → expected_wiki}/test_wiki_toc.html +0 -0
- data/unittest/{expected → expected_wiki}/test_wiki_toc.latex +0 -0
- data/unittest/{expected → expected_wiki}/test_wiki_toc.text +0 -0
- data/unittest/{expected → expected_wiki}/test_wiki_toc.wiki +0 -0
- data/unittest/{expected → expected_wiki}/test_wiki_ul_multiple_line.html +0 -0
- data/unittest/{expected → expected_wiki}/test_wiki_ul_multiple_line.latex +0 -0
- data/unittest/{expected → expected_wiki}/test_wiki_ul_multiple_line.text +0 -0
- data/unittest/{expected → expected_wiki}/test_wiki_ul_multiple_line.wiki +0 -0
- data/unittest/test_docgenerator.rb +1 -2
- data/unittest/unittest_creole2doc.rb +1024 -0
- data/unittest/unittest_docgenerator.rb +17 -8
- data/unittest/unittest_wiki2doc.rb +92 -88
- data/unittest/unittest_yaml2pres.rb +336 -0
- metadata +202 -70
- data/unittest/expected/test_wiki_footnote.html +0 -8
- data/unittest/expected/test_wiki_footnote.latex +0 -15
- data/unittest/expected/test_wiki_footnote.wiki +0 -12
- data/unittest/expected/test_wiki_footnote_groupid.html +0 -21
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
<p >
|
|
2
|
+
Free links without braces should be rendered as well, like <a href = "http://www.wikicreole.org/" >http://www.wikicreole.org/</a> and <a href = "http://www.wikicreole.org/users/~example." >http://www.wikicreole.org/users/~example.</a>
|
|
3
|
+
</p>
|
|
4
|
+
<p >
|
|
5
|
+
See also description: <a href = "http://www.wikicreole.org/wiki/Links" >http://www.wikicreole.org/wiki/Links</a>
|
|
6
|
+
</p>
|
|
7
|
+
<p >
|
|
8
|
+
In case of phrase ends with . you should use explicit links like <a href = "http://www.wikicreole.org/users/~example" >http://www.wikicreole.org/users/~example</a>.
|
|
9
|
+
</p>
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
|
|
2
|
+
|
|
3
|
+
Free links without braces should be rendered as well, like \href{http://www.wikicreole.org/}{http://www.wikicreole.org/} and \href{http://www.wikicreole.org/users/~example.}{http://www.wikicreole.org/users/~example.}
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
See also description: \href{http://www.wikicreole.org/wiki/Links}{http://www.wikicreole.org/wiki/Links}
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
In case of phrase ends with . you should use explicit links like \href{http://www.wikicreole.org/users/~example}{http://www.wikicreole.org/users/~example}.
|
|
12
|
+
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
|
|
2
|
+
Free links without braces should be rendered as well, like http://www.wikicreole.org/ (http://www.wikicreole.org/) and http://www.wikicreole.org/users/~example. (http://www.wikicreole.org/users/~example.)
|
|
3
|
+
|
|
4
|
+
See also description: http://www.wikicreole.org/wiki/Links (http://www.wikicreole.org/wiki/Links)
|
|
5
|
+
|
|
6
|
+
In case of phrase ends with . you should use explicit links like http://www.wikicreole.org/users/~example (http://www.wikicreole.org/users/~example).
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
|
|
2
|
+
|
|
3
|
+
Text before
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
\begin{enumerate}
|
|
7
|
+
|
|
8
|
+
\item Listentry 1
|
|
9
|
+
|
|
10
|
+
\item Listentry 2
|
|
11
|
+
\begin{enumerate}
|
|
12
|
+
|
|
13
|
+
\item Listentry 2.1
|
|
14
|
+
|
|
15
|
+
\item Listentry 2.2
|
|
16
|
+
\end{enumerate}
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
\item Listentry 3 Text afterwords
|
|
21
|
+
\end{enumerate}
|
|
22
|
+
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
|
|
2
|
+
|
|
3
|
+
Text before
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
\begin{enumerate}
|
|
7
|
+
|
|
8
|
+
\item Listentry 1
|
|
9
|
+
|
|
10
|
+
\item Listentry 2
|
|
11
|
+
\begin{itemize}
|
|
12
|
+
|
|
13
|
+
\item Listentry 2.1
|
|
14
|
+
|
|
15
|
+
\item Listentry 2.2
|
|
16
|
+
\end{itemize}
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
\item Listentry 3
|
|
21
|
+
\end{enumerate}
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
Text afterwords
|
|
26
|
+
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
<p >
|
|
2
|
+
Text before
|
|
3
|
+
</p>
|
|
4
|
+
<ul >
|
|
5
|
+
<li >Listentry 1 </li>
|
|
6
|
+
<li >Listentry 2 <ul >
|
|
7
|
+
<li >Listentry 2.1 </li>
|
|
8
|
+
<li >Listentry 2.2 </li>
|
|
9
|
+
</ul>
|
|
10
|
+
</li>
|
|
11
|
+
<li >Listentry 3 <ul >
|
|
12
|
+
<li >Listentry 3.2 </li>
|
|
13
|
+
</ul>
|
|
14
|
+
</li>
|
|
15
|
+
</ul>
|
|
16
|
+
<ul >
|
|
17
|
+
<li > You can have multiline list items </li>
|
|
18
|
+
<li > this is a second multiline list item </li>
|
|
19
|
+
</ul>
|
|
20
|
+
<p >
|
|
21
|
+
Text afterwords
|
|
22
|
+
</p>
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
|
|
2
|
+
|
|
3
|
+
Text before
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
\begin{itemize}
|
|
7
|
+
|
|
8
|
+
\item Listentry 1
|
|
9
|
+
|
|
10
|
+
\item Listentry 2
|
|
11
|
+
\begin{itemize}
|
|
12
|
+
|
|
13
|
+
\item Listentry 2.1
|
|
14
|
+
|
|
15
|
+
\item Listentry 2.2
|
|
16
|
+
\end{itemize}
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
\item Listentry 3
|
|
21
|
+
\begin{itemize}
|
|
22
|
+
|
|
23
|
+
\item Listentry 3.2
|
|
24
|
+
\end{itemize}
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
\end{itemize}
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
\begin{itemize}
|
|
31
|
+
|
|
32
|
+
\item You can have multiline list items
|
|
33
|
+
|
|
34
|
+
\item this is a second multiline list item
|
|
35
|
+
\end{itemize}
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
Text afterwords
|
|
40
|
+
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
---
|
|
2
|
+
- !ruby/struct:Creole_line
|
|
3
|
+
type: :dummy
|
|
4
|
+
content:
|
|
5
|
+
add_info:
|
|
6
|
+
- !ruby/struct:Creole_line
|
|
7
|
+
type: :par
|
|
8
|
+
content: |
|
|
9
|
+
Text before
|
|
10
|
+
|
|
11
|
+
add_info:
|
|
12
|
+
- !ruby/struct:Creole_line
|
|
13
|
+
type: :list
|
|
14
|
+
content: |
|
|
15
|
+
Listentry 1
|
|
16
|
+
|
|
17
|
+
add_info:
|
|
18
|
+
:listtype: "*"
|
|
19
|
+
- !ruby/struct:Creole_line
|
|
20
|
+
type: :list
|
|
21
|
+
content: |
|
|
22
|
+
Listentry 2
|
|
23
|
+
|
|
24
|
+
add_info:
|
|
25
|
+
:listtype: "*"
|
|
26
|
+
- !ruby/struct:Creole_line
|
|
27
|
+
type: :list
|
|
28
|
+
content: |
|
|
29
|
+
Listentry 2.1
|
|
30
|
+
|
|
31
|
+
add_info:
|
|
32
|
+
:listtype: "**"
|
|
33
|
+
- !ruby/struct:Creole_line
|
|
34
|
+
type: :list
|
|
35
|
+
content: |
|
|
36
|
+
Listentry 2.2
|
|
37
|
+
|
|
38
|
+
add_info:
|
|
39
|
+
:listtype: "**"
|
|
40
|
+
- !ruby/struct:Creole_line
|
|
41
|
+
type: :list
|
|
42
|
+
content: |
|
|
43
|
+
Listentry 3
|
|
44
|
+
|
|
45
|
+
add_info:
|
|
46
|
+
:listtype: "*"
|
|
47
|
+
- !ruby/struct:Creole_line
|
|
48
|
+
type: :list
|
|
49
|
+
content: |
|
|
50
|
+
Listentry 3.2
|
|
51
|
+
|
|
52
|
+
add_info:
|
|
53
|
+
:listtype: "**"
|
|
54
|
+
- !ruby/struct:Creole_line
|
|
55
|
+
type: :dummy
|
|
56
|
+
content:
|
|
57
|
+
add_info:
|
|
58
|
+
- !ruby/struct:Creole_line
|
|
59
|
+
type: :dummy
|
|
60
|
+
content:
|
|
61
|
+
add_info:
|
|
62
|
+
- !ruby/struct:Creole_line
|
|
63
|
+
type: :list
|
|
64
|
+
content: " You can have\n\
|
|
65
|
+
multiline list items\n"
|
|
66
|
+
add_info:
|
|
67
|
+
:listtype: "*"
|
|
68
|
+
- !ruby/struct:Creole_line
|
|
69
|
+
type: :list
|
|
70
|
+
content: " this is a second multiline\n\
|
|
71
|
+
list item\n"
|
|
72
|
+
add_info:
|
|
73
|
+
:listtype: "*"
|
|
74
|
+
- !ruby/struct:Creole_line
|
|
75
|
+
type: :dummy
|
|
76
|
+
content:
|
|
77
|
+
add_info:
|
|
78
|
+
- !ruby/struct:Creole_line
|
|
79
|
+
type: :par
|
|
80
|
+
content: |
|
|
81
|
+
Text afterwords
|
|
82
|
+
|
|
83
|
+
add_info:
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
<p >
|
|
2
|
+
Text before
|
|
3
|
+
</p>
|
|
4
|
+
<ul >
|
|
5
|
+
<li >Listentry 1 </li>
|
|
6
|
+
<li >Listentry 2 <ul >
|
|
7
|
+
<li >Listentry 2.1 </li>
|
|
8
|
+
<li >Listentry 2.2 <ul >
|
|
9
|
+
<li >Listentry 2.2.1 <ul >
|
|
10
|
+
<li >Listentry 2.2.1.1 <ul >
|
|
11
|
+
<li >Listentry 2.2.1.1.1 </li>
|
|
12
|
+
</ul>
|
|
13
|
+
</li>
|
|
14
|
+
</ul>
|
|
15
|
+
</li>
|
|
16
|
+
</ul>
|
|
17
|
+
</li>
|
|
18
|
+
</ul>
|
|
19
|
+
</li>
|
|
20
|
+
<li >Listentry 3 </li>
|
|
21
|
+
</ul>
|
|
22
|
+
<p >
|
|
23
|
+
Text afterwords
|
|
24
|
+
</p>
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
|
|
2
|
+
|
|
3
|
+
Text before
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
\begin{itemize}
|
|
7
|
+
|
|
8
|
+
\item Listentry 1
|
|
9
|
+
|
|
10
|
+
\item Listentry 2
|
|
11
|
+
\begin{itemize}
|
|
12
|
+
|
|
13
|
+
\item Listentry 2.1
|
|
14
|
+
|
|
15
|
+
\item Listentry 2.2
|
|
16
|
+
\begin{itemize}
|
|
17
|
+
|
|
18
|
+
\item Listentry 2.2.1
|
|
19
|
+
\begin{itemize}
|
|
20
|
+
|
|
21
|
+
\item Listentry 2.2.1.1
|
|
22
|
+
\begin{itemize}
|
|
23
|
+
|
|
24
|
+
\item Listentry 2.2.1.1.1
|
|
25
|
+
\end{itemize}
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
\end{itemize}
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
\end{itemize}
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
\end{itemize}
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
\item Listentry 3
|
|
39
|
+
\end{itemize}
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
Text afterwords
|
|
44
|
+
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
---
|
|
2
|
+
- !ruby/struct:Creole_line
|
|
3
|
+
type: :dummy
|
|
4
|
+
content:
|
|
5
|
+
add_info:
|
|
6
|
+
- !ruby/struct:Creole_line
|
|
7
|
+
type: :par
|
|
8
|
+
content: |
|
|
9
|
+
This is some text,
|
|
10
|
+
followed by more Text.
|
|
11
|
+
And some more text.
|
|
12
|
+
|
|
13
|
+
add_info:
|
|
14
|
+
- !ruby/struct:Creole_line
|
|
15
|
+
type: :dummy
|
|
16
|
+
content:
|
|
17
|
+
add_info:
|
|
18
|
+
- !ruby/struct:Creole_line
|
|
19
|
+
type: :par
|
|
20
|
+
content: |
|
|
21
|
+
And now a new paragraph with some other text.
|
|
22
|
+
|
|
23
|
+
add_info:
|
|
24
|
+
- !ruby/struct:Creole_line
|
|
25
|
+
type: :dummy
|
|
26
|
+
content:
|
|
27
|
+
add_info:
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
<p >
|
|
2
|
+
And now a line which is a bit longer then 80 characters in the input line. Creole should not split it, because we defined split_at to 0.
|
|
3
|
+
|
|
4
|
+
</p>
|
|
5
|
+
<p >
|
|
6
|
+
And now a line which is a bit longer then 80 characters in the input line.
|
|
7
|
+
Creole should not split it, because we defined split_at to 0.
|
|
8
|
+
|
|
9
|
+
</p>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
|
|
2
|
+
|
|
3
|
+
And now a line which is a bit longer then 80 characters in the input line. Creole should not split it, because we defined split\_at to 0.
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
And now a line which is a bit longer then 80 characters in the input line.
|
|
9
|
+
Creole should not split it, because we defined split\_at to 0.
|
|
10
|
+
|
|
11
|
+
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
|
|
2
|
+
And now a line which is a bit longer then 80 characters in the input line. Creole should not split it, because we defined split_at to 0.
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
And now a line which is a bit longer then 80 characters in the input line.
|
|
6
|
+
Creole should not split it, because we defined split_at to 0.
|
|
7
|
+
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
|
|
2
|
+
And now a line which is a bit longer then 80 characters in the input line. Creole should not split it, because we defined split_at to 0.
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
And now a line which is a bit longer then 80 characters in the input line.
|
|
6
|
+
Creole should not split it, because we defined split_at to 0.
|
|
7
|
+
|