= AsciiDoc Formatting Template // how to include external files and text blocks // include::path/to/external.adoc[] // include::https://example.com/external.adoc[] == Section Titles [abstract] ____ AsciiDoc is a text document format for writing notes, documentation, articles, books, ebooks, slideshows, web pages, man pages, and blogs. AsciiDoc files can be translated to many formats including HTML, PDF, EPUB, man page. some changes ____ === Subsection Titles ==== Sub-subsection Titles == Text Formatting *Emphasis* (Italic) **Strong Emphasis** (Bold) __Underline__ ++Monospace++ ## Superscript^2^ ## Subscript~2~ ## A^B^ == Lists === Bullet List * Item 1 * Item 2 ** Subitem 2.1 ** Subitem 2.2 * Item 3 === Numbered List . Item 1 . Item 2 .. Subitem 2.1 .. Subitem 2.2 . Item 3 == Links URL: https://www.example.com[Example Website] Internal Link: link:target.adoc[Link to Target] Email: mailto:example@example.com[Send Email] == Images image::image.png[Alt Text] == Tables [cols="3,2,5", options="header"] |=== |Column 1 | Column 2 | Column 3 |Cell 1.1 | Cell 1.2 | Cell 1.3 |Cell 2.1 | Cell 2.2 | Cell 2.3 |=== == Code Blocks [source,python] ---- def hello_world(): print("Hello, World!") hello_world() ---- == Blockquotes ____ A block quotation (also known as a long quotation or extract) is a quotation in a written document, that is set off from the main text as a paragraph, or block of text. ____ == Callouts [source,python] ---- # Callout 1 print("Hello") // Callout 2 System.out.println("World"); ---- [#]_This is a callout. == Footnotes Footnotes can be included like this.footnote:[This is a footnote.] == Escaping Special characters can be escaped using the backslash character: \*asterisks\*, \`backticks\`, \_underscores\_, etc. == Special Characters Special characters like &, <, >, [, and ] can be represented using their corresponding entities. == Quotes ``A famous quote`` - Famous Person == Page Breaks <<< == Horizontal Rule '''