Text formatting
When building Pages, you can insert text notes between fields with any instructions you wish to include on the page. Dabble DB allows you to do a limited amount of formatting using the Markdown syntax or any HTML tags that can be created with Markdown.
A toolbar above the text box lets you do some of this formatting by clicking the appropriate button. You can also just type the syntax as follows below.
Bold text
Put two asterisks around the word or words you want to appear in bold.
This sentence has a **bold** word.
Italic text
Put underscores around the word or words you want to appear in italics.
This sentence has an _italic_ word.
Note: To prevent characters from triggering formatting, precede them by the backslash.
(e.g. This will not appear \**bold\** or \_italic\_.)
Links
Create links to other web pages using this format (it’s important not to add any extra spaces or punctuation):
[Text of the link](http://yourwebsite.com/)
Images
Include images using this format (images cannot be uploaded — they must exist on another web site):

Headers
You can create a header by prefixing a line with one or more # symbols. One # creates a big header, and each additional # makes the header less prominent (up to 6).
# Important information
Lists
You can create bulleted lists by prefixing lines with the asterisk character *. You can also create numbered lists by prefixing the line with a number and a period. (Proper indentation will be added automatically.)
* This is an item
* This is another item
1. First item
2. Second item
