Headings
Markua is a way of writing books. Books have things like chapters, sections and subsections. Sometimes books have parts, e.g. Part One and Part Two.
Here’s the way that headings are currently made in Markua:
1 # Part # 2 3 This is a paragraph. 4 5 # Chapter 6 7 This is a paragraph. 8 9 ## Section 10 11 This is a paragraph. 12 13 ### Sub-Section 14 15 This is a paragraph. 16 17 #### Sub-Sub-Section 18 19 This is a paragraph. 20 21 ##### Sub-Sub-Sub-Section 22 23 This is a paragraph. 24 25 ###### Sub-Sub-Sub-Sub-Section 26 27 This is a paragraph. Note that we’re changing the way that Part headings are done in a few months. When we do, they will look like this:
1 {class: part} 2 # Part 3 4 This is a paragraph. Everything else that is shown above will continue to work.