Content Markup: Headers
Weblobe supports two styles of headers, atx and Setext.
Atx-style headers use 1-6 hash characters at the start of the line,
corresponding to header levels 1-6. For example:
# This is an H1
## This is an H2
###### This is an H6
This is an H1
This is an H2
This is an H6
A Note About Using Headers:
Keeping your headers in a logical order helps to make your site accessible and search-engine friendly. H1 is usually reserved for the first header in a page (weblobe automatically places the contents of the title box in an H1 for you). Sub sections within a page should use H2, and sub-divisions within these sections should use H3, and so on.
Opening with an H1, followed by an H5, followed by an H2, then an H4 is confusing to users and really won't endear you to search engines.
Other Ways to Markup Headers:
Optionally, you may "close" atx-style headers. This is purely cosmetic -- you can use this if it helps you to read your markup. The closing hashes don't even need to match the number of hashes used to open the header. (The number of opening hashes determines the header level.) :
# This is an H1 #
## This is an H2 ##
### This is an H3 ######
Setext-style headers are "underlined" using equal signs (for first-level
headers) and dashes (for second-level headers). For example:
This is an H1
=============
This is an H2
-------------
Any number of underlining ='s or -'s will work.
