summaryrefslogtreecommitdiff
path: root/examples/formatting.txt
blob: 40a3f78df841cd5c13a17379f09ef47820634363 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Messages in `snac` allow a special subset of Markdown, that includes *emphasized*, **strong** and `monospaced` styles by surrounding text with one asterisk, two asterisks or backquotes, respectively.

Line breaks are output as you write it.


Prepending a less-than in a line makes it a quote:

> This is quoted text
>
> All angle-prepended lines are grouped in the same blockquote

It also allows preformatted text using three backquotes in a single line:

```
  /* this is preformatted text */

  struct node {
      struct node *prev;
      struct node *next;
  };

```

URLs like https://en.wikipedia.org/wiki/Main_Page are made clickable.