Document basic supported markdown syntax. Closes #95

This commit is contained in:
Gabe Kangas 2020-07-30 16:20:48 -07:00
parent 99c6009292
commit 42752b7800
2 changed files with 21 additions and 0 deletions

View file

@ -83,6 +83,16 @@ If you want to add some additional content you can edit the [`/webroot/static/co
However, the web interface was specifically built to be editable by anybody comfortable tweaking a web page. It's not bundled or transpiled into anything, it's just HTML + Javascript + CSS that you can start editing. Feel free to add your own branding, links, change the colors in the CSS, fonts, layout, or anything else you could possibly want. No development environment is needed, just open the files in an editor and start tweaking.
The web chat supports some basic formatting using markdown:
Italic: `*your text*`
Bold: `**your text**`
Strikethrough: `~~your text~~`
Code blocks: <code>\`your text\`</code>
## Use with your desktop software

View file

@ -616,4 +616,15 @@ h2 {
width: 100%;
height: 170px;
border-radius: 15px;
}
.message-text .embedded-image {
width: 100%;
height: 170px;
border-radius: 15px;
}
.message-text code {
background-color:darkslategrey;
padding: 3px;
}