Markdown

Bloggrify uses Markdown as its primary content format, offering a streamlined writing experience with several powerful extensions. This page covers the key Markdown features available in Bloggrify.

For a live demo of Bloggrify in action, check out our blog.

Standard Markdown Support

Bloggrify supports all standard Markdown formatting you would expect:

  • Text formatting: bold, italic, strikethrough
  • Headings: from H1 to H6
  • Lists: ordered and unordered
  • Links: internal and external
  • Images: with alt text and captions
  • Code blocks: with syntax highlighting and copy button
  • Blockquotes: for quotes and callouts
  • Footnotes: for citations and references
  • Tables: for data and comparisons

Enhanced Markdown Features

Beyond basic Markdown, Bloggrify supports several advanced features:

Mathematics

Bloggrify supports mathematical expressions using KaTeX:

$E = mc^2$

$$
\frac{n!}{k!(n-k)!} = \binom{n}{k}
$$

Show demo.

Diagrams with Mermaid

Create flowcharts, sequence diagrams, class diagrams and more:

```mermaid
graph TD;
    A[Start] --> B[Process];
    B --> C[End];
```

Show demo.