create Dec 31, 2025 7:21am · 16 days ago
Changed fields
Field Before After
id nil 19
canonical_name nil markdown guide
created_at nil 2025-12-31 07:21:23.641399000 UTC +00:00
metadata {} {"docs" => true, "source_wiki" => "docs", "source_wiki_source" => "Markdown_Guide.md", "summary" => "A quick guide to the Markdown you can use in Wittle.", "icon" => "📝"}
name nil Markdown Guide
wiki_id nil 2

Content diff

+52 −0
Before After
This page is a practical “what works” guide for writing pages in Wittle.
## Text
- **Bold**
- *Italic*
- ***Bold italic***
- Inline code: `PageRendering::Renderer`
## Headings
## H2
### H3
## Lists
1. Ordered item
2. Another item
   - Nested bullet
   - Another nested bullet
## Quotes
> Wittle pages are just Markdown.
## Code blocks
```ruby
def hello(name)
  "Hello, #{name}"
end
```
## Links
- External: [Rails Guides](https://guides.rubyonrails.org/)
- Internal: [Links](/wittle/docs/Links)
## YAML front matter (optional)
Wittle’s import/export format supports YAML front matter like:
```yaml
title: My Page
summary: A short description
icon: "⭐️"
```
In the docs and demo wikis, the front matter is used for things like page icons and summaries.