Skip to content

Syntax and Features

FAXES edited this page Aug 15, 2024 · 9 revisions

This page provides all the markdown that markdownconvert supports along with how to do it. To view live previews of each of these navigate to docs.weblutions.com

Headers

# Heading One
## Heading Two
### Heading Three
#### Heading Four

Emphasis

*This in italics. Using one asterisk on both sides of the text area.*

**This is bold text. Using two asterisks on both sides of the text**

~~You can also strikethrough text with two tildes on either side of the text.

Even better you can combine these **bold text with *italic text*.** 

Lists

- dot point list that's;
- unordered

1. Numbered dot points
2. number 2

Links

https://faxes.zone will appear as a text link.

[faxes.zone](https://faxes.zone) will appear as a hyperlink.

Images

![alt text](https://weblutions.com/i/GSM2SG.png)

Code & Syntax Highlighting

In the code example below a space is added into the tick symbols to avoid it being formatted

Inline `code` has `back-ticks around` it.

`` `javascript
var s = "JavaScript syntax highlighting";
alert(s);
`` `

`` `
No language was indicated, so no syntax highlighting.
`` `

Tables

| Tables        | Are           | Cool  |
| ------------- |:-------------:| -----:|
| col 3      | content | $1600 |
| col 2      | more content here      |   $12 |
| zebra stripes | are neat      |    $1 |

Horizontal Rule

---

Containers

:::info
This is an information container
:::

:::success
This is a success container
:::

:::warning
This is a warning container
:::

:::danger
This is a danger container
:::

:::primary
This is a primary container
:::

Quotes

> This is a quote block!
This line will also display in the quote block. However;

This line doesn't display as it's spaced out.

Timestamps

This will use a Unix timestamp in the second or millisecond form to print the time for the user on the page.

<t:1644993793>

Colored Text

Supports Hex & RGB

[Text]{#000000}

HTTP Requests

These allow all types of standard HTTP request (GET, POST, PUT, PATCH, and DELETE) Params (-) are optional. Results (= ) are also optional with the below responses support

  • =
  • 2xx=
  • 3xx=
  • 4xx=
  • 5xx=
/POST api/endpoint
Description on this line :)

- PARAM_NAME Param description
- PARAM_NAME Param description

= {
    ok: true,
    data: [1, 2, 3, 4],
}
4xx= Not Authorised
5xx= Server error
/POST

Clone this wiki locally