Fulstech - Jira and Confluence Add-on Developer
ProductsSecurity PolicyPrivacy PolicyEULASLA
  • 🏠Home
  • Markdown
    • Markdown Editor for Jira (Markin)
      • Jira Cloud
        • Overview
        • Create a Markdown-enabled Custom Field
        • Markdown Syntax
        • Support
      • Jira Data Center and Jira Server
        • Overview
        • Create a Markdown-enabled Field
        • Markdown Syntax
        • Migrate to Jira Cloud
        • Support
    • Markdown for Confluence
      • Confluence Cloud
        • Overview
        • Usage
        • Support
  • LaTeX
    • LaTeX for Jira - Math Editor
      • Jira Cloud
        • Overview
        • Usage (with browser extension)
        • Usage (without browser extension)
        • Support
      • Jira Data Center and Jira Server
        • Overview
        • Usage
        • Support
    • LaTeX for Confluence with Math Editor and Plotting
      • Confluence Cloud
        • Overview
        • Usage
        • Migrate from Confluence Server and Confluence Data Center
        • Support
      • Confluence Data Center and Confluence Server
        • Overview
        • Usage (from version 4.0.0)
        • How to install TeX Live
        • Migrate to Confluence Cloud
        • Troubleshooting "Unknown macro" error
        • Support
        • (Deprecated) Usage (for version older than 4.0.0)
  • Whiteboarding and Diagramming
    • Mermaid UML Diagrams and Graphviz Diagrams for Jira
      • Jira Cloud
        • Overview
        • Usage
        • Support
      • Jira Data Center and Jira Server
        • Overview
        • Usage
        • Announcement of the Data Center version
        • Support
    • Excalidraw for Jira
      • Jira Cloud
        • Overview
        • Usage
        • Support
    • Excalidraw for Confluence - with Mermaid, PlantUML, and Graphviz
      • Confluence Cloud
        • Overview
        • Usage
        • Support
      • Confluence Data Center and Confluence Server
        • Overview
        • Usage
        • Support
    • PlantUML, Mermaid UML, Graphviz: UML Diagrams for Confluence
      • Confluence Cloud
        • Overview
        • Usage
        • Support
      • Confluence Data Center and Confluence Server
        • Overview
        • Usage
        • Support
    • Mind Mapping for Confluence
      • Confluence Cloud
        • Overview
        • Usage
        • Support
    • User Flow (Wireflow) for Confluence
      • Confluence Cloud
        • Overview
        • Usage
        • Support
  • Custom Fields
    • Table Custom Field for Jira Cloud
      • Overview
      • Usage
      • Support
    • JEditor-compatible custom field for Jira Cloud
      • Jira Cloud
        • Overview
        • Create a JEditor-compatible Custom Field
        • Migrate to Jira Cloud
        • Support
    • Checklist for Jira Server
      • Overview
      • Usage
      • Support
  • Security Policy
  • Privacy Policy
  • End User License Agreement
  • Service Level Agreement (SLA)
  • Archived Apps
    • Better font for Jira Server
      • Overview
      • Usage
      • Support
Powered by GitBook
On this page
  • Overview
  • Autocompletion
  • LaTeX Math formulas
  • Block formulas
  • Inline formulas
  • Sequence diagrams
  • Graphviz diagrams
  • Mermaid UML diagrams
  • State diagrams
  • Sequence diagrams
  • Class diagrams
  • Markdown syntax
  • Heading
  • Styling text
  • Lists
  • Task lists
  • Using emoji
  • Mentioning people
  • Inserting attachments as images
  • Images
  • Links
  • Code snippets
  • Quote blocks
  • Tables
  • Gherkin syntax

Was this helpful?

  1. Markdown
  2. Markdown Editor for Jira (Markin)
  3. Jira Cloud

Markdown Syntax

PreviousCreate a Markdown-enabled Custom FieldNextSupport

Last updated 5 months ago

Was this helpful?

Overview

Autocompletion

