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.
- data/examples/docgenerator_example.rb +34 -17
- data/examples/docgenerator_example_footnote.rb +82 -61
- data/examples/docgenerator_example_list.rb +24 -18
- data/examples/docgenerator_example_restrictions.rb +17 -27
- data/examples/docgenerator_example_tabular.rb +20 -20
- data/examples/docgenerator_example_tripfalls.rb +28 -20
- data/examples/results/readme +1 -0
- data/examples/results_expected/docgenerator_example.html +39 -0
- data/examples/results_expected/docgenerator_example.pdf +0 -0
- data/examples/results_expected/docgenerator_example.tex +56 -0
- data/examples/results_expected/docgenerator_example_footnote.html +40 -0
- data/examples/results_expected/docgenerator_example_footnote.pdf +0 -0
- data/examples/results_expected/docgenerator_example_footnote.tex +50 -0
- data/examples/results_expected/docgenerator_example_list.html +18 -0
- data/examples/results_expected/docgenerator_example_list.pdf +0 -0
- data/examples/results_expected/docgenerator_example_list.tex +46 -0
- data/examples/results_expected/docgenerator_example_restrictions.html +22 -0
- data/examples/results_expected/docgenerator_example_restrictions.pdf +0 -0
- data/examples/results_expected/docgenerator_example_restrictions.tex +31 -0
- data/examples/results_expected/docgenerator_example_tabular.html +37 -0
- data/examples/results_expected/docgenerator_example_tabular.pdf +0 -0
- data/examples/results_expected/docgenerator_example_tabular.tex +41 -0
- data/examples/results_expected/docgenerator_example_tripfalls.html +27 -0
- data/examples/results_expected/docgenerator_example_tripfalls.pdf +0 -0
- data/examples/results_expected/docgenerator_example_tripfalls.tex +31 -0
- data/lib/creole/creole2doc.rb +291 -140
- data/lib/creole/creole_inclusion_and_plugins.rb +142 -39
- data/lib/creole/creole_placeholder.rb +92 -30
- data/lib/creole/creole_tabular.rb +119 -20
- data/lib/docgenerator.rb +209 -118
- data/lib/{docgenerator_attribute.rb → docgenerator/attribute.rb} +2 -1
- data/lib/{docgenerator_characters.rb → docgenerator/characters.rb} +75 -6
- data/lib/{docgenerator_css.rb → docgenerator/css.rb} +0 -0
- data/lib/docgenerator/document.rb +588 -0
- data/lib/{docgenerator_element.rb → docgenerator/element.rb} +52 -80
- data/lib/{docgenerator_elements.rb → docgenerator/elements.rb} +43 -17
- data/lib/{docgenerator_environments.rb → docgenerator/environments.rb} +20 -6
- data/lib/{docgenerator_footnote.rb → docgenerator/footnote.rb} +22 -18
- data/lib/{docgenerator_lists.rb → docgenerator/lists.rb} +17 -1
- data/lib/{docgenerator_sections.rb → docgenerator/sections.rb} +9 -1
- data/lib/docgenerator/standard.rb +81 -0
- data/lib/{docgenerator_tabular.rb → docgenerator/tabular.rb} +9 -5
- data/lib/packages/docgenerator_listings.rb +9 -5
- data/lib/packages/docgenerator_pdfpages.rb +17 -11
- data/lib/packages/docgenerator_url.rb +0 -2
- data/lib/templates/docgenerator_template.rb +66 -29
- data/lib/templates/docgenerator_template.yaml +18 -0
- data/lib/wiki2doc/wiki2docgenerator.rb +6 -2
- data/readme.rd +132 -0
- data/unittest/expected/test_document_usepackage_undefined.log +2 -0
- data/unittest/expected/test_enumerate.context +4 -0
- data/unittest/expected/test_footnote.html +4 -4
- data/unittest/expected/test_footnote.latex +4 -4
- data/unittest/expected/test_footnote_group.html +6 -6
- data/unittest/expected/test_footnote_group.latex +6 -6
- data/unittest/expected/test_href.html +2 -2
- data/unittest/expected/test_href.latex +2 -2
- data/unittest/expected/test_href.text +2 -2
- data/unittest/expected/test_itemize.context +4 -0
- data/unittest/expected/test_runtex.stdout +3 -0
- data/unittest/expected/test_runtex_2.stdout +3 -0
- data/unittest/expected/test_section.context +20 -0
- data/unittest/expected/test_tabular.html +2 -2
- data/unittest/expected/test_verbatim.html +3 -0
- data/unittest/expected/test_verbatim.latex +4 -0
- data/unittest/expected/test_verbatim_array.html +1 -0
- data/unittest/expected/test_verbatim_array.latex +2 -0
- data/unittest/expected_creole/test_creole_characters_all.html +12 -5
- data/unittest/expected_creole/test_creole_characters_all.latex +20 -6
- data/unittest/expected_creole/test_creole_comment.context +11 -0
- data/unittest/expected_creole/test_creole_comment.creole +12 -0
- data/unittest/expected_creole/test_creole_comment.html +9 -0
- data/unittest/expected_creole/test_creole_comment.latex +11 -0
- data/unittest/expected_creole/test_creole_creole1.0test.html +3 -3
- data/unittest/expected_creole/test_creole_creole1.0test.latex +3 -3
- data/unittest/expected_creole/test_creole_creole1.0test.text +4 -4
- data/unittest/expected_creole/test_creole_ignore.html +3 -0
- data/unittest/expected_creole/test_creole_ignore.latex +4 -0
- data/unittest/expected_creole/test_creole_ignore.text +2 -0
- data/unittest/expected_creole/test_creole_input.normsource +12 -12
- data/unittest/expected_creole/test_creole_input_file_simple.html +15 -0
- data/unittest/expected_creole/test_creole_input_file_simple_readlines.html +15 -0
- data/unittest/expected_creole/test_creole_links_external_implicit.html +2 -2
- data/unittest/expected_creole/test_creole_links_external_implicit.latex +2 -2
- data/unittest/expected_creole/test_creole_links_external_implicit.text +2 -2
- data/unittest/expected_creole/test_creole_links_implicit_end.creole +4 -0
- data/unittest/expected_creole/test_creole_links_implicit_end.html +3 -0
- data/unittest/expected_creole/test_creole_links_implicit_end.latex +4 -0
- data/unittest/expected_creole/test_creole_list_ul.normsource +42 -42
- data/unittest/expected_creole/test_creole_mix_titles_list.html +10 -0
- data/unittest/expected_creole/test_creole_mix_titles_list.latex +18 -0
- data/unittest/expected_creole/test_creole_mix_titles_list.text +12 -0
- data/unittest/expected_creole/test_creole_paragraphs.normsource +15 -15
- data/unittest/expected_creole/test_creole_pictures_css.html +4 -1
- data/unittest/expected_creole/test_creole_pictures_css.latex +5 -1
- data/unittest/expected_creole/test_creole_pictures_longdesc.html +3 -0
- data/unittest/expected_creole/test_creole_pictures_width.html +3 -0
- data/unittest/expected_creole/test_creole_pictures_width.latex +4 -0
- data/unittest/expected_creole/test_creole_short_html.html +3 -0
- data/unittest/expected_creole/test_creole_short_html.latex +4 -0
- data/unittest/expected_creole/test_creole_short_html.text +2 -0
- data/unittest/expected_creole/test_creole_shy.creole +6 -0
- data/unittest/expected_creole/test_creole_shy.html +6 -0
- data/unittest/expected_creole/test_creole_shy.latex +8 -0
- data/unittest/expected_creole/test_creole_shy.text +4 -0
- data/unittest/expected_creole/test_creole_tabular_with_cell_option.html +20 -0
- data/unittest/expected_creole/test_creole_toc.html +3 -1
- data/unittest/expected_creole/test_creole_toc.latex +1 -1
- data/unittest/expected_creole/test_creole_toc.text +1 -1
- data/unittest/expected_creole/test_creole_toc_level.html +7 -0
- data/unittest/expected_creole/test_creole_toc_level.latex +10 -0
- data/unittest/expected_creole/test_creole_toc_level.text +3 -0
- data/unittest/expected_creole/test_creole_toc_level_text.html +8 -0
- data/unittest/expected_creole/test_creole_toc_level_text.latex +9 -0
- data/unittest/expected_creole/test_creole_verbatim.html +1 -1
- data/unittest/expected_creole/test_creole_verbatim.latex +1 -1
- data/unittest/expected_creole/test_creole_verbatim.text +1 -1
- data/unittest/expected_creole/test_creole_verbatim_inline.html +1 -1
- data/unittest/expected_creole/test_creole_verbatim_inline.latex +1 -1
- data/unittest/expected_wiki/test_wiki_description.html +5 -5
- data/unittest/expected_wiki/test_wiki_description.latex +5 -5
- data/unittest/expected_wiki/test_wiki_description.text +5 -5
- data/unittest/expected_wiki/test_wiki_description.wiki +5 -5
- data/unittest/test_rakefile_docgenerator.rb +43 -0
- data/unittest/unittest_creole2doc.rb +415 -27
- data/unittest/unittest_docgenerator.rb +256 -23
- data/unittest/unittest_docgenerator_runtex.rb +83 -0
- data/unittest/unittest_versions.rb +44 -0
- data/unittest/unittest_wiki2doc.rb +28 -27
- metadata +473 -106
- data/lib/docgenerator_document.rb +0 -525
- data/lib/packages/docgenerator_beamer.rb +0 -253
- data/lib/yaml2presentation/yaml2presentation.rb +0 -1091
- data/unittest/expected/beamer_01_article.tex +0 -13
- data/unittest/expected/beamer_01_attachment.tex +0 -15
- data/unittest/expected/beamer_01_doc.html +0 -13
- data/unittest/expected/beamer_01_doc.tex +0 -18
- data/unittest/expected/beamer_01_notes_only.tex +0 -13
- data/unittest/expected/beamer_01_notes_onlyslideswithnotes.tex +0 -13
- data/unittest/expected/beamer_01_notes_show.tex +0 -13
- data/unittest/expected/beamer_01_presentation.tex +0 -13
- data/unittest/expected/beamer_02_doc.html +0 -29
- data/unittest/expected/beamer_02_doc.tex +0 -34
- data/unittest/expected/beamer_block.html +0 -1
- data/unittest/expected/beamer_block.latex +0 -1
- data/unittest/expected/beamer_doc_fragile_doc.tex +0 -33
- data/unittest/expected/beamer_doc_html_overview_with_detailpic_and_text_doc.html +0 -34
- data/unittest/expected/beamer_doc_html_overview_with_detailpic_doc.html +0 -34
- data/unittest/expected/beamer_doc_key_doc.html +0 -20
- data/unittest/expected/beamer_doc_key_doc.tex +0 -29
- data/unittest/expected/beamer_doc_note_doc.html +0 -30
- data/unittest/expected/beamer_doc_note_doc.tex +0 -37
- data/unittest/expected/beamer_doc_pic_bottom_doc.html +0 -24
- data/unittest/expected/beamer_doc_pic_doc.html +0 -24
- data/unittest/expected/beamer_doc_pic_doc.tex +0 -28
- data/unittest/expected/beamer_doc_pic_left_doc.html +0 -24
- data/unittest/expected/beamer_doc_pic_left_doc.tex +0 -28
- data/unittest/expected/beamer_doc_pic_ratio_doc.tex +0 -29
- data/unittest/expected/beamer_doc_pic_right_doc.html +0 -24
- data/unittest/expected/beamer_doc_pic_right_doc.tex +0 -28
- data/unittest/expected/beamer_doc_pic_top_doc.html +0 -24
- data/unittest/expected/beamer_frame.html +0 -5
- data/unittest/expected/beamer_frame.tex +0 -11
- data/unittest/expected/beamer_frame_fragile.tex +0 -7
- data/unittest/expected/beamer_frame_id.html +0 -1
- data/unittest/expected/beamer_frame_id.tex +0 -4
- data/unittest/expected/beamer_framepic.html +0 -5
- data/unittest/expected/beamer_framepic.latex +0 -1
- data/unittest/expected/beamer_framepic_link.html +0 -5
- data/unittest/expected/beamer_framepic_link.latex +0 -1
- data/unittest/expected/beamer_frametitle.html +0 -1
- data/unittest/expected/beamer_frametitle.latex +0 -1
- data/unittest/expected/beamer_note.html +0 -1
- data/unittest/expected/beamer_note.latex +0 -1
- data/unittest/expected_privat/test_creole_test_document.html +0 -6
- data/unittest/expected_wiki/test_wiki_amazon.html +0 -10
- data/unittest/expected_wiki/test_wiki_link.log +0 -3
- data/unittest/test_docgenerator.rb +0 -107
- 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
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
<h1 >
|
|
2
|
-
<p >Text
|
|
3
|
-
<h2 >
|
|
4
|
-
<p ><sup ><a name="footnote-1">1</a></sup>
|
|
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{
|
|
1
|
+
\section{Section 1}
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
Text
|
|
4
|
+
Text in section 1\footnote{Footnote one}More Text
|
|
5
5
|
|
|
6
|
-
\subsection{
|
|
6
|
+
\subsection{Footnotes}
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
\textsuperscript{\label{footnote-1}\hypertarget{footnote-1}{1}}
|
|
9
|
+
\textsuperscript{\label{footnote-1}\hypertarget{footnote-1}{1}}Footnote one\newline
|
|
10
10
|
|
|
11
11
|
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
<h1 >
|
|
2
|
-
<p >Text
|
|
3
|
-
<h2 >
|
|
4
|
-
<p ><sup ><a name="footnote-1">1</a></sup>
|
|
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 >
|
|
7
|
-
<p ><sup ><a name="g2-1">1</a></sup>
|
|
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{
|
|
1
|
+
\section{Section 1}
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
Text
|
|
4
|
+
Text in section 1\footnote{Footnote one (g1)}More Text\footnote{Again a footnote}
|
|
5
5
|
|
|
6
|
-
\subsection{
|
|
6
|
+
\subsection{Footnotes}
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
\textsuperscript{\label{footnote-1}\hypertarget{footnote-1}{1}}
|
|
9
|
+
\textsuperscript{\label{footnote-1}\hypertarget{footnote-1}{1}}Again a footnote\newline
|
|
10
10
|
|
|
11
11
|
|
|
12
|
-
\subsubsection{
|
|
12
|
+
\subsubsection{Footnotes of group 1}
|
|
13
13
|
|
|
14
14
|
|
|
15
|
-
\textsuperscript{\label{g2-1}\hypertarget{g2-1}{1}}
|
|
15
|
+
\textsuperscript{\label{g2-1}\hypertarget{g2-1}{1}}Footnote one (g1)\newline
|
|
16
16
|
|
|
17
17
|
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
<p >
|
|
2
|
-
<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,7 +1,7 @@
|
|
|
1
1
|
|
|
2
2
|
<table >
|
|
3
|
-
<tr style = "border-bottom-style: solid;border-bottom-width:
|
|
4
|
-
<tr style = "border-bottom-style: solid;border-bottom-width:
|
|
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 @@
|
|
|
1
|
+
<pre>Verbatimtextsecondline</pre>
|
|
@@ -1,10 +1,17 @@
|
|
|
1
1
|
<ul >
|
|
2
|
-
<li >⇐ </li>
|
|
3
|
-
<li >⇒ </li>
|
|
4
2
|
<li >$ </li>
|
|
5
3
|
<li >% </li>
|
|
6
|
-
<li >← </li>
|
|
7
|
-
<li >→ </li>
|
|
8
4
|
<li >& </li>
|
|
9
|
-
<li
|
|
5
|
+
<li >→ </li>
|
|
6
|
+
<li >← </li>
|
|
7
|
+
<li >⇐ </li>
|
|
8
|
+
<li >⇒ </li>
|
|
9
|
+
<li >_ </li>
|
|
10
|
+
<li >– </li>
|
|
11
|
+
<li >— </li>
|
|
12
|
+
<li >’ </li>
|
|
13
|
+
<li >‚ </li>
|
|
14
|
+
<li >“ </li>
|
|
15
|
+
<li >„ </li>
|
|
16
|
+
<li >…</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
|
|
22
|
+
\item ---
|
|
13
23
|
|
|
14
|
-
\item
|
|
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
|
|
|
@@ -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>
|
|
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>
|
|
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>
|
|
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>
|