Skip to content

Latest commit

 

History

History
168 lines (117 loc) · 5.07 KB

File metadata and controls

168 lines (117 loc) · 5.07 KB
meta.Title meta.Description
Markdown conventions
Explanation of how to use markdown and how we structure the files.

Markdown conventions

The Umbraco Documentation uses Markdown for all the articles; more precisely, we use the CommonMark specification. Read more about the difference between CommonMark and Markdown.

In this article you can learn how to use Markdown, as well as how we structure the files.

Structure

For the documentation project, each individual topic is contained in its own folder. Each folder must have an index.md file which links to the individual sub-pages. If images are used, these must be in images folders next to the .md file referencing them relatively.

  • topic
    • images
      • images.png
    • Subtopic
      • images
      • index.md
    • index.md
    • other-page.md

Images

Images are stored and linked relatively to .md pages, and should by convention always be in an images folder. To add an image to /documentation/reference/partials/renderviewpage.md you link it like so:

![My Image Alt Text](images/img.png)

And store the image as /documentation/reference/partials/images/img.png

Images can have a maximum width of 800px. Please always try to use the most efficient compression, gif or png. No bmp, tiff or swf (Flash).

Center images

By default, all images added to an article in the documentation will be left-aligned. If you want to ensure that the image you add to an article will be center-aligned, use the following formatting:

:::center
![Example of the load indicator](images/arm_with_u_logo-SMALL.png)
:::

The example above will render the image in the center of the page.

:::center Example of the load indicator :::

Links

In the following you'll find a few examples of different links.

External links

Include either the complete URL, or link using a specific syntax:

https://yahoo.com/something

or

[yahoo something](https://yahoo.com/something)

Internal links

If you need to link between pages, always link relatively and optionally include the .md extension based on the scenario. For example if you need to provide hyperlink to an index.md file which is in the current folder, only the path including the folder name is required. If you want provide hyperlink to any file other than index.md in the current folder, only the path including the folder name along with the filename is required. The .md extension is not required in this case.

[Umbraco.Helpers](Umbraco.Helpers)

or

[Umbraco.Helpers](../../Reference/Umbraco.Helpers)

Styled links

When you have multiple links to add below an article, we recommend using the styled links options. For example, if you've written a guide and want to direct the user to related articles for further reading, you can do that by using the following formatting:

:::links
## Related articles
- [Styled links](/)
- [You can also add `inline code` to links](/)
:::

The example above will render as follows:

:::links

Related articles

Formatting code

Indent your sample with 4 spaces, which will cause it to be rendered inside <pre><code> tags. For inline code, wrap in ` (backtick) characters.

Use # for the headline, ## for sub headers and ### for parameters (on code reference pages).

For optional parameters wrap in _ (underscore) characters, e.g.: ###_optionalParameter_

Adding notes, warnings, tips

The Markdown conversion library used in the documentation is called Markdig. It allows you to add classes to markdown that you can then target with CSS. There are a few custom Markdown classes that can be used:

:::note
This is a note. It contains useful information and a link: https://thisisalink.com/useful/resource. Please make sure it looks nice on Our!
:::

:::warning
This is a warning. It contains useful information and a link: https://thisisalink.com/useful/resource. Please make sure it looks nice on Our!
:::

:::tip
This is a tip: It contains useful information and a link: https://thisisalink.com/useful/resource. Please make sure it looks nice on Our!
:::

These examples will render like this:

:::note This is a note. It contains useful information and a link. Please make sure it looks nice on Our! :::

:::warning This is a warning. It contains useful information and a link. Please make sure it looks nice on Our! :::

:::tip This is a tip. It contains useful information and a link. Please make sure it looks nice on Our! :::

Styled checklists

Instead of using the classic bullet for lists, the Umbraco documentation provides an option to use checkmarks for lists.

:::checklist
* Item 1
* Item 2
* Item 3
* Item 4
:::

This list will render as:

:::checklist

  • Item 1
  • Item 2
  • Item 3
  • Item 4 :::