- 
                Notifications
    
You must be signed in to change notification settings  - Fork 224
 
Markdown Formats and Templates
The following sections provide simple formats for content. For additional formats, see markdown guides like Markdown Guide.
We provide templates (coming soon) to help create a new page. Every page includes the following:
- Frontmatter - This is the metadata for a webpage, including the title, description, and search keywords.
 - Headings - These mark the sections, from H2 (##) to H5 (#####).
 - Content - All of the content, including paragraphs, lists, instructions, images, graphs, and more.
 
Every file begins with front matter or metadata for your content. This information includes:
---
title: Name of the page
description: Learn more about... 
---
| Parameter | Description | 
|---|---|
title | 
The title of the page. Keep it short and unique. | 
description | 
1 sentence describing what the user will find in the page. This displays in searches and as a quick description under the page title. | 
As you start writing content, it automatically generates along the left side (or margin). To create a paragraph, leave an empty line between sentences.
If you need to indent content, use the tab key or enter 2 spaces. Each tab moves content to the right, indenting the page content.
To format for bolding and italics, see the following:
| Example | Output | 
|---|---|
*emphasis* | 
emphasis | 
**bold** | 
bold | 
We recommend using a dash (-) for each line in a bulleted list. Lists also support *.
- List Item 1
- List Item 2
  - Indented List Item
  - Another one
- 
List Item 1
 - 
List Item 2
- Indented List Item
 - Another one
 
 
Numbered lists add numbers to a set of instructions or steps. Start every line with 1. When building the documentation, the instructions automatically number for you. This is helpful when you need to add or change the order of instructions. You do not need to edit every number.
1. Access Sumo Logic and select your account then **Preferences**.
1. Under Access Keys, click **Create**.
1. Enter...
- Access Sumo Logic and select your account then Preferences.
 - Under Access Keys, click Create.
 - Enter...
 
Simple tables can help format content. For example, lists of attributes with descriptions. Adding the style below the table helps with formatting.
| Attribute | Description |
|--|--|
|name|Description of name|
|id|Description of ID|
| Attribute | Description | 
|---|---|
| name | Description of name | 
| id | Description of ID | 
Adding links to content outside of documentation: [GitHub](http://github.com)
Adding links between pages are relative links with the path and name of the file without the .md or .mdx extension:
[Topic Name](/path/filename)
We recommend saving all images in PNG format. Images are typically saved in the /static/images folder location. (This may change.)
Use the following format for placing images inline (paragraphs, tables, bullets, etc) and in its own line:

Notes and callouts are annotations. Use annotations to highlight information, including tips, notes, warnings, etc.
(coming soon)
Use the following formats for commands, API method names, and code.
Inline code examples use single ticks around `text` for code formatting.
Here is an example of code inline.
For blocks of code, use triple ticks (```) before and after the code. If you know the code language, include that in the first set of ticks, for example ```json. This applies code highlighting for the language. See this list of available languages.
The following is an example of JSON:
{  
    "employee": {  
        "name":       "Jane Smith",   
        "team":      "Operations",   
        "manager":    true  
    }  
}  To quickly create a page, use a template. You can copy and paste the file, add your content, and submit a PR. If you need formats for specific code, see the formats template.
(coming soon)
- Doc topic - Use for any documentation page
 - APIs - Use for API and code
 - Format template
 
Sumo Logic 2021