Skip to main contentGatsby theme Carbon

Markdown

These are the built in components that you’ll have access to simply by using markdown. The whitespace around these components is significant. If you encounter any errors, make sure you format the markdown and surounding space properly.

For most pages, we recommend starting with a PageDescription followed by AnchorLinks if the content is long enough.

Text decoration

Emphasis, aka italics, with asterisks or underscores. Strong emphasis, aka bold, with asterisks or underscores. Combined emphasis with asterisks and underscores. Strikethrough uses two tildes. Scratch this.

Code

Emphasis, aka italics, with _asterisks_ or _underscores_.
Strong emphasis, aka bold, with **asterisks** or **underscores**.
Combined emphasis with **asterisks and _underscores_**.
Strikethrough uses two tildes. ~~Scratch this.~~

Headers

Note: It’s generally considered best practice to include just one h1 heading per page. This heading signals the title or primary subject matter of the content to your audience. Because the title component generated at the top of each page already uses an h1 heading, we recommend using h2 tags for section headings within your content.

H2

H3

H4

H5

Code

## H2
### H3
#### H4
##### H5

Lists

Unordered lists

  • Unordered list can use asterisks
  • Or hyphens to create list items
  • Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et
  • dolore magna aliqua. Pharetra massa massa ultricies mi quis. Adipiscing enim eu turpis egestas pretium aenean.
  • Massa eget egestas purus viverra accumsan in nisl nisi.
  • Dolor sit amet consectetur adipiscing elit pellentesque habitant morbi tristique.

Ordered lists

  1. First ordered list item
  2. Item with a nested item
    1. Nested list item
  3. In markdown, the actual numbers don’t matter, just that it’s a number
  4. In markdown, the actual numbers don’t matter, just that it’s a number
  5. In markdown, the actual numbers don’t matter, just that it’s a number
  6. In markdown, the actual numbers don’t matter, just that it’s a number
  7. In markdown, the actual numbers don’t matter, just that it’s a number
  8. In markdown, the actual numbers don’t matter, just that it’s a number
  9. In markdown, the actual numbers don’t matter, just that it’s a number
  10. In markdown, the actual numbers don’t matter, just that it’s a number
  11. In markdown, the actual numbers don’t matter, just that it’s a number

Nested lists

  • Unordered list can use asterisks
    • Nested list item
  • Or hyphens to create list items

Code

- Unordered list can use asterisks
* Or hyphens to create list items
- Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et
- dolore magna aliqua. Pharetra massa massa ultricies mi quis. Adipiscing enim eu turpis egestas pretium aenean.
- Massa eget egestas purus viverra accumsan in nisl nisi.
- Dolor sit amet consectetur adipiscing elit pellentesque habitant morbi tristique.
1. First ordered list item
2. Item with a nested item
1. Nested list item
3. In markdown, the actual numbers don’t matter, just that it’s a number
4. In markdown, the actual numbers don’t matter, just that it’s a number
1. First ordered list item
1. Item with a nested item
1. Nested list item
1. In markdown, the actual numbers don’t matter, just that it’s a number

URLs and URLs in angle brackets will automatically get turned into links. http://www.example.com or http://www.example.com and sometimes example.com (but not on Github, for example).

Code

[I’m a markdown link](https://www.carbondesignsystem.com)
[I’m a markdown link with title](https://www.carbondesignsystem.com 'Google’s Homepage')
[I’m a local link](/components/demo)
URLs and URLs in angle brackets will automatically get turned into links.
http://www.example.com or <http://www.example.com> and sometimes
example.com (but not on Github, for example).

Images

Alt text goes here

Code

![Alt text goes here](images/quantum.png)

Code blocks

You can read in depth about syntax highlighting and advanced code snippet features on the Code blocks page.

Inline code has back-ticks around it.

Blocks of code have three back-ticks above and below.
You can specify a language by placing it after the backticks.
You can also supply a source code URL or title to go at the top of the code block

Code

Inline `code` has `back-ticks around` it.
```markdown Title
Blocks have three back-ticks above and below.
Pretend the backslashes aren’t there.
```

You can view a list of included languages at the react-prism-renderer repo.

Tables

Colons can be used to align columns.

TablesAreCool
col 3 isright-aligned1
col 2 iscentered2

There must be at least 3 dashes separating each header cell. The outer pipes (|) are optional, and you don’t need to make the raw Markdown line up prettily. You can also use inline Markdown.

MarkdownLessPretty
Stillrendersnicely
123

Code

Colons can be used to align columns.
| Tables | Are | Cool |
| ------------- | :-----------: | -----: |
| col 3 is | right-aligned | \$1600 |
| col 2 is | centered | \$12 |
| zebra stripes | are neat | \$1 |
There must be at least 3 dashes separating each header cell.

Blockquotes and citations

Without aesthetic, design is either the humdrum repetition of familiar clichés or a wild scramble for novelty. Without aesthetic, the computer is but a mindless speed machine, producing effects without substance, form without relevant content, or content without meaningful form.

– Paul Rand

Code

components/markdown
> Without aesthetic, design is either the humdrum repetition of familiar clichés
> or a wild scramble for novelty. Without aesthetic, the computer is but a
> mindless speed machine, producing effects without substance, form without
> relevant content, or content without meaningful form.
>
> <cite>– Paul Rand</cite>