docgenerator 1.1.1 → 1.2.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.
Files changed (179) hide show
  1. data/examples/docgenerator_example.rb +34 -17
  2. data/examples/docgenerator_example_footnote.rb +82 -61
  3. data/examples/docgenerator_example_list.rb +24 -18
  4. data/examples/docgenerator_example_restrictions.rb +17 -27
  5. data/examples/docgenerator_example_tabular.rb +20 -20
  6. data/examples/docgenerator_example_tripfalls.rb +28 -20
  7. data/examples/results/readme +1 -0
  8. data/examples/results_expected/docgenerator_example.html +39 -0
  9. data/examples/results_expected/docgenerator_example.pdf +0 -0
  10. data/examples/results_expected/docgenerator_example.tex +56 -0
  11. data/examples/results_expected/docgenerator_example_footnote.html +40 -0
  12. data/examples/results_expected/docgenerator_example_footnote.pdf +0 -0
  13. data/examples/results_expected/docgenerator_example_footnote.tex +50 -0
  14. data/examples/results_expected/docgenerator_example_list.html +18 -0
  15. data/examples/results_expected/docgenerator_example_list.pdf +0 -0
  16. data/examples/results_expected/docgenerator_example_list.tex +46 -0
  17. data/examples/results_expected/docgenerator_example_restrictions.html +22 -0
  18. data/examples/results_expected/docgenerator_example_restrictions.pdf +0 -0
  19. data/examples/results_expected/docgenerator_example_restrictions.tex +31 -0
  20. data/examples/results_expected/docgenerator_example_tabular.html +37 -0
  21. data/examples/results_expected/docgenerator_example_tabular.pdf +0 -0
  22. data/examples/results_expected/docgenerator_example_tabular.tex +41 -0
  23. data/examples/results_expected/docgenerator_example_tripfalls.html +27 -0
  24. data/examples/results_expected/docgenerator_example_tripfalls.pdf +0 -0
  25. data/examples/results_expected/docgenerator_example_tripfalls.tex +31 -0
  26. data/lib/creole/creole2doc.rb +291 -140
  27. data/lib/creole/creole_inclusion_and_plugins.rb +142 -39
  28. data/lib/creole/creole_placeholder.rb +92 -30
  29. data/lib/creole/creole_tabular.rb +119 -20
  30. data/lib/docgenerator.rb +209 -118
  31. data/lib/{docgenerator_attribute.rb → docgenerator/attribute.rb} +2 -1
  32. data/lib/{docgenerator_characters.rb → docgenerator/characters.rb} +75 -6
  33. data/lib/{docgenerator_css.rb → docgenerator/css.rb} +0 -0
  34. data/lib/docgenerator/document.rb +588 -0
  35. data/lib/{docgenerator_element.rb → docgenerator/element.rb} +52 -80
  36. data/lib/{docgenerator_elements.rb → docgenerator/elements.rb} +43 -17
  37. data/lib/{docgenerator_environments.rb → docgenerator/environments.rb} +20 -6
  38. data/lib/{docgenerator_footnote.rb → docgenerator/footnote.rb} +22 -18
  39. data/lib/{docgenerator_lists.rb → docgenerator/lists.rb} +17 -1
  40. data/lib/{docgenerator_sections.rb → docgenerator/sections.rb} +9 -1
  41. data/lib/docgenerator/standard.rb +81 -0
  42. data/lib/{docgenerator_tabular.rb → docgenerator/tabular.rb} +9 -5
  43. data/lib/packages/docgenerator_listings.rb +9 -5
  44. data/lib/packages/docgenerator_pdfpages.rb +17 -11
  45. data/lib/packages/docgenerator_url.rb +0 -2
  46. data/lib/templates/docgenerator_template.rb +66 -29
  47. data/lib/templates/docgenerator_template.yaml +18 -0
  48. data/lib/wiki2doc/wiki2docgenerator.rb +6 -2
  49. data/readme.rd +132 -0
  50. data/unittest/expected/test_document_usepackage_undefined.log +2 -0
  51. data/unittest/expected/test_enumerate.context +4 -0
  52. data/unittest/expected/test_footnote.html +4 -4
  53. data/unittest/expected/test_footnote.latex +4 -4
  54. data/unittest/expected/test_footnote_group.html +6 -6
  55. data/unittest/expected/test_footnote_group.latex +6 -6
  56. data/unittest/expected/test_href.html +2 -2
  57. data/unittest/expected/test_href.latex +2 -2
  58. data/unittest/expected/test_href.text +2 -2
  59. data/unittest/expected/test_itemize.context +4 -0
  60. data/unittest/expected/test_runtex.stdout +3 -0
  61. data/unittest/expected/test_runtex_2.stdout +3 -0
  62. data/unittest/expected/test_section.context +20 -0
  63. data/unittest/expected/test_tabular.html +2 -2
  64. data/unittest/expected/test_verbatim.html +3 -0
  65. data/unittest/expected/test_verbatim.latex +4 -0
  66. data/unittest/expected/test_verbatim_array.html +1 -0
  67. data/unittest/expected/test_verbatim_array.latex +2 -0
  68. data/unittest/expected_creole/test_creole_characters_all.html +12 -5
  69. data/unittest/expected_creole/test_creole_characters_all.latex +20 -6
  70. data/unittest/expected_creole/test_creole_comment.context +11 -0
  71. data/unittest/expected_creole/test_creole_comment.creole +12 -0
  72. data/unittest/expected_creole/test_creole_comment.html +9 -0
  73. data/unittest/expected_creole/test_creole_comment.latex +11 -0
  74. data/unittest/expected_creole/test_creole_creole1.0test.html +3 -3
  75. data/unittest/expected_creole/test_creole_creole1.0test.latex +3 -3
  76. data/unittest/expected_creole/test_creole_creole1.0test.text +4 -4
  77. data/unittest/expected_creole/test_creole_ignore.html +3 -0
  78. data/unittest/expected_creole/test_creole_ignore.latex +4 -0
  79. data/unittest/expected_creole/test_creole_ignore.text +2 -0
  80. data/unittest/expected_creole/test_creole_input.normsource +12 -12
  81. data/unittest/expected_creole/test_creole_input_file_simple.html +15 -0
  82. data/unittest/expected_creole/test_creole_input_file_simple_readlines.html +15 -0
  83. data/unittest/expected_creole/test_creole_links_external_implicit.html +2 -2
  84. data/unittest/expected_creole/test_creole_links_external_implicit.latex +2 -2
  85. data/unittest/expected_creole/test_creole_links_external_implicit.text +2 -2
  86. data/unittest/expected_creole/test_creole_links_implicit_end.creole +4 -0
  87. data/unittest/expected_creole/test_creole_links_implicit_end.html +3 -0
  88. data/unittest/expected_creole/test_creole_links_implicit_end.latex +4 -0
  89. data/unittest/expected_creole/test_creole_list_ul.normsource +42 -42
  90. data/unittest/expected_creole/test_creole_mix_titles_list.html +10 -0
  91. data/unittest/expected_creole/test_creole_mix_titles_list.latex +18 -0
  92. data/unittest/expected_creole/test_creole_mix_titles_list.text +12 -0
  93. data/unittest/expected_creole/test_creole_paragraphs.normsource +15 -15
  94. data/unittest/expected_creole/test_creole_pictures_css.html +4 -1
  95. data/unittest/expected_creole/test_creole_pictures_css.latex +5 -1
  96. data/unittest/expected_creole/test_creole_pictures_longdesc.html +3 -0
  97. data/unittest/expected_creole/test_creole_pictures_width.html +3 -0
  98. data/unittest/expected_creole/test_creole_pictures_width.latex +4 -0
  99. data/unittest/expected_creole/test_creole_short_html.html +3 -0
  100. data/unittest/expected_creole/test_creole_short_html.latex +4 -0
  101. data/unittest/expected_creole/test_creole_short_html.text +2 -0
  102. data/unittest/expected_creole/test_creole_shy.creole +6 -0
  103. data/unittest/expected_creole/test_creole_shy.html +6 -0
  104. data/unittest/expected_creole/test_creole_shy.latex +8 -0
  105. data/unittest/expected_creole/test_creole_shy.text +4 -0
  106. data/unittest/expected_creole/test_creole_tabular_with_cell_option.html +20 -0
  107. data/unittest/expected_creole/test_creole_toc.html +3 -1
  108. data/unittest/expected_creole/test_creole_toc.latex +1 -1
  109. data/unittest/expected_creole/test_creole_toc.text +1 -1
  110. data/unittest/expected_creole/test_creole_toc_level.html +7 -0
  111. data/unittest/expected_creole/test_creole_toc_level.latex +10 -0
  112. data/unittest/expected_creole/test_creole_toc_level.text +3 -0
  113. data/unittest/expected_creole/test_creole_toc_level_text.html +8 -0
  114. data/unittest/expected_creole/test_creole_toc_level_text.latex +9 -0
  115. data/unittest/expected_creole/test_creole_verbatim.html +1 -1
  116. data/unittest/expected_creole/test_creole_verbatim.latex +1 -1
  117. data/unittest/expected_creole/test_creole_verbatim.text +1 -1
  118. data/unittest/expected_creole/test_creole_verbatim_inline.html +1 -1
  119. data/unittest/expected_creole/test_creole_verbatim_inline.latex +1 -1
  120. data/unittest/expected_wiki/test_wiki_description.html +5 -5
  121. data/unittest/expected_wiki/test_wiki_description.latex +5 -5
  122. data/unittest/expected_wiki/test_wiki_description.text +5 -5
  123. data/unittest/expected_wiki/test_wiki_description.wiki +5 -5
  124. data/unittest/test_rakefile_docgenerator.rb +43 -0
  125. data/unittest/unittest_creole2doc.rb +415 -27
  126. data/unittest/unittest_docgenerator.rb +256 -23
  127. data/unittest/unittest_docgenerator_runtex.rb +83 -0
  128. data/unittest/unittest_versions.rb +44 -0
  129. data/unittest/unittest_wiki2doc.rb +28 -27
  130. metadata +473 -106
  131. data/lib/docgenerator_document.rb +0 -525
  132. data/lib/packages/docgenerator_beamer.rb +0 -253
  133. data/lib/yaml2presentation/yaml2presentation.rb +0 -1091
  134. data/unittest/expected/beamer_01_article.tex +0 -13
  135. data/unittest/expected/beamer_01_attachment.tex +0 -15
  136. data/unittest/expected/beamer_01_doc.html +0 -13
  137. data/unittest/expected/beamer_01_doc.tex +0 -18
  138. data/unittest/expected/beamer_01_notes_only.tex +0 -13
  139. data/unittest/expected/beamer_01_notes_onlyslideswithnotes.tex +0 -13
  140. data/unittest/expected/beamer_01_notes_show.tex +0 -13
  141. data/unittest/expected/beamer_01_presentation.tex +0 -13
  142. data/unittest/expected/beamer_02_doc.html +0 -29
  143. data/unittest/expected/beamer_02_doc.tex +0 -34
  144. data/unittest/expected/beamer_block.html +0 -1
  145. data/unittest/expected/beamer_block.latex +0 -1
  146. data/unittest/expected/beamer_doc_fragile_doc.tex +0 -33
  147. data/unittest/expected/beamer_doc_html_overview_with_detailpic_and_text_doc.html +0 -34
  148. data/unittest/expected/beamer_doc_html_overview_with_detailpic_doc.html +0 -34
  149. data/unittest/expected/beamer_doc_key_doc.html +0 -20
  150. data/unittest/expected/beamer_doc_key_doc.tex +0 -29
  151. data/unittest/expected/beamer_doc_note_doc.html +0 -30
  152. data/unittest/expected/beamer_doc_note_doc.tex +0 -37
  153. data/unittest/expected/beamer_doc_pic_bottom_doc.html +0 -24
  154. data/unittest/expected/beamer_doc_pic_doc.html +0 -24
  155. data/unittest/expected/beamer_doc_pic_doc.tex +0 -28
  156. data/unittest/expected/beamer_doc_pic_left_doc.html +0 -24
  157. data/unittest/expected/beamer_doc_pic_left_doc.tex +0 -28
  158. data/unittest/expected/beamer_doc_pic_ratio_doc.tex +0 -29
  159. data/unittest/expected/beamer_doc_pic_right_doc.html +0 -24
  160. data/unittest/expected/beamer_doc_pic_right_doc.tex +0 -28
  161. data/unittest/expected/beamer_doc_pic_top_doc.html +0 -24
  162. data/unittest/expected/beamer_frame.html +0 -5
  163. data/unittest/expected/beamer_frame.tex +0 -11
  164. data/unittest/expected/beamer_frame_fragile.tex +0 -7
  165. data/unittest/expected/beamer_frame_id.html +0 -1
  166. data/unittest/expected/beamer_frame_id.tex +0 -4
  167. data/unittest/expected/beamer_framepic.html +0 -5
  168. data/unittest/expected/beamer_framepic.latex +0 -1
  169. data/unittest/expected/beamer_framepic_link.html +0 -5
  170. data/unittest/expected/beamer_framepic_link.latex +0 -1
  171. data/unittest/expected/beamer_frametitle.html +0 -1
  172. data/unittest/expected/beamer_frametitle.latex +0 -1
  173. data/unittest/expected/beamer_note.html +0 -1
  174. data/unittest/expected/beamer_note.latex +0 -1
  175. data/unittest/expected_privat/test_creole_test_document.html +0 -6
  176. data/unittest/expected_wiki/test_wiki_amazon.html +0 -10
  177. data/unittest/expected_wiki/test_wiki_link.log +0 -3
  178. data/unittest/test_docgenerator.rb +0 -107
  179. data/unittest/unittest_yaml2pres.rb +0 -336
