How can I change the formatting of a minute?

MinuteBase supports a system called Markdown which allows you to add basic formatting to your minutes such as bold, italic, and bulleted or numbered lists.

Bold & Italics

To use bold or italic text, you use asterisks (*) and underscores (_)

*single asterisks* – produces italic text: single asterisks

**double asterisks** – produces bold text: double asterisks

_single underscores_ – produces italic text: single underscores

__double underscores__ – produces bold text: double underscores

Headings

# Heading

produces:

Heading

Lists

* List item 1
* List item 2

produces:

  • List item 1
  • List item 2

Numbered Lists

1. List item 1
2. List item 2

produces:

  1. List item 1
  2. List item 2