Style Test
This page demonstrates all org-mode syntax elements and how they’re rendered in the published site.
Headings
Level 2 Heading
Level 3 Heading
-
Level 4 Heading
- Level 5 Heading
Text Formatting
Regular paragraph text with bold, italic, underline, strikethrough, and highlighted text (verbatim).
You can also use code snippets inline like this.
Lists
Unordered Lists
- First item
- Second item
- Nested item 1
- Nested item 2
- Deep nested item
- Third item
- Fourth item with longer text to see how wrapping works in the design
Ordered Lists
- First numbered item
- Second numbered item
- Nested numbered
- Another nested
- Third item
Mixed Lists
- Bullet point
- Numbered sub-item
- Another numbered
- Another bullet
- Nested bullet
- Deep numbered
- Nested bullet
Links
Internal Links
Link to another note:
Link to heading in same file:
External Links
Visit for documentation.
Code Blocks
Inline Code
Use git status to check repository state.
Code Block
def fibonacci(n):
"""Calculate fibonacci number recursively."""
if n <= 1:
return n
return fibonacci(n-1) + fibonacci(n-2)
# Test it
print(fibonacci(10))
Another Language
(defun my-function (arg)
"Example Emacs Lisp function."
(message "Hello %s!" arg))
(my-function "World")
Tables
Simple Table
| Name | Age | City |
|---|---|---|
| Alice | 30 | New York |
| Bob | 25 | London |
| Charlie | 35 | Tokyo |
| Diana | 28 | Paris |
Table with Alignment
| Left aligned | Center | Right |
|---|---|---|
| Text | 123 | 4.56 |
| More text | 789 | 10.11 |
Longer Table
| Number | Name | Age | Gender | City |
|---|---|---|---|---|
| 1 | Alice | 30 | Female | New York |
| 2 | Bob | 25 | Male | London |
| 3 | Charlie | 35 | Male | Tokyo |
| 4 | Diana | 28 | Female | Paris |
Quotes
This is a blockquote. It can span multiple lines and is used for citing text or emphasizing important passages.
It supports multiple paragraphs as well.
Special Blocks
Example Block
This is an example block.
It preserves formatting.
Including indentation.
Verse Block
Roses are red
Violets are blue
Org mode is great
And so are you
Emphasis and Highlighting
- This has
highlighted textwhich should be prominent - This has
inline codewhich is different - This is bold and this is italic
- This is underlined and this is
strikethrough
Images
Example image link (if it exists):
- ::
Horizontal Rule
Above the line.
Below the line.
Definition Lists
- Term 1
- Definition of term 1
- Term 2
- Definition of term 2 with more details
- Long Term
- This is a longer definition that might wrap to multiple lines to demonstrate how definition lists are rendered
Checkboxes
- Unchecked item
- [-] Partially checked item
- Checked item
- Another unchecked with longer text to see wrapping behavior
Foot notes
This text has a footnote reference1.
Here’s another reference2.
Backlinks Test
This note should show backlinks from any note that links to it. Try creating a link to this test page from another note to see how backlinks appear at the bottom.
Summary Section
This page demonstrates all major org-mode syntax elements. Use it to test:
- Typography and heading styles
- List formatting
- Table rendering
- Code block styling
- Link behavior
- Special blocks and quotes
- Text emphasis and highlighting
- Backlinks functionality
Check the rendered HTML to ensure everything displays correctly with the org-mode inspired styling.