MARKOPOLIS
Dark mode

Markdown Syntax

syntax
markdown

This page showcases various markdown syntax and demonstrates how they are rendered.

Typography

Headings

# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5

Heading 1

Heading 2

Heading 3

Heading 4

Heading 5

Text formatting

**Bold text**
*Italic text*
~~this puts a strikethrough~~
==this highlights text==
**Bold text and _nested italic_ text**
***Bold and italic text***

Bold text
Italic text
this puts a strikethrough
this highlights text
Bold text and nested italic text
Bold and italic text


Images

embed images

Image names should be unique. Duplicate images will be overwritten. Image paths should be relative to vault root. If you are using Obsidian, you can configure this to automatically handle it. Refer Usage for more details. The following image formats are supported: jpeg, jpg, png, webp, svg.

![[image.png]]
![](image.png)
![[test.webp]]

Image Test

external images

![Engelbart](https://history-computer.com/ModernComputer/Basis/images/Engelbart.jpg)

Engelbart


Wikilinks

For wikilinks to be rendered correctly, the path should be relative to the vault root. If you are using Obsidian you can easily configure it to automatically do this without having to change your workflow. Refer to Usage for more details on how to do this.

[[Installation]]
[[release notes/backend]]

Installation
Backend


Footnotes

This is a simple footnote[^1].


[^1]: This is the referenced text.
[^2]: Add 2 spaces at the start of each new line.
  This lets you write footnotes that span multiple lines.
[^note]: Named footnotes still appear as numbers, but can make it easier to identify and link references.

This is a simple footnote1.


Quotes

> Human beings face ever more complex and urgent problems, and their effectiveness in dealing with these problems is a matter that is critical to the stability and continued progress of society.

\- Doug Engelbart, 1961

Human beings face ever more complex and urgent problems, and their effectiveness in dealing with these problems is a matter that is critical to the stability and continued progress of society.

- Doug Engelbart, 1961


Tables

| First name | Last name |
| ---------- | --------- |
| Max        | Planck    |
| Marie      | Curie     |
First name Last name
Max Planck
Marie Curie

The vertical bars on either side of the table are optional.

Cells don't need to be perfectly aligned with the columns. Each header row must have at least two hyphens.

First name | Last name
-- | --
Max | Planck
Marie | Curie
First name Last name
Max Planck
Marie Curie

Mermaid diagrams

Markopolis supports mermaid charts.

graph TB A --> B B --> C
flowchart LR A[Osaka 7-8] --> B[Tokyo 9-11] B -.Nagano .-> C[Matsumoto] C -.Nagano & Toyama.-> D[Takayama 12] <--> D1(Hida no Sato village) B -.Nagano & Toyama.-> D C <-.bus.-> D D --Toyama---> E <--> D2([Onsen 14]) --> F E[Kanazawa 13] ---> F[Kyoto 15-18] <--> F2(Uji) <--> F1(Nara) F <-.-> F4(Himeji)

Large chart

timeline section .NET Framework 2000 - 2005 : .NET Framework 1.0 : .NET Framework 1.0 SP1 : .NET Framework 1.0 SP2 : .NET Framework 1.1 : .NET Framework 1.0 SP3 : .NET Framework 2.0 2006 - 2009 : .NET Framework 3.0 : .NET Framework 3.5 : .NET Framework 2.0 SP 1 : .NET Framework 3.0 SP 1 : .NET Framework 2.0 SP 2 : .NET Framework 3.0 SP 2 : .NET Framework 3.5 SP 1 2010 - 2015 : .NET Framework 4.0 : .NET Framework 4.5 : .NET Framework 4.5.1 : .NET Framework 4.5.2 : .NET Framework 4.6 : .NET Framework 4.6.1 section .NET Core 2016 - 2017 : .NET Core 1.0 : .NET Core 1.1 : .NET Framework 4.6.2 : .NET Core 2.0 : .NET Framework 4.7 : .NET Framework 4.7.1 2018 - 2019 : .NET Core 2.1 : .NET Core 2.2 : .NET Framework 4.7.2 : .NET Core 3.0 : .NET Core 3.1 : .NET Framework 4.8 section Modern .NET 2020 : .NET 5 2021 : .NET 6 2022 : .NET 7 : .NET Framework 4.8.1

Callouts

Markopolis also supports Obsidian style Callouts. However, as of now custom callouts aren't supported. Only the following base Obsidian callout types are supported.

Lorem ipsum dolor sit amet
Lorem ipsum dolor sit amet
Lorem ipsum dolor sit amet
Lorem ipsum dolor sit amet
Lorem ipsum dolor sit amet
Lorem ipsum dolor sit amet
Lorem ipsum dolor sit amet
Lorem ipsum dolor sit amet
Lorem ipsum dolor sit amet
Lorem ipsum dolor sit amet
Lorem ipsum dolor sit amet
Lorem ipsum dolor sit amet
Title-only callout

Foldable callouts

You can make a callout foldable by adding a plus (+) or a minus (-) directly after the type identifier.

A plus sign expands the callout by default, and a minus sign collapses it instead.

Are callouts foldable? Yes! In a foldable callout, the contents are hidden when the callout is collapsed.

  1. This is the referenced text. 

  2. Add 2 spaces at the start of each new line. This lets you write footnotes that span multiple lines. 

  3. Named footnotes still appear as numbers, but can make it easier to identify and link references.