This is a "quick" how-to guide for using [Discourse](https://www.discourse.org/) forum/community software. It contains a majority of the common features avialble 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](http://commonmark.org/help/) (a flavor of markdown) docs for more info. #### Table of Contents - [Links](#heading--Links) - [Images](#heading--Images) - [Text Formatting](#heading--TextFormatting) - [Text Headings](#heading--Headings) - [Lists](#heading--Lists) - [Code Formatting](#heading--CodeFormatting) - [Tables](#heading--Tables) - [Blockquotes](#heading--Blockquotes) - [Table of Contents](#heading--TableofContents) - [LaTeX Math Formatting](#heading--LaTeXMathFormatting) - [Using HTML](#heading--UsingHTML) Most of the time you'd want to use the editor bar ![image|26x19](upload://1NHdXju8NWnlwraOXq9BbqA7LQ9.jpg) or hotkey crtl+k, but the basic format is `[link text](https://digikey.com)` which will give you an example link that looks like this: [link text](https://digikey.com) > **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. ```text 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://github.com/digikey/digikey-kicad-library [dklink]: https://digikey.com ``` 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://github.com/digikey/digikey-kicad-library [dklink]: https://digikey.com

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](/uploads/default/original/2X/f/f2efd3f9c7eeb0a6f1ec321baa7a8d715465e47a.jpg)` Result: ![title text](/uploads/default/original/2X/f/f2efd3f9c7eeb0a6f1ec321baa7a8d715465e47a.jpg) You can also upload images directly using the editor button ![image|25x21](upload://9qYE3aiDjbKPpg96o3Z5mvxOk7Y.png) #### Image Sizing If you would like to resize a large image to a smaller image use the following syntax. ```markdown ![Original|200x200]https://media.digikey.com/Photos/LulzBot/MFG_KT-PR0051.jpg) ![Percent|200x200, 50%](upload://3sr8AVp3W68xVqCnfK79RQHMNyf.jpeg) ![By Pixels|64x64](upload://3sr8AVp3W68xVqCnfK79RQHMNyf.jpeg) ``` Original ![robot arm|200x200](upload://3sr8AVp3W68xVqCnfK79RQHMNyf.jpeg) Resized 50% ![robot arm|200x200, 50%](upload://3sr8AVp3W68xVqCnfK79RQHMNyf.jpeg) By Pixels ![robot arm|64x64](upload://3sr8AVp3W68xVqCnfK79RQHMNyf.jpeg)

Text Formatting

For bold, italics and strike-through use the editor buttons ![image|56x28](upload://4CbvAAR7evXYeKdrb4VJtZDkaIi.jpg) 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]` [b]like this[/b] `[i]or this[/i]` [i]or this[/i] `[u]underline[/u]` [u]underline[/u] 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}$` $\color{red}{red text}$

Headings

```markdown # H1 ## H2 ### H3 #### H4 ##### H5 ###### H6 horizontal rule is 3+ asterisks *** ``` # H1 ## H2 ### H3 #### H4 ##### H5 ###### H6 horizontal rule ***

Lists

You can use the editor buttons for ordered![image|23x21](upload://mzVrWSGg4dQs86lN2XwhenWaeKw.png) or unordered ![image|26x21](upload://reFFAKe8AbBE4QBsHscHJOSic15.png) lists. ```text 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 1. don't matter they will auto increment 1. 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 as `var 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. \`\`\`javascript function foo(bar){      return bar+1; } \`\`\` **Results in:** ```javascript 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: ```text |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**. ```html
Color Weight Height
red 12 160
green 4 100
```
Color Weight Height
red 12 160
green 4 100

Blockquotes

Blockquotes can be found in the editor bar button ![image|29x23](upload://6ifegltWooJEjdhREi4kqUy1kWt.png) 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

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: ```html - [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)

First One

some text

Second One

more text

Third One

even more text

Fourth One

ok no more text ``` - [link to first heading](#heading--first-header) - [link to second heading](#second-header) - [link to third heading](#heading--third-header) - [link to fourth heading](#heading--fourth-header)

First One

some text

Second One

more text

Third One

even more text

Fourth One

ok no more text

Using LaTeX for Formatted Math

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](https://math.meta.stackexchange.com/questions/5020/mathjax-basic-tutorial-and-quick-reference) 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} $$ ``` $$ \begin{align} H(z)&=\sum_{k=0}^{\infty}{(k+1)z^{-k}}\\ &=\frac{z^2}{(z-1)^{2}} \end{align} $$ There is $\color{red}{color\ text}$ and a variety of symbols($\alpha \omega \gamma \beta \Omega \Gamma$), fonts availble($\mathscr{HELLO WORLD}$), and other ways to express things $\Biggl(\biggl(\Bigl(\bigl((x)\bigr)\Bigr)\biggr)\Biggr)$

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](https://forum.digikey.com/raw/1125/1) 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.