asciidoctor-latex 1.5.0.3.dev → 1.5.0.4.dev
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.adoc +28 -5
- data/README.adoc +48 -23
- data/Rakefile +2 -1
- data/data/asciidoc_tex_macros.tex +86 -3
- data/data/extras.css +73 -1
- data/data/preamble_article.tex +15 -6
- data/data/preamble_book.tex +25 -9
- data/examples/README.adoc +341 -9
- data/examples/README.html +915 -0
- data/examples/math_article.adoc +46 -46
- data/examples/xref-equations.adoc +1 -2
- data/lib/asciidoctor-latex/click.css +2 -0
- data/lib/asciidoctor-latex/click.js +6 -0
- data/lib/asciidoctor-latex/jquery.js +4 -0
- data/lib/asciidoctor-latex/preamble_processor.rb +18 -0
- data/lib/asciidoctor/latex/click_block.rb +7 -4
- data/lib/asciidoctor/latex/converter.rb +75 -29
- data/lib/asciidoctor/latex/core_ext/utility.rb +55 -0
- data/lib/asciidoctor/latex/css.rb +50 -0
- data/lib/asciidoctor/latex/environment_block.rb +13 -6
- data/lib/asciidoctor/latex/inject_html.rb +2 -1
- data/lib/asciidoctor/latex/node_processors.rb +329 -152
- data/lib/asciidoctor/latex/prepend_processor.rb +1 -0
- data/lib/asciidoctor/latex/tex_postprocessor.rb +8 -3
- data/lib/asciidoctor/latex/tex_preprocessor.rb +31 -9
- data/lib/asciidoctor/latex/version.rb +1 -1
- data/test/examples/adoc/ampersand.adoc +2 -0
- data/test/examples/adoc/block_olist.adoc +58 -0
- data/test/examples/adoc/block_ulist.adoc +42 -0
- data/test/examples/adoc/box.adoc +35 -1
- data/test/examples/adoc/chem.adoc +8 -0
- data/test/examples/adoc/click_plain.adoc +24 -0
- data/test/examples/adoc/dlist.adoc +15 -0
- data/test/examples/adoc/env2.adoc +57 -0
- data/test/examples/adoc/env_joke.adoc +12 -0
- data/test/examples/adoc/env_plain.adoc +10 -0
- data/test/examples/adoc/eq-latex.adoc +39 -0
- data/test/examples/adoc/eq.adoc +18 -0
- data/test/examples/adoc/eq.tex +28 -0
- data/test/examples/adoc/eqalign.adoc +19 -6
- data/test/examples/adoc/eqalign.tex +25 -0
- data/test/examples/adoc/eqno-latex.adoc +120 -0
- data/test/examples/adoc/extras.adoc +14 -0
- data/test/examples/adoc/hypertarget.adoc +29 -0
- data/test/examples/adoc/image.adoc +7 -0
- data/test/examples/adoc/newEnvironments.tex +0 -0
- data/test/examples/adoc/table.adoc +6 -0
- data/test/examples/adoc/table.tex +10 -0
- data/test/examples/adoc/tex_pathologies.adoc +30 -0
- data/test/examples/html/env.html +147 -0
- data/test/examples/html/equations.html +14 -0
- data/test/examples/tex/ampersand.tex +2 -0
- data/test/examples/tex/block_admonition.tex +20 -0
- data/test/examples/tex/block_audio.tex +7 -0
- data/test/examples/tex/block_colist.tex +23 -0
- data/test/examples/tex/block_dlist.tex +117 -0
- data/test/examples/tex/block_example.tex +20 -0
- data/test/examples/tex/block_floating_title.tex +20 -0
- data/test/examples/tex/block_image.tex +46 -0
- data/test/examples/tex/block_listing.tex +59 -0
- data/test/examples/tex/block_literal.tex +28 -0
- data/test/examples/tex/block_olist.tex +119 -0
- data/test/examples/tex/block_open.tex +22 -0
- data/test/examples/tex/block_outline.tex +25 -0
- data/test/examples/tex/block_page_break.tex +4 -0
- data/test/examples/tex/block_paragraph.tex +13 -0
- data/test/examples/tex/block_pass.tex +3 -0
- data/test/examples/tex/block_preamble.tex +15 -0
- data/test/examples/tex/block_quote.tex +51 -0
- data/test/examples/tex/block_sidebar.tex +21 -0
- data/test/examples/tex/block_stem.tex +19 -0
- data/test/examples/tex/block_table.tex +188 -0
- data/test/examples/tex/block_thematic_break.tex +1 -0
- data/test/examples/tex/block_toc.tex +27 -0
- data/test/examples/tex/block_ulist.tex +96 -0
- data/test/examples/tex/block_verse.tex +39 -0
- data/test/examples/tex/block_video.tex +15 -0
- data/test/examples/tex/box.tex +25 -0
- data/test/examples/tex/chem.tex +7 -0
- data/test/examples/tex/click_plain.tex +25 -0
- data/test/examples/tex/dlist.tex +17 -0
- data/test/examples/tex/document.tex +25 -0
- data/test/examples/tex/embedded.tex +7 -0
- data/test/examples/tex/env.tex +7 -7
- data/test/examples/tex/env2.tex +29 -0
- data/test/examples/tex/env_joke.tex +9 -0
- data/test/examples/tex/env_plain.tex +7 -0
- data/test/examples/tex/eq-latex.tex +49 -0
- data/test/examples/tex/eq.tex +9 -0
- data/test/examples/tex/eqalign.tex +23 -0
- data/test/examples/tex/eqno-latex.tex +237 -0
- data/test/examples/tex/exponent1.tex +2 -0
- data/test/examples/tex/exponent2.tex +4 -0
- data/test/examples/tex/extras.tex +13 -0
- data/test/examples/tex/hypertarget.tex +25 -0
- data/test/examples/tex/image.tex +4 -0
- data/test/examples/tex/inline_anchor.tex +25 -0
- data/test/examples/tex/inline_break.tex +7 -0
- data/test/examples/tex/inline_button.tex +1 -0
- data/test/examples/tex/inline_callout.tex +4 -0
- data/test/examples/tex/inline_footnote.tex +9 -0
- data/test/examples/tex/inline_image.tex +25 -0
- data/test/examples/tex/inline_kbd.tex +3 -0
- data/test/examples/tex/inline_menu.tex +5 -0
- data/test/examples/tex/inline_quoted.tex +63 -0
- data/test/examples/tex/line_break.tex +4 -0
- data/test/examples/tex/listing.tex +10 -0
- data/test/examples/tex/literal.tex +42 -0
- data/test/examples/tex/macro_underscore.tex +6 -0
- data/test/examples/tex/math.tex +8 -0
- data/test/examples/tex/open_block.tex +10 -0
- data/test/examples/tex/page_break.tex +4 -0
- data/test/examples/tex/pass.tex +3 -0
- data/test/examples/tex/section.tex +51 -0
- data/test/examples/tex/sections.tex +13 -0
- data/test/examples/tex/table.tex +10 -0
- data/test/examples/tex/tex_pathologies.tex +26 -0
- data/test/examples/tex/zero.tex +1 -1
- metadata +188 -26
- data/examples/box.adoc +0 -16
- data/examples/chem.adoc +0 -17
- data/examples/eq-alignment.adoc +0 -5
- data/examples/eq-block.adoc +0 -60
- data/test/examples/adoc/admonition.adoc +0 -11
- data/test_jc/admonition.adoc +0 -4
- data/test_jc/click.adoc +0 -7
- data/test_jc/env.adoc +0 -31
- data/test_jc/example.adoc +0 -17
- data/test_jc/floating_title.adoc +0 -15
- data/test_jc/image.adoc +0 -84
- data/test_jc/images/frog.jpg +0 -0
- data/test_jc/images/red_frog.jpeg +0 -0
- data/test_jc/images/yellow_frog.jpeg +0 -0
- data/test_jc/listing.adoc +0 -9
- data/test_jc/lists.adoc +0 -20
- data/test_jc/math.adoc +0 -10
- data/test_jc/preamble.adoc +0 -14
- data/test_jc/section-numbered.adoc +0 -9
- data/test_jc/section.adoc +0 -7
- data/test_jc/sidebar.adoc +0 -61
- data/test_jc/verse.adoc +0 -15
@@ -0,0 +1,22 @@
|
|
1
|
+
%== .basic ==%
|
2
|
+
An open block can be an anonymous container,
|
3
|
+
or it can masquerade as any other block.
|
4
|
+
|
5
|
+
%== .basic_with_title ==%
|
6
|
+
An open block can be an anonymous container,
|
7
|
+
or it can masquerade as any other block.
|
8
|
+
|
9
|
+
%== .basic_with_id_and_role ==%
|
10
|
+
An open block can be an anonymous container,
|
11
|
+
or it can masquerade as any other block.
|
12
|
+
|
13
|
+
%== .abstract ==%
|
14
|
+
This is an abstract quote block.
|
15
|
+
|
16
|
+
%== .abstract_with_title ==%
|
17
|
+
This is an abstract quote block.
|
18
|
+
Who knows what it really means?
|
19
|
+
|
20
|
+
%== .abstract_with_id_and_role ==%
|
21
|
+
This is an abstract quote block.
|
22
|
+
Who knows what it really means?
|
@@ -0,0 +1,25 @@
|
|
1
|
+
%== .basic ==%
|
2
|
+
\hypertarget{_section_1}{\section*{Section 1}}
|
3
|
+
\hypertarget{_section_2}{\section*{Section 2}}
|
4
|
+
\hypertarget{_section_2.1}{\subsection*{Section 2.1}}
|
5
|
+
\hypertarget{_section_2.1.1}{\subsubsection*{Section 2.1.1}}
|
6
|
+
\hypertarget{_section_3}{\section*{Section 3}}
|
7
|
+
|
8
|
+
%== .toclevels ==%
|
9
|
+
\hypertarget{_section_1}{\section*{Section 1}}
|
10
|
+
\hypertarget{_section_1.1}{\subsection*{Section 1.1}}
|
11
|
+
\hypertarget{_section_1.1.1}{\subsubsection*{Section 1.1.1}}
|
12
|
+
\hypertarget{_section_2}{\section*{Section 2}}
|
13
|
+
|
14
|
+
%== .numbered ==%
|
15
|
+
\hypertarget{_section_1}{\section{Section 1}}
|
16
|
+
\hypertarget{_unnumbered_section}{\section*{Unnumbered Section}}
|
17
|
+
\hypertarget{_section_2}{\section{Section 2}}
|
18
|
+
\hypertarget{_section_2.1}{\subsection{Section 2.1}}
|
19
|
+
\hypertarget{_section_3}{\section{Section 3}}
|
20
|
+
|
21
|
+
%== .sectnumlevels ==%
|
22
|
+
\hypertarget{_section_1}{\section{Section 1}}
|
23
|
+
\hypertarget{_section_1.1}{\subsection{Section 1.1}}
|
24
|
+
\hypertarget{_section_1.1.1}{\subsubsection{Section 1.1.1}}
|
25
|
+
\hypertarget{_section_2}{\section{Section 2}}
|
@@ -0,0 +1,13 @@
|
|
1
|
+
%== .basic ==%
|
2
|
+
Paragraphs don’t require any special markup in AsciiDoc.
|
3
|
+
A paragraph is just one or more lines of consecutive text.
|
4
|
+
To begin a new paragraph, separate it by at least one blank line.
|
5
|
+
|
6
|
+
%== .with_title ==%
|
7
|
+
{\bf Paragraphs.} Paragraphs don’t require any special markup in AsciiDoc.
|
8
|
+
A paragraph is just one or more lines of consecutive text.
|
9
|
+
To begin a new paragraph, separate it by at least one blank line.
|
10
|
+
|
11
|
+
%== .with_id_and_role ==%
|
12
|
+
\rolered{Paragraphs don’t require any special markup in AsciiDoc.
|
13
|
+
A paragraph is just one or more lines of consecutive text.}
|
@@ -0,0 +1,15 @@
|
|
1
|
+
%== .basic ==%
|
2
|
+
\begin{preamble}
|
3
|
+
This journey begins on a bleary Monday morning.
|
4
|
+
Our intrepid team is in desperate need of double shot mochas, but the milk expired eight days ago.
|
5
|
+
\end{preamble}
|
6
|
+
\hypertarget{_cavern_glow}{\section*{Cavern Glow}}
|
7
|
+
The river rages through the cavern, rattling its content.
|
8
|
+
|
9
|
+
%== .toc_placement_preamble ==%
|
10
|
+
\begin{preamble}
|
11
|
+
This journey begins on a bleary Monday morning.
|
12
|
+
Our intrepid team is in desperate need of double shot mochas, but the milk expired eight days ago.
|
13
|
+
\end{preamble}
|
14
|
+
\hypertarget{_cavern_glow}{\section*{Cavern Glow}}
|
15
|
+
The river rages through the cavern, rattling its content.
|
@@ -0,0 +1,51 @@
|
|
1
|
+
ONE
|
2
|
+
|
3
|
+
|
4
|
+
\begin{quotation}
|
5
|
+
Four score and seven years ago our fathers brought forth
|
6
|
+
on this continent a new nation…
|
7
|
+
\end{quotation}
|
8
|
+
|
9
|
+
TWO
|
10
|
+
|
11
|
+
|
12
|
+
\begin{aquote}{Albert Einstein}{}
|
13
|
+
A person who never made a mistake never tried anything new.
|
14
|
+
\end{aquote}
|
15
|
+
|
16
|
+
THEREE
|
17
|
+
|
18
|
+
|
19
|
+
\begin{aquote}{Captain James T. Kirk}{{\bf Star Trek IV: The Voyage Home} \\}
|
20
|
+
Everybody remember where we parked.
|
21
|
+
\end{aquote}
|
22
|
+
|
23
|
+
FOUR
|
24
|
+
|
25
|
+
|
26
|
+
\begin{tquote}{After landing the cloaked Klingon ship:}
|
27
|
+
Everybody remember where we parked.
|
28
|
+
\end{tquote}
|
29
|
+
|
30
|
+
FIVE
|
31
|
+
|
32
|
+
|
33
|
+
\begin{quotation}
|
34
|
+
Everybody remember where we parked.
|
35
|
+
\end{quotation}
|
36
|
+
|
37
|
+
\begin{quotation}
|
38
|
+
Dennis: Come and see the violence inherent in the system. Help! Help! I’m being repressed!
|
39
|
+
|
40
|
+
|
41
|
+
King Arthur: Bloody peasant!
|
42
|
+
|
43
|
+
|
44
|
+
Dennis: Oh, what a giveaway! Did you hear that? Did you hear that, eh?
|
45
|
+
|
46
|
+
|
47
|
+
\begin{verbatim}
|
48
|
+
|
49
|
+
\end{verbatim}
|
50
|
+
\end{quotation}
|
51
|
+
|
@@ -0,0 +1,21 @@
|
|
1
|
+
%== .basic ==%
|
2
|
+
\begin{sidebar}
|
3
|
+
AsciiDoc was first released in Nov 2002 by Stuart Rackham.
|
4
|
+
It was designed from the start to be a shorthand syntax
|
5
|
+
for producing professional documents like DocBook and LaTeX.
|
6
|
+
\end{sidebar}
|
7
|
+
|
8
|
+
%== .with_title ==%
|
9
|
+
\begin{sidebar}
|
10
|
+
\bf{AsciiDoc history}\\AsciiDoc was first released in Nov 2002 by Stuart Rackham.
|
11
|
+
It was designed from the start to be a shorthand syntax
|
12
|
+
for producing professional documents like DocBook and LaTeX.
|
13
|
+
\end{sidebar}
|
14
|
+
|
15
|
+
%== .with_id_and_role ==%
|
16
|
+
\begin{sidebar}
|
17
|
+
\hypertarget{origin}{AsciiDoc was first released in Nov 2002 by Stuart Rackham.
|
18
|
+
It was designed from the start to be a shorthand syntax
|
19
|
+
for producing professional documents like DocBook and LaTeX.
|
20
|
+
}
|
21
|
+
\end{sidebar}
|
@@ -0,0 +1,188 @@
|
|
1
|
+
%== .basic ==%
|
2
|
+
\begin{center}
|
3
|
+
\begin{tabular}{|c|c|}
|
4
|
+
\hline
|
5
|
+
Cell in column 1, row 1 & Cell in column 2, row 1 \\
|
6
|
+
Cell in column 1, row 2 & Cell in column 2, row 2 \\
|
7
|
+
\hline
|
8
|
+
\end{tabular}
|
9
|
+
\end{center}
|
10
|
+
|
11
|
+
%== .with_frame_sides ==%
|
12
|
+
\begin{center}
|
13
|
+
\begin{tabular}{|c|c|}
|
14
|
+
\hline
|
15
|
+
Cell in column 1, row 1 & Cell in column 2, row 1 \\
|
16
|
+
\hline
|
17
|
+
\end{tabular}
|
18
|
+
\end{center}
|
19
|
+
|
20
|
+
%== .with_grid_cols ==%
|
21
|
+
\begin{center}
|
22
|
+
\begin{tabular}{|c|c|}
|
23
|
+
\hline
|
24
|
+
Cell in column 1, row 1 & Cell in column 2, row 1 \\
|
25
|
+
\hline
|
26
|
+
\end{tabular}
|
27
|
+
\end{center}
|
28
|
+
|
29
|
+
%== .with_float ==%
|
30
|
+
\begin{center}
|
31
|
+
\begin{tabular}{|c|c|}
|
32
|
+
\hline
|
33
|
+
Cell in column 1, row 1 & Cell in column 2, row 1 \\
|
34
|
+
\hline
|
35
|
+
\end{tabular}
|
36
|
+
\end{center}
|
37
|
+
|
38
|
+
%== .with_width ==%
|
39
|
+
\begin{center}
|
40
|
+
\begin{tabular}{|c|c|}
|
41
|
+
\hline
|
42
|
+
Cell in column 1, row 1 & Cell in column 2, row 1 \\
|
43
|
+
\hline
|
44
|
+
\end{tabular}
|
45
|
+
\end{center}
|
46
|
+
|
47
|
+
%== .with_autowidth ==%
|
48
|
+
\begin{center}
|
49
|
+
\begin{tabular}{|c|c|}
|
50
|
+
\hline
|
51
|
+
Cell in column 1, row 1 & Cell in column 2, row 1 \\
|
52
|
+
\hline
|
53
|
+
\end{tabular}
|
54
|
+
\end{center}
|
55
|
+
|
56
|
+
%== .with_title ==%
|
57
|
+
\begin{center}
|
58
|
+
\begin{tabular}{|c|c|}
|
59
|
+
\hline
|
60
|
+
Cell in column 1, row 1 & Cell in column 2, row 1 \\
|
61
|
+
\hline
|
62
|
+
\end{tabular}
|
63
|
+
\end{center}
|
64
|
+
|
65
|
+
%== .with_id_and_role ==%
|
66
|
+
\begin{center}
|
67
|
+
\begin{tabular}{|c|c|}
|
68
|
+
\hline
|
69
|
+
Cell in column 1, row 1 & Cell in column 2, row 1 \\
|
70
|
+
\hline
|
71
|
+
\end{tabular}
|
72
|
+
\end{center}
|
73
|
+
|
74
|
+
%== .with_header ==%
|
75
|
+
\begin{center}
|
76
|
+
\begin{tabular}{|c|c|}
|
77
|
+
\hline
|
78
|
+
Cell in column 1, row 1 & Cell in column 2, row 1 \\
|
79
|
+
Cell in column 1, row 2 & Cell in column 2, row 2 \\
|
80
|
+
\hline
|
81
|
+
\end{tabular}
|
82
|
+
\end{center}
|
83
|
+
|
84
|
+
%== .with_footer ==%
|
85
|
+
\begin{center}
|
86
|
+
\begin{tabular}{|c|c|}
|
87
|
+
\hline
|
88
|
+
Cell in column 1, row 1 & Cell in column 2, row 1 \\
|
89
|
+
Cell in column 1, row 2 & Cell in column 2, row 2 \\
|
90
|
+
\hline
|
91
|
+
\end{tabular}
|
92
|
+
\end{center}
|
93
|
+
|
94
|
+
%== .with_cols_width ==%
|
95
|
+
\begin{center}
|
96
|
+
\begin{tabular}{|c|c|c|}
|
97
|
+
\hline
|
98
|
+
Cell in column 1, row 1 & Cell in column 2, row 1 & Cell in column 3, row 1 \\
|
99
|
+
\hline
|
100
|
+
\end{tabular}
|
101
|
+
\end{center}
|
102
|
+
|
103
|
+
%== .with_cols_halign ==%
|
104
|
+
\begin{center}
|
105
|
+
\begin{tabular}{|c|c|c|}
|
106
|
+
\hline
|
107
|
+
Cell in column 1, row 1 & Cell in column 2, row 1 & Cell in column 3, row 1 \\
|
108
|
+
\hline
|
109
|
+
\end{tabular}
|
110
|
+
\end{center}
|
111
|
+
|
112
|
+
%== .with_cols_valign ==%
|
113
|
+
\begin{center}
|
114
|
+
\begin{tabular}{|c|c|c|}
|
115
|
+
\hline
|
116
|
+
Cell in column 1, row 1 & Cell in column 2, row 1 & Cell in column 3, row 1 \\
|
117
|
+
\hline
|
118
|
+
\end{tabular}
|
119
|
+
\end{center}
|
120
|
+
|
121
|
+
%== .with_cols_styles ==%
|
122
|
+
\begin{center}
|
123
|
+
\begin{tabular}{|c|c|c|c|c|c|c|}
|
124
|
+
\hline
|
125
|
+
\ & \emph{Emphasized text} & Styled like a header & \unknown\{Literal block\} & {\tt Monospaced text} & \textbf{Strong text} & \unknown\{Verse block\} \\
|
126
|
+
\hline
|
127
|
+
\end{tabular}
|
128
|
+
\end{center}
|
129
|
+
|
130
|
+
%== .colspan ==%
|
131
|
+
\begin{center}
|
132
|
+
\begin{tabular}{|c|c|c|}
|
133
|
+
\hline
|
134
|
+
Cell in column 1, row 1 & Cell in column 2, row 1 & Cell in column 3, row 1 \\
|
135
|
+
Content in a single cell that spans columns 1 and 3 & Cell in column 3, row 1 \\
|
136
|
+
\hline
|
137
|
+
\end{tabular}
|
138
|
+
\end{center}
|
139
|
+
|
140
|
+
%== .rowspan ==%
|
141
|
+
\begin{center}
|
142
|
+
\begin{tabular}{|c|c|c|}
|
143
|
+
\hline
|
144
|
+
Cell in column 1, row 1 & Cell in column 2, row 1 & Cell in column 3, row 1 \\
|
145
|
+
Content in a single cell that spans rows 2 and 3 & Cell in column 2, row 2 & Cell in column 3, row 2 \\
|
146
|
+
Cell in column 2, row 3 & Cell in column 3, row 3 \\
|
147
|
+
\hline
|
148
|
+
\end{tabular}
|
149
|
+
\end{center}
|
150
|
+
|
151
|
+
%== .cell_with_paragraphs ==%
|
152
|
+
\begin{center}
|
153
|
+
\begin{tabular}{|c|}
|
154
|
+
\hline
|
155
|
+
Single paragraph on row 1 \\
|
156
|
+
First paragraph on row 2
|
157
|
+
\\
|
158
|
+
\hline
|
159
|
+
\end{tabular}
|
160
|
+
\end{center}
|
161
|
+
|
162
|
+
%== .aligns_per_cell ==%
|
163
|
+
\begin{center}
|
164
|
+
\begin{tabular}{|c|c|c|}
|
165
|
+
\hline
|
166
|
+
Prefix the {vbar} with {caret} to center content horizontally & Prefix the {vbar} with < to align the content to the left horizontally & Prefix the {vbar} with > to align the content to the right horizontally \\
|
167
|
+
Prefix the {vbar} with a . and {caret} to center the content in the cell vertically & Prefix the {vbar} with a . and < to align the content to the top of the cell & Prefix the {vbar} with a . and > to align the content to the bottom of the cell \\
|
168
|
+
This content spans three columns (3{plus}) and is centered horizontally ({caret}) and vertically (.{caret}) within the cell. \\
|
169
|
+
\hline
|
170
|
+
\end{tabular}
|
171
|
+
\end{center}
|
172
|
+
|
173
|
+
%== .insane_cells_formatting ==%
|
174
|
+
\begin{center}
|
175
|
+
\begin{tabular}{|c|c|}
|
176
|
+
\hline
|
177
|
+
{\tt This content is duplicated across two columns.
|
178
|
+
} & {\tt This content is duplicated across two columns.
|
179
|
+
} \\
|
180
|
+
\textbf{This cell spans 3 rows. The content is centered horizontally, aligned to the bottom of the cell, and strong.} & \emph{This content is emphasized.} \\
|
181
|
+
\unknown\{This content is aligned to the top of the cell and literal.\} \\
|
182
|
+
\unknown\{This cell contains a verse
|
183
|
+
that may one day expound on the
|
184
|
+
wonders of tables in an
|
185
|
+
epic sonnet.\} \\
|
186
|
+
\hline
|
187
|
+
\end{tabular}
|
188
|
+
\end{center}
|
@@ -0,0 +1 @@
|
|
1
|
+
%== .basic ==%
|
@@ -0,0 +1,27 @@
|
|
1
|
+
%== .basic ==%
|
2
|
+
\section*{Introduction}
|
3
|
+
\hypertarget{_introduction}{}
|
4
|
+
\section*{The Ravages of Writing}
|
5
|
+
\hypertarget{_the_ravages_of_writing}{\subsection*{A Recipe for Potion}}
|
6
|
+
\subsection*{A Recipe for Potion}
|
7
|
+
\hypertarget{_a_recipe_for_potion}{}
|
8
|
+
|
9
|
+
%== .with_title ==%
|
10
|
+
\section*{Introduction}
|
11
|
+
\hypertarget{_introduction}{}
|
12
|
+
\section*{The Ravages of Writing}
|
13
|
+
\hypertarget{_the_ravages_of_writing}{}
|
14
|
+
|
15
|
+
%== .with_levels ==%
|
16
|
+
\section*{Introduction}
|
17
|
+
\hypertarget{_introduction}{}
|
18
|
+
\section*{The Ravages of Writing}
|
19
|
+
\hypertarget{_the_ravages_of_writing}{\subsection*{A Recipe for Potion}}
|
20
|
+
\subsection*{A Recipe for Potion}
|
21
|
+
\hypertarget{_a_recipe_for_potion}{}
|
22
|
+
|
23
|
+
%== .with_id_and_role ==%
|
24
|
+
\section*{Introduction}
|
25
|
+
\hypertarget{_introduction}{}
|
26
|
+
\section*{The Ravages of Writing}
|
27
|
+
\hypertarget{_the_ravages_of_writing}{}
|
@@ -0,0 +1,96 @@
|
|
1
|
+
\begin{itemize}
|
2
|
+
|
3
|
+
\item Edgar Allen Poe
|
4
|
+
|
5
|
+
\item Sheri S. Tepper
|
6
|
+
|
7
|
+
\item Bill Bryson
|
8
|
+
|
9
|
+
\end{itemize}
|
10
|
+
|
11
|
+
|
12
|
+
\begin{itemize}
|
13
|
+
|
14
|
+
\item Edgar Allen Poe
|
15
|
+
|
16
|
+
\item Sheri S. Tepper
|
17
|
+
|
18
|
+
\item Bill Bryson
|
19
|
+
|
20
|
+
\end{itemize}
|
21
|
+
|
22
|
+
|
23
|
+
\begin{itemize}
|
24
|
+
|
25
|
+
\item Edgar Allen Poe
|
26
|
+
|
27
|
+
\item Sheri S. Tepper
|
28
|
+
|
29
|
+
\item Bill Bryson
|
30
|
+
|
31
|
+
\end{itemize}
|
32
|
+
|
33
|
+
|
34
|
+
\begin{itemize}
|
35
|
+
|
36
|
+
\item level 1
|
37
|
+
|
38
|
+
\begin{itemize}
|
39
|
+
|
40
|
+
\item level 2
|
41
|
+
|
42
|
+
\begin{itemize}
|
43
|
+
|
44
|
+
\item level 3
|
45
|
+
|
46
|
+
\begin{itemize}
|
47
|
+
|
48
|
+
\item level 4
|
49
|
+
|
50
|
+
\end{itemize}
|
51
|
+
|
52
|
+
\end{itemize}
|
53
|
+
|
54
|
+
\item level 2
|
55
|
+
|
56
|
+
\end{itemize}
|
57
|
+
|
58
|
+
\end{itemize}
|
59
|
+
|
60
|
+
|
61
|
+
\begin{itemize}
|
62
|
+
|
63
|
+
\item Every list item has at least one paragraph of content,
|
64
|
+
which may be wrapped, even using a hanging indent.
|
65
|
+
|
66
|
+
Additional paragraphs or blocks are adjoined by putting
|
67
|
+
a list continuation on a line adjacent to both blocks.
|
68
|
+
|
69
|
+
|
70
|
+
\begin{description}
|
71
|
+
|
72
|
+
\item[list continuation]a plus sign ({\tt +}) on a line by itself
|
73
|
+
|
74
|
+
\end{description}
|
75
|
+
|
76
|
+
\item A literal paragraph does not require a list continuation.
|
77
|
+
|
78
|
+
\begin{verbatim}
|
79
|
+
$ gem install asciidoctor
|
80
|
+
\end{verbatim}
|
81
|
+
\end{itemize}
|
82
|
+
|
83
|
+
|
84
|
+
\begin{itemize}
|
85
|
+
|
86
|
+
\item checked
|
87
|
+
|
88
|
+
\item also checked
|
89
|
+
|
90
|
+
\item not checked
|
91
|
+
|
92
|
+
\item normal list item
|
93
|
+
|
94
|
+
\end{itemize}
|
95
|
+
|
96
|
+
|