Discourse Tips & Tricks

Introduction

Discourse is a forum-like platform designed to allow communities come together and share their knowledge, work problems, and even have fun. While Discourse will be like many forums you may have used before, there are some distinctions.

Structure

Discourse is designed with a Category / Topic structure. Simply put, a Category is a collection of posts, which Discourse calls Topics. Topics may be a single post (the Original Post or OP for short) or have many replies.

Categories may have Subcategories, as well. Always be mindful of where you are posting to ensure your content is seen by the right audiences. If you ever create a topic by mistake, simply contact the Admins or Moderators to have them deleted.

Content Styling

Discourse supports many different style languages, including: HTML, BBCode, and Markdown. For a complete rundown of the various syntax commands you can use, please refer to the following Unofficial Guide copied from this website.


Copied from this guidebook

This is a “quick” how-to guide for using Discourse forum/community software. It contains a majority of the common features available to users/content editors, but may not have complete coverage of the featureset. If anyone sees anything to add or correct, feel free to comment. If you’d like to learn more about the Discourse Editor’s syntax take a look at the commonmark (a flavor of markdown) docs for more info.

Links

Most of the time you’d want to use the editor bar image
or hotkey crtl+k, but the basic format is [link text](https://www.ussbrahe.org) which will give you an example link that looks like this: link text

Note - Easier Editing with Links
Having long URLs intermingled in your editor can sometimes make it a pain so you can also offset the links using the syntax in the example below. Note you must have a blank line above the reference and the reference id can be any number, text, or punctuation.

This paragraph is much easier to read in the [editor][1] because you can 
[include][dklink] the links below the paragraph text or at the bottom of the page.
 
[1]: https://www.ussbrahe.org/t/recruitment/37
[dklink]: https://www.ussbrahe.org/

This paragraph is much easier to read in the editor because you can include the links below the paragraph text or at the bottom of the page.

Images

Adding images is quite easy, if there’s an image in your clipboard, just paste it in, the forum will automatically upload the image and fill in the appropriate syntax to make the image appear. If you are linking an image which is already on the web, use the following syntax. ![title text](https://i.imgur.com/b0abKrxb.png) Result: title text

Image Sizing

If you would like to resize a large image to a smaller image use the following syntax.

![Original|200x200](https://i.imgur.com/b0abKrxb.png)
![Percent|200x200, 50%](https://i.imgur.com/b0abKrxb.png)
![By Pixels|64x64](https://i.imgur.com/b0abKrxb.png)

Original robot arm Resized 50% robot arm By Pixels robot arm

Text Formatting

For bold, italics and strike-through use the editor buttons image or directly type the markdown:

**bold word** or __bold word__
*italicized word* or _italicized word_
_combo of **bold** and **italic**_
~~strike-through word~~

bold word or bold word
italicized word or italicized word
combo of bold and italic
strike-through word

Alternatively, there’s some BBCode sytnax that a person can use
[b]like this[/b] like this
[i]or this[/i] or this
[u]underline[/u] underline

Font color is not natively supported, but there is a BBCode plugin that will allow for changes in font color.
One can also have some choice to change fonts or colors using the LaTeX-based mathjax plugin covered in the mathjax section of this guide. $\color{red}{red text}$ redtext

Headings

# H1
## H2
### H3
#### H4
##### H5
###### H6

horizontal rule is 3+ asterisks
***

image

horizontal rule


Lists

You can use the editor buttons for orderedimage
or unordered image
lists.

1. First ordered list item
2. second list item
   * sub-lists are offset by three spaces      
1. Specific numbers 
1. don't matter they will auto increment
1. auto increment

* unordered lists 
* are also possible
  1. First ordered list item
  2. Explicit second list item
  • sub-lists are offset by three spaces
  1. Specific numbers
  2. don’t matter they will auto increment
  3. auto increment
  • unordered lists
  • are also possible

Code Formatting

Inline code formatting

Surround a section of code with backticks () inline code formatting. **Typing:** var x = 10;**Results in:**var x = 10;This can also be done asvar x = 10;` inline.

Present entire line as code by prefixing four (4) spaces (an extra newline before this)
Typing :

 var this = “is a line”;

Results in :

var this = "is a line";

Multi-Line Blocks of Code

Surrounding code with three backticks ``` will allow for code to span multiple lines
Typing:

function foo(bar){
return bar+1;
}

Results in:

function foo(bar){
    return bar+1;
}

Syntax Highlighting

The code block will try to automatically choose a style for code, but you can explicitly call out the desired formatting.

function foo(bar){
return bar+1;
}

Results in:

function foo(bar){
    return bar+1;
}

Tables

Tables are second class citizens in Discourse, some of the formatting features and niceties work and some don’t.

Protip - The easiest way to get a table into discourse is to start a table in an spreadsheet, then copy & paste that table into the editor window. Discourse natively handles the format change and makes creating a table much easier. Excel and Google Sheets work great using this method.

A markdown table in Discourse needs at least the first two lines to exist:

|Color|Weight|Height|
|-|-|-|
|red|12|160|
|green|4|100|
Color Weight Height
red 12 160
green 4 100

You can also use HTML for tables .

<table>
  <tr>
    <th>Color</th>
    <th>Weight</th>
    <th>Height</th>
  </tr>
  <tr>
    <td>red</td>
    <td>12</td>
    <td>160</td>
  </tr>
  <tr>
    <td>green</td>
    <td>4</td>
    <td>100</td>
  </tr>
</table>
Color Weight Height
red 12 160
green 4 100

Blockquotes

Blockquotes can be found in the editor bar button image

Puting a greater than sign > in front of so a line will create blockquotes
Typing:

this is some blockquoted text
this is another line of blockquoted text

this is not blockquoted

this is another one
Results in:

this is some blockquoted text
this is another line of blockquoted text

this is not blockquoted

this is another one

Table of Contents

Plugin Approach

You can automatically create a Table of Contents by selecting “Insert Table of Contents” in the editor’s cogwheel menu like so:

Make sure this <div> is on the first line of the post and there is an empty line between it and your content.

<div data-theme-toc="true"> </div>

# Introduction

You’ll know it is configured correctly if you see this message inside the editor window:

Manual Approach

This is not a native feature of Discourse, you can manually create a TOC by using HTML headings with the appropriate ID rather than the ## heading sytnax. Make sure your id is prefixed with heading-- , this is necessary because of the Discourse’s javascript app based architecture. Here is a quick example:

- [link to first heading](#heading--first-header)
- [link to second heading](#heading--second-header)
- [link to third heading](#heading--third-header)
- [link to fourth heading](#heading--fourth-header)
<h3 id="heading--first-header">First One</h3>
some text
<h3 id="heading--second-header">Second One</h3>
more text
<h3 id="heading--third-header">Third One</h3>
even more text
<h3 id="heading--fourth-header">Fourth One</h3>
ok no more text

First One

some text

Second One

more text

Third One

even more text

Fourth One

ok no more text

Using LaTeX for Formatted Math

This section describes a plugin not installed on our server and therefore does not display properly. It is preserved as part of the original guide in the event we ever implement it. If the Mathjax plugin is desired, please open a Technical Support Topic.

Mathjax & LaTeX

The is an official Discourse plugin that uses Mathjax to enable LaTeX based formatting. The LaTeX syntax is a beast on it’s own so I’ll only point out a few examples. Look at the quick reference guide on stack exchange for more information. The basic usage is to use $ \some inline latex expression $ or to express in multi-line surround the LaTeX with $ .

$
H(z)&=\sum_{k=0}^{\infty}{(k+1)z^{-k}}\\
&=\frac{z^2}{(z-1)^{2}}
\end{align}
$

H(z)=∞∑k=0(k+1)z−k=z2(z−1)2

There is color text and a variety of symbols( αωγβΩΓ ), fonts available( HELLOWORLD ), and other ways to express things (((((x)))))


Using HTML

Other

If you’d ever like to see how someone else created their post you can use the following URL format to view the raw markdown https://forum.example.com/raw/{topicid}/{postid} take a look at the current post as an example.

Aligning items

If you’re trying to align images or wrap text, there isn’t a really great tools for either of these things. It’s possible with custom plugins, but it’s not yet supported in native Discourse.

Private Messages

A Private or Private Group Message are types of Topics that intended to only be seen by the recipients. In every way that matters (formatting, policy), a Private Message is like a Topic except how you create it.

Disclaimer of Use

Private Messages are not encrypted and the Admin team has the ability to access and review them. Users are expected to follow the Code of Content, even in private messages.

Create Private Message via Profile Menu

  • Click on your profile picture in the top-right of the screen
    image

  • Double-click the envelope icon
    image

  • Click “New Message” on the left-side menu
    image

Create Private Message via the Topic Editor

  • Click the “+New Topic” button on any screen it is visible
    image

  • Click the + button on the upper-left side of the editor window
    image

  • Click New message
    image

Addressing Individuals and Groups

Individuals
Begin typing a user’s Discourse name in the Add user field. Discourse will populate possible candidates
image

Groups
You can message different Discourse groups like @moderators or @admins
image

Images

It is possible to upload images to Discourse; however, the preference is that users will host from a site like imgur. Direct uploads to the Discourse increase our storage footprint, with in turn increases the cost for maintaining the site. Be mindful: if you can host it elsewhere, please do.

Imgur Thumbnail Guide

Append any of these letters to the base filename of an imgur image to automatically scale it down.

    s = Small Square (90×90) as seen in the example above
    b = Big Square (160×160)
    t = Small Thumbnail (160×160)
    m = Medium Thumbnail (320×320)
    l = Large Thumbnail (640×640) as seen in the example above
    h = Huge Thumbnail (1024×1024)

For instance, to get the Big Square version of the ![img](https://i.imgur.com/b0abKrx.png) file, one would rename it to ![img](https://i.imgur.com/b0abKrxb.png)

img

Tagging Images

It is possible to tag an image using HTML so that text appears when a user places their mouse cursor over it:

<img src="https://i.imgur.com/iAavBTG.png" title="Zefram Cochrane Medal of Excellence
x3
Stardate: Reason why"></img>