data/readme.rd ADDED
@@ -0,0 +1,132 @@
1
+ The docgenerator-gem allows the definition of documents and export to
2
+ * LaTeX
3
+ * HTML
4
+ * Creole (a common wiki markup, see http://www.wikicreole.org )
5
+ * Wiki-markup like Wikimedia[http://www.mediawiki.org/wiki/MediaWiki/] (not supported any longer)
6
+ * plain text (not very good supported)
7
+ * context (only rudimentory tests)
8
+
9
+
10
+ The docgenerator_tools-gem contains some programs for
11
+ special documents, based on the docgenerator-gem.
12
+
13
+ =docgenerator-gem
14
+ Defines a programmer interface to define documents.
15
+
16
+ Please check the examples:
17
+ * examples/docgenerator_example.rb
18
+ * examples/docgenerator_example_list.rb
19
+ * examples/docgenerator_example_tabular.rb
20
+ * examples/docgenerator_example_footnote.rb
21
+ * examples/docgenerator_example_restrictions.rb
22
+ * examples/docgenerator_example_tripfalls.rb
23
+
24
+
25
+ This package is the base of
26
+ * creole2doc.rb - a Creole-Wiki to TeX/HTML-Translator (part of the docgenerator-gem)
27
+ * wiki2docgenerator.rb - a Wiki to TeX/HTML-Translator (part of the docgenerator-gem)
28
+ * yaml2presentation.rb - a presentation generator for LaTeX-Beamer-class. Can also be used to build image galleries.
29
+ (part of docgenerator_tools-gem)
30
+
31
+
32
+
33
+ =docgenerator_tools-gem
34
+ Some tools based on the docgenerator-package:
35
+
36
+ Special LaTeX-documents:
37
+ * yaml2presentation.rb: presentations (beamer.sty)
38
+ Uses packages/docgenerator_beamer.rb
39
+ * rail4creole.rb: build rail-diagramms (rail.sty)
40
+ See examples_tools/rail_diagramm_creole.rb
41
+ * docgenerator_tools/code2structogramm.rb: Build structogramms
42
+ See examples_tools/code2structogramm_test_creole.rb
43
+ * docgenerator_tools/rubycode4doc/rubycode4doc_creole.rb:
44
+ Use ruby-code as generator for wiki-content.
45
+ Can be used to build examples.
46
+ See examples_tools/rubycode_wiki.rb
47
+
48
+ =Version history
49
+ 0.0.x:
50
+ * Developpers version
51
+
52
+ 0.1.0:
53
+ * to_element
54
+
55
+ 0.1.1:
56
+ * to_element
57
+
58
+ 1.0.0:
59
+ * to_doc
60
+ * no @@target any longer
61
+ * Document.new mit Hash
62
+ * unit tests
63
+ * lib-folder
64
+ * Constant DOCGENERATOR_VERSION
65
+ * Published as 1.0.2
66
+
67
+ 1.0.3:
68
+ * Add table of contents
69
+
70
+ 1.0.4 (2008-05-06)
71
+ * wiki2docgenerator: delete myscripts.rb
72
+ * wiki2docgenerator: change in link (no cr)
73
+ * Add dependency log4r
74
+ * Correction error 'uninitialized constant CSS_collection (NameError)'
75
+ -> rubyforge
76
+
77
+ 1.0.5 (2008-09-24)
78
+ * yaml2presentation + docgenerator_beamer.rb
79
+ * Correction packages/docgenerator_scrlettr2.rb
80
+ * wiki2docgenerator: In Tab: Allow ! as replacement for |
81
+ * CSS_collection: Define accessor []
82
+ * Attribute#filled? ignores nil-values
83
+ * Docgenerator:
84
+ *Default-Logger gives message
85
+ *Check META-Values
86
+ *shorttitle adapted
87
+ *Document.new: add option :css
88
+
89
+ 1.1.0
90
+ * Document.save: Changes interface, options...
91
+ * Wikitext: Ignore multiple empty lines
92
+ * Element#new: Define default-attribute :log for logger (used afterwords as @log)
93
+ * yaml2presentation: New setting :valid_keys
94
+ * package/docgenerator_scrlettr2: Extended
95
+ * default pdflualatex for runtex
96
+ * Add ->, => for text-output
97
+
98
+ 1.1.1:
99
+ * Document.new: New option parameter/All meta-tags are allowed
100
+ * Document.save: New option :additional_options
101
+ * Wikitext: Add method Wikitext.help
102
+ * Added first version of creole2doc (should replace wiki2docgenerator)
103
+ Details see http://www.wikicreole.org/
104
+ * Little reorg of the Documentation
105
+ published 2009-06-28
106
+
107
+ 1.1.2:
108
+ * Correction Creole (Unit test test_creole_mix_titles_list)
109
+ * First steps for Context-support (don't expect too much)
110
+
111
+ 1.2.0:
112
+ * New gem: docgenerator_tools
113
+ * Move yaml2presentation from docgenerator to docgenerator_tools
114
+ * Creole_document makes tableofcontents for tex, not Creole#toc
115
+ * Add creole_rail.rb to docgenerator_tools
116
+ * Add rubycode4doc to docgenerator_tools
117
+ * Add code2structogramm to docgenerator_tools
118
+ * Add Creole-option :ignore
119
+ * Add Creole-option :comment
120
+ * Repair load-bug with usepackage
121
+ * Redefine pathes for privat and tools (check open)
122
+ * Add examples for docgenerator_tools
123
+ * Replace Document#runtex with rake4latex
124
+ * Add Versions to Classes...
125
+ * Reorganize unit tests
126
+ * Ruby 1.9 enabled
127
+
128
+ 1.2.1
129
+ * More Ruby 1.9.1 additions (convert encodings)
130
+ * Creole: Images with option width (LaTeX)
131
+ * Corrected examples, added expected results of the examples (increases gem size)
132
+ * corrections footnote handling
@@ -0,0 +1,2 @@
1
+ DEBUG docgenerator: usepackage: Try to load packages/docgenerator_undefined package.rb
2
+ INFO docgenerator: usepackage: No supporting definitions packages/docgenerator_undefined package.rb found
@@ -0,0 +1,4 @@
1
+
2
+ \startitemize[n]
3
+ \item Listpunkt 1
4
+ \stopitemize
@@ -1,5 +1,5 @@
1
- <h1 >Abschnitt 1</h1>
2
- <p >Text zu Abschnitt 1<sup><a href="#footnote-1">1</a></sup>Weiterer Text</p>
3
- <h2 >Fu�noten</h2>
4
- <p ><sup ><a name="footnote-1">1</a></sup>Fu� eins<br />
1
+ <h1 >Section 1</h1>
2
+ <p >Text in section 1<sup><a href="#footnote-1">1</a></sup>More Text</p>
3
+ <h2 >Footnotes</h2>
4
+ <p ><sup ><a name="footnote-1">1</a></sup>Footnote one<br />
5
5
  </p>
@@ -1,11 +1,11 @@
1
- \section{Abschnitt 1}
1
+ \section{Section 1}
2
2
 
3
3
 
4
- Text zu Abschnitt 1\footnote{Fu� eins}Weiterer Text
4
+ Text in section 1\footnote{Footnote one}More Text
5
5
 
6
- \subsection{Fu�noten}
6
+ \subsection{Footnotes}
7
7
 
8
8
 
9
- \textsuperscript{\label{footnote-1}\hypertarget{footnote-1}{1}}Fu� eins\newline
9
+ \textsuperscript{\label{footnote-1}\hypertarget{footnote-1}{1}}Footnote one\newline
10
10
 
11
11
 
@@ -1,8 +1,8 @@
1
- <h1 >Abschnitt 1</h1>
2
- <p >Text zu Abschnitt 1<sup><a href="#g2-1">1</a></sup>Weiterer Text<sup><a href="#footnote-1">1</a></sup></p>
3
- <h2 >Fu�noten</h2>
4
- <p ><sup ><a name="footnote-1">1</a></sup>Noch ne Fu�note<br />
1
+ <h1 >Section 1</h1>
2
+ <p >Text in section 1<sup><a href="#g2-1">1</a></sup>More Text<sup><a href="#footnote-1">1</a></sup></p>
3
+ <h2 >Footnotes</h2>
4
+ <p ><sup ><a name="footnote-1">1</a></sup>Again a footnote<br />
5
5
  </p>
6
- <h3 >Fu�noten g1</h3>
7
- <p ><sup ><a name="g2-1">1</a></sup>Fu� eins (g1)<br />
6
+ <h3 >Footnotes of group 1</h3>
7
+ <p ><sup ><a name="g2-1">1</a></sup>Footnote one (g1)<br />
8
8
  </p>
@@ -1,17 +1,17 @@
1
- \section{Abschnitt 1}
1
+ \section{Section 1}
2
2
 
3
3
 
4
- Text zu Abschnitt 1\footnote{Fu� eins (g1)}Weiterer Text\footnote{Noch ne Fu�note}
4
+ Text in section 1\footnote{Footnote one (g1)}More Text\footnote{Again a footnote}
5
5
 
6
- \subsection{Fu�noten}
6
+ \subsection{Footnotes}
7
7
 
8
8
 
9
- \textsuperscript{\label{footnote-1}\hypertarget{footnote-1}{1}}Noch ne Fu�note\newline
9
+ \textsuperscript{\label{footnote-1}\hypertarget{footnote-1}{1}}Again a footnote\newline
10
10
 
11
11
 
12
- \subsubsection{Fu�noten g1}
12
+ \subsubsection{Footnotes of group 1}
13
13
 
14
14
 
15
- \textsuperscript{\label{g2-1}\hypertarget{g2-1}{1}}Fu� eins (g1)\newline
15
+ \textsuperscript{\label{g2-1}\hypertarget{g2-1}{1}}Footnote one (g1)\newline
16
16
 
17
17
 
@@ -1,2 +1,2 @@
1
- <p >Jetzt ein <a name="ilink">Ziel</a> f�r einen Link</p>
2
- <p >Und hier der Textlink zum <a href = "#ilink" >Ziel.</a></p>
1
+ <p >Now a <a name="ilink">target</a> for a link</p>
2
+ <p >And here the text link to <a href = "#ilink" >target.</a></p>
@@ -1,8 +1,8 @@
1
1
 
2
2
 
3
- Jetzt ein \label{ilink}\hypertarget{ilink}{Ziel} f�r einen Link
3
+ Now a \label{ilink}\hypertarget{ilink}{target} for a link
4
4
 
5
5
 
6
6
 
7
- Und hier der Textlink zum \hyperlink{ilink}{Ziel.}
7
+ And here the text link to \hyperlink{ilink}{target.}
8
8
 
@@ -1,4 +1,4 @@
1
1
 
2
- Jetzt ein (ilink) Ziel f�r einen Link
2
+ Now a (ilink) target for a link
3
3
 
4
- Und hier der Textlink zum Ziel. (#ilink)
4
+ And here the text link to target. (#ilink)
@@ -0,0 +1,4 @@
1
+
2
+ \startitemize[1]
3
+ \item Listpunkt 1
4
+ \stopitemize
@@ -0,0 +1,3 @@
1
+ Save changed test_runtex.tex
2
+ Statistic for test_runtex:
3
+ Document : 1 page (test_runtex.log)
@@ -0,0 +1,3 @@
1
+ Save changed test_runtex_2.tex
2
+ Statistic for test_runtex_2:
3
+ Document : 1 page (test_runtex_2.log)
@@ -0,0 +1,20 @@
1
+ \section{Abschnitt 1}
2
+
3
+
4
+ Text zu Abschnitt 1
5
+
6
+ \subsection{Abschnitt 1.1}
7
+
8
+
9
+ Text zu Abschnitt 1.1
10
+
11
+ \section{Abschnitt 2}
12
+
13
+
14
+ Text zu Abschnitt 2
15
+
16
+ \subsection{Abschnitt 2.1}
17
+
18
+
19
+ Text zu Abschnitt 2.1
20
+
@@ -1,7 +1,7 @@
1
1
 
2
2
  <table >
3
- <tr style = "border-bottom-style: solid;border-bottom-width: thick;" ><td colspan = "4" >Titel over all columns</td></tr>
4
- <tr style = "border-bottom-style: solid;border-bottom-width: thick;" ><td colspan = "4" >SubTitel over all columns</td></tr>
3
+ <tr style = "border-bottom-style: solid;border-bottom-width: medium;" ><td colspan = "4" >Titel over all columns</td></tr>
4
+ <tr style = "border-bottom-style: solid;border-bottom-width: medium;" ><td colspan = "4" >SubTitel over all columns</td></tr>
5
5
  <tr ><td >1A</td><td >1B</td><td >1C</td><td >1D</td></tr>
6
6
  <tr ><td >2A</td><td >2B</td><td >2C</td><td >2D</td></tr>
7
7
  <tr ><td >3A</td><td >3B</td><td >3C</td><td >3D</td></tr>
@@ -0,0 +1,3 @@
1
+ <pre>Verbatim text
2
+ second line
3
+ </pre>
@@ -0,0 +1,4 @@
1
+
2
+ \begin{verbatim}Verbatim text
3
+ second line
4
+ \end{verbatim}
@@ -0,0 +1 @@
1
+ <pre>Verbatimtextsecondline</pre>
@@ -0,0 +1,2 @@
1
+
2
+ \begin{verbatim}Verbatimtextsecondline\end{verbatim}
@@ -1,10 +1,17 @@
1
1
  <ul >
2
- <li >&lArr; </li>
3
- <li >&rArr; </li>
4
2
  <li >$ </li>
5
3
  <li >% </li>
6
- <li >&larr; </li>
7
- <li >&rarr; </li>
8
4
  <li >&amp; </li>
9
- <li >_</li>
5
+ <li >&rarr; </li>
6
+ <li >&larr; </li>
7
+ <li >&lArr; </li>
8
+ <li >&rArr; </li>
9
+ <li >_ </li>
10
+ <li >&ndash; </li>
11
+ <li >&mdash; </li>
12
+ <li >&rsquo; </li>
13
+ <li >&sbquo; </li>
14
+ <li >&ldquo; </li>
15
+ <li >&bdquo; </li>
16
+ <li >&hellip;</li>
10
17
  </ul>
@@ -1,20 +1,34 @@
1
1
 
2
2
  \begin{itemize}
3
3
 
4
+ \item \$
5
+
6
+ \item \%
7
+
8
+ \item \&
9
+
10
+ \item \ensuremath{\rightarrow}
11
+
12
+ \item \ensuremath{\leftarrow}
13
+
4
14
  \item \ensuremath{\Lefttarrow}
5
15
 
6
16
  \item \ensuremath{\Rightarrow}
7
17
 
8
- \item \$
18
+ \item \_
9
19
 
10
- \item \%
20
+ \item --
11
21
 
12
- \item \ensuremath{\leftarrow}
22
+ \item ---
13
23
 
14
- \item \ensuremath{\rightarrow}
24
+ \item
15
25
 
16
- \item \&
26
+ \item \sbquo{}
27
+
28
+ \item ``
29
+
30
+ \item "
17
31
 
18
- \item \_
32
+ \item \ldots
19
33
  \end{itemize}
20
34
 
@@ -0,0 +1,11 @@
1
+ \subsection{Titel 1}
2
+
3
+
4
+ Text
5
+
6
+ %This is a comment.
7
+ %It's part of the document, but not visible to readers.
8
+
9
+
10
+ Text after
11
+
@@ -0,0 +1,12 @@
1
+
2
+ ===Titel 1
3
+
4
+
5
+ Text
6
+
7
+ <<<comment
8
+ This is a comment.
9
+ It's part of the document, but not visible to readers.
10
+ >>>
11
+ Text after
12
+
@@ -0,0 +1,9 @@
1
+ <h2 >Titel 1</h2>
2
+ <p >
3
+ Text
4
+ </p>
5
+ <!-- This is a comment.
6
+ It's part of the document, but not visible to readers.
7
+ --><p >
8
+ Text after
9
+ </p>
@@ -0,0 +1,11 @@
1
+ \subsection{Titel 1}
2
+
3
+
4
+ Text
5
+
6
+ %This is a comment.
7
+ %It's part of the document, but not visible to readers.
8
+
9
+
10
+ Text after
11
+
@@ -33,10 +33,10 @@ Here's a external link without a description: <a href = "http://www.wikicreole.o
33
33
  Be careful that italic links are rendered properly: <em ><a href = "http://my.book.example/" >My Book Title</a></em>
34
34
  </p>
35
35
  <p >
36
- 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>
36
+ 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>
37
37
  </p>
38
38
  <p >
39
- Creole1.0 specifies that <a href = "http://bar" >http://bar</a> and ftp:<em >bar should not render italic,something like foo:</em>bar should render as italic.
39
+ Creole1.0 specifies that <a href = "http://bar" >http://bar</a> and ftp:<em >bar should not render italic,something like foo:</em>bar should render as italic.
40
40
  </p>
41
41
  <p >
42
42
  You can use this to draw a line to separate the page:
@@ -116,7 +116,7 @@ You can also use it inline nowiki <span style = "display: inline;white-space:pre
116
116
  </p>
117
117
  <h1 > Escapes </h1>
118
118
  <p >
119
- Normal Link: <a href = "http://wikicreole.org/" >http://wikicreole.org/</a> - now same link, but escaped: ~<a href = "http://wikicreole.org/" >http://wikicreole.org/</a>
119
+ Normal Link: <a href = "http://wikicreole.org/" >http://wikicreole.org/</a> - now same link, but escaped: ~<a href = "http://wikicreole.org/" >http://wikicreole.org/</a>
120
120
  </p>
121
121
  <p >
122
122
  Normal asterisks: ~<strong >not bold~</strong>