The Markdown block lets you write and display text with simple formatting—like making words bold, creating lists, or adding headings—without needing to know how to code. Think of it like a lightweight version of a word processor, where special symbols (like ** for bold or # for a heading) automatically turn into clean, styled text.
It's especially useful for anyone who wants to combine plain descriptions with formatted content in one place, such as a computer science teacher explaining a concept alongside an example, or a writer mixing notes with structured outlines.
- Navigate to the page and select Edit this Page. Find the position you want to add a block and select the plus (+) icon.

- From the dropdown, select Add Block.

- In the Add Block modal, either:
- Use the Search field to find a block by keyword
- Select a block from your custom list of Favorites
- Scroll through the list of All Blocks to select one
Use the various Categories to filter by block type
Select a star icon to add or remove blocks in your Favorites list

Select the Markdown block. The Add Markdown form will open.

- Add the Markdown and then select the Add Block+ button to save the block to the page.

- The new block will appear on the page in Edit Mode with a red, dotted outline indicating it's editable.

- Select the Publish My Edits button to save the block to the course page and see the content as it will appear to learners.

Displaying Markdown as Code
To display HTML as code, use backtick ` marks as follows:
Single line of HTML
`<img src="logo.png" width="200" height="50"/>`
`**Bold,** *italics*, or ***bold italics*** `
Multiple lines of HTML
```
<html>
<head>
<title>Sample HTML Document</title>
</head>
<body></body>
</html>
```
```
## Header 2
1. Item 1
2. Item 2
3. ~~Item 3~~
4. Item 4
```
Additional information for Markdown: https://simplemde.com/markdown-guide or https://www.markdownguide.org/
Was this article helpful?
That’s Great!
Thank you for your feedback
Sorry! We couldn't be helpful
Thank you for your feedback
Feedback sent
We appreciate your effort and will try to fix the article