### Markdown Ordered List Examples Source: https://www.markdownguide.org/basic-syntax Provides examples of creating ordered lists in Markdown using numbers followed by periods. It demonstrates that the numbering does not need to be sequential in the source, but the list should start with '1'. It also shows how to create indented sub-lists. ```markdown 1. First item 2. Second item 3. Third item 4. Fourth item ``` ```markdown 1. First item 1. Second item 1. Third item 1. Fourth item ``` ```markdown 1. First item 8. Second item 3. Third item 5. Fourth item ``` ```markdown 1. First item 2. Second item 3. Third item 1. Indented item 2. Indented item 4. Fourth item ``` -------------------------------- ### Markdown Definition Lists Example Source: https://www.markdownguide.org/extended-syntax Provides an example of creating definition lists in Markdown. Each term is followed by its definition(s), preceded by a colon. ```markdown First Term : This is the definition of the first term. Second Term : This is one definition of the second term. : This is another definition of the second term. ``` -------------------------------- ### Markdown Strikethrough Example Source: https://www.markdownguide.org/extended-syntax Demonstrates how to apply strikethrough formatting to text in Markdown using double tilde symbols. ```markdown ~~The world is flat.~~ We now know that the world is round. ``` -------------------------------- ### Markdown Task Lists Example Source: https://www.markdownguide.org/extended-syntax Illustrates the creation of task lists (checklists) in Markdown. Items can be marked as completed (`[x]`) or pending (`[ ]`). ```markdown - [x] Write the press release - [ ] Update the website - [ ] Contact the media ``` -------------------------------- ### HTML Ordered List Example Source: https://www.markdownguide.org/basic-syntax Shows the HTML equivalent for creating an ordered list with nested items. This is useful for understanding how Markdown renders to HTML and for ensuring compatibility. ```html
Content 1, full Markdown syntax support
Content 2, full Markdown syntax support