You can get a list of all available syntax by pressing Ctrl + Space in the editor. A context menu with all available syntax will appear.

To move between items, use Up, Down, Left, Right keys. To select an item, click on it or press Enter. An example will be inserted.

LaTeX Math formulas

Block formulas

\\[ax^2 + bx + c = 0\\]

Inline formulas

\\(x = {-b \pm \sqrt{b^2-4ac} \over 2a}\\)

Sequence diagrams

:::sequence
```
User->Phone: Says Hello
Note right of Phone: Phone thinks\nabout it
Phone->User: How are you?
User->>Phone: I am good thanks!
```
:::

Graphviz diagrams

:::graphviz
```
digraph site {
    home [label = "Home"];
    prod [label = "Products"];
    news [label = "News"];
    cont [label = "Contact"];

    home -> {prod news cont} 
}
```
:::

Mermaid UML diagrams

Here we are just showing some examples.

State diagrams

:::uml
```
stateDiagram
        [*] --> Still
        Still --> [*]
        Still --> Moving
        Moving --> Still
        Moving --> Crash
        Crash --> [*]
```
:::

Sequence diagrams

:::uml
```
sequenceDiagram
    autonumber
    Alice->>John: Hello John, how are you?
    loop Healthcheck
        John->>John: Fight against hypochondria
    end
    Note right of John: Rational thoughts!
    John-->>Alice: Great!
    John->>Bob: How about you?
    Bob-->>John: Jolly good!
```
:::

Class diagrams

:::uml
```
classDiagram
Class01 <|-- AveryLongClass : Cool
Class03 *-- Class04
Class05 o-- Class06
Class07 .. Class08
Class09 --> C2 : Where am i?
Class09 --* C3
Class09 --|> Class07
Class07 : equals()
Class07 : Object[] elementData
Class01 : size()
Class01 : int chimp
Class01 : int gorilla
Class08 <--> C2: Cool label
```
:::

Markdown syntax

Heading

# The largest heading
## The second largest heading
###### The smallest heading

Styling text

**bold**

*italic*

~~Strikethrough~~

Lists

* Item 1
* Item 2

1. Item 1
2. Item 2

Task lists

- [x] this is a complete item
- [ ] this is an incomplete item

Using emoji

:) :D

Mentioning people

Type @ and select the user to be mentioned.

Inserting attachments as images

Type @@ and select the attachment to be inserted.

Images

![Markdown Logo (Source: Wikipedia)](https://upload.wikimedia.org/wikipedia/commons/4/48/Markdown-mark.svg)

Links

[Markin](https://marketplace.atlassian.com/plugins/com.fulstech.jira-gherkin-custom-field/server/overview)

Code snippets

`inline code`

```javascript
function fancyAlert(arg) {
  if(arg) {
    $.facebox({div:"#foo"})
  }
}
```

Quote blocks

As Eleanor Roosevelt said:
> You must do the thing you think you cannot do.

Tables

| First Header | Second Header |
| - | - |
| Content from cell 1 | Content from cell 2 |
| Content in the first column | Content in the second column |

Gherkin syntax

Please enable Gherkin syntax first before using this feature.

Scenario Outline: Password should be secure enough

Given a new password is being set
When I try to set the password to <new password>
Then the password should be considered <secure?>

Examples:
| new password | secure? | notes                  |
| -            | -       | -                      |
| p@swrd1;     | :(      | No uppercase character |
| Passwrd1     | :(      | No special character   |
| P@swrdl;     | :)      | -                      |

Learn more about the syntax here: .

Learn more about the syntax (Graphviz DOT) here: .

Learn more about Mermaid UML diagrams here: .

Input

Render

https://bramp.github.io/js-sequence-diagrams
http://www.graphviz.org/
https://mermaid-js.github.io/mermaid/#/
Markdown for Jira
Markdown for Jira
Markdown for Jira
Render
Render
Render
Render
Render
Render
Render
Result
Render
Render
Render
Render
Render
Render
Render
Render
Render