Text formatting

iamdroid.net supports Markdown formatting with certain extensions and limitations.

Text styling

Syntax:

Text **bold**
Text __bold__

Output:

Text bold
Text bold

Headings and italic style are not supported.
Line breaks will be respected.

Quote

Syntax:

> Quoted text

Output:

Quoted text

References

Syntax:

[Link text](https://iamdroid.net/)

![Image alt](https://iamdroid.net/themes/custom/inbox/logo.svg)

Output:

External links and links to external images are supported.

Lists

Syntax:

- List item 1
* List item 2
+ List item 3

1. List item 1
2. List item 2
3. List item 3

Output:

  • List item 1
  • List item 2
  • List item 3
  1. List item 1
  2. List item 2
  3. List item 3

Nested lists are supported as well.

Horizontal line

Syntax:

----

Output:


Code

Syntax:

The `inline code` surrounded by text.

```
Multiline
code
```

```language-php
// Code with syntax highlighting
$variable = 'string';
```

Output:

The inline code surrounded by text.

Multiline
code
// Code with syntax highlighting
$variable = 'string';

To mark up multiline code, the ~ symbol can be used instead of `.

Languages supported for using in language-*:

  • Markup - markup, html, xml, svg, mathml, ssml, atom, rss
  • CSS - css
  • C-like - clike
  • JavaScript - javascript, js
  • Apache Configuration - apacheconf
  • Bash - bash, sh, shell
  • Git - git
  • JavaDoc-like - javadoclike
  • JSON - json, webmanifest
  • Makefile - makefile
  • Markdown - markdown, md
  • Markup templating - markup-templating
  • nginx - nginx
  • PHP - php
  • PHPDoc - phpdoc
  • PHP Extras - php-extras
  • React JSX - jsx
  • React TSX - tsx
  • Sass (Sass) - sass
  • Sass (SCSS) - scss
  • Twig - twig
  • TypeScript - typescript, ts
  • YAML - yaml, yml

Supported HTML markup

  • <del>
  • <strong>
  • <blockquote>
  • <a href hreflang>
  • <img alt height src width>
  • <ul type>
  • <ol start type='1 A I'>
  • <li>
  • <dl>
  • <dt>
  • <dd>
  • <code class>
  • <pre class>
  • <span class>
  • <div>
  • <p>
  • <br>
  • <hr>

All other tags will be removed.