All markdown files live inside of the src/content
folder and follow the site navigation. They live inside a folder that is named the same as the file, unless it is a page with tabbed navigation. "Tabbed" pages (for example Getting Started > Developers) should have all the pages inside the same folder, with the file name matching the page title.
src
├── content
├── getting-started
├── designers
├── images
├── image1.png
├── image2.png
├── designers.md
or
src
├── content
├── getting-started
├── developers
├── angular.md
├── other-frameworks.md
├── react.md
├── vanilla.md
The top of each markdown file has required frontmatter fields to display the header for the page.
---
title: Page title
tabs: ['Tab 1', 'Tab 2', 'Tab 3'']
internal: true
---
Required fields are:
title
: The title of the page
Non-required fields are:
label
: The label of the page (if added then header will display at medium height instead of small) (Used only in Guidelines pages)tabs
: An array of the page tabs (in the desired order), tab name should match markdown file name.internal: true
Used to designate internal-only content for display on w3 website.
## This generates an H2 heading
### This generates an H3 heading
#### This generates an H4 heading
**This is bold text.**
_This is italic text._
This is a normal paragraph with a [link](http://www.link.com).
> This is a block quote.
You can create an inline link by wrapping link text in brackets [ ], and then wrapping the URL in parentheses ( ).
[Carbon](http://www.carbondesignsystem.com/)
If you need a link to open in a new window you will have to use standard html to target the new window.
<a href="http://www.carbondesignsystem.com" target="_blank">Carbon</a></p>
All images are delivered through the image component, which wraps around the images on the website so we can customize them.
<ImageComponent cols="8" caption="Enter caption here">
![image alt text](/images/image1.png)
</ImageComponent>
example of 8-column fluid image with caption
Note: The line breaks before and after the markdown link are mandatory.
Will by default resize with the grid, and you can pass in number of columns that the image should span (4, 6, 8 or 12). The default (if no value is specified) is 12
.
If the image needs to be fixed, you can add the fixed="default"
option. This will give the image a max-width of 720 px.
There is also a fixed="large"
option that will give the image a max-width of 1120 px.
If the image needs a transparent background you can add the option bg="none"
. It will by default get a white background.
Caption is also optional and can be added with the caption
option.
<ImageComponent fixed="large">
![image alt text](/images/image1.png)
</ImageComponent>
example of 1120 px fixed image without caption
* This is a bulleted list
* List item 2
1. This is an ordered list
2. List item 2
To add a table, use three or more hyphens (---) to create each column’s header, and use pipes (|) to separate each column. You can optionally add pipes on either end of the table.
Tip: Creating tables with hyphens and pipes can be tedious. To speed up the process, try using the Markdown Tables Generator. Build a table using the graphical interface, and then copy the generated Markdown-formatted text into your file.
| COL 1 | COL 2 | COL 3 |
|------------|---------|------------|
| Row 1A | Row 1B | Row 1C |
| Row 2A | Row 2B | Row 2C |
| Row 3A | Row 3B | Row 3C |
We support inline code and code blocks.
Inline `code` has `back-ticks` around it.
```
Blocks of code are fenced by lines with three back-ticks
```
The carbon website has a handful of custom markdown components available for use inside any markdown file. Some are meant to be global and others were created for very specific use cases.
<Video vimeoId="292608020" />
<ClickableTile label="Title" author="John Smith" date="Janury 1, 2018" href="#">
![](images/image.png)
</ClickableTile>
<GridWrapper col_lg="8" flex="true">
<DoDontExample correct="true" label="caption" description="Lorem ipsum dolor sit amet" text='Example text or quote'>
</DoDontExample>`
</GridWrapper>
<GridWrapper col_lg="8" flex="true">
<DoDontExample correct="true" label="Do: center-align icons when they’re next to text.">
![](images/image.png)
</DoDontExample>
<DoDontExample label="Don't: baseline-align icons to the text.">
![](images/image.png)
</DoDontExample>
</GridWrapper>
<ColorBlock showhex size="xs">#ffaaaa</ColorBlock>
showHex
displays the hex value next to the color blocksize
takes values ofxs
,s
,m
,l
(12px, 24px, 40px, 80px respectively)size
also accepts a number (e.g.size="200"
, which would render a square that is 200px x 200px)- leaving out these extra properties will default to no label, and a swatch size of 24px
<AnchorLinks>
<AnchorLinks small>
<GridWrapper col_lg="12" flex="true>
col_lg
Specify the col width at large breakpoint, default is 12flex
Set to true to set display:flex | flexwrap: wrap to row
<WebsiteTabs> … </WebsiteTabs>
- inside, place
<Tab label="Tab Label"><div> [tab content] </div></Tab>
- inside, place
This is a wrapper component to display a list as an anchor link list
<AnchorLinks>
- [General guidance ](#general-guidance)
- [Variations](#variations)
- [Labels](#labels)
- [Icon usage](#icon-usage)
- [Danger button usage](#danger-button-usage)
</AnchorLinks>
This is a wrapper component used to wrap components like tiles, do-dont, images and more. Shown with the default values below.
Properties
- col_lg: Specify the col width at large breakpoint, default is 12
- col_md: Specify the col width at medium breakpoint, default is 8
- col_sm: Specify the col width at small breakpoint, default is 4
- flex: Set to true to set display:flex | flexwrap: wrap to row
- bleed: Set to true to remove col padding
<GridWrapper />
<GridWrapper col_lg="12" col_md="8" col_sm="4" flex="false" bleed="false">
<ClickableTile
title="Add Carbon Design Kit to Sketch library"
href="sketch://add-library/cloud/JaVzz"
type="resource">
![](images/sketch-icon.png)
</ClickableTile>
<ClickableTile
title="Download Carbon Design Kit from GitHub"
href="https://github.com/IBM/carbon-design-kit"
type="resource">
![](images/github-icon.png)
</ClickableTile>
This will render the following group of clickable tiles
- can include property
full=true
to use the example as a full-width component.- e.g.
<DoDontExample full=true>
- this option will cause the element to fill the full width of its containing wrappper. adjust the column count of the enclosing
<GridWrapper>
to expand the maxium width.
- e.g.
<GridWrapper col_lg="8" flex="true">
<DoDontExample correct="true" label="Active Voice" text='"In the Limits window, specify the minimum and maximum values."'></DoDontExample>
<DoDontExample label='Passive Voice' text='"The Limits window is used to specify the minimum and maximum values."'></DoDontExample>
</GridWrapper>
<GridWrapper col_lg="8" flex="true">
<DoDontExample correct="true" label='Image Test'>
![](images/image.png)
</DoDontExample>
<DoDontExample label='Image Test' >
![](images/image.png)
</DoDontExample>
</GridWrapper>
This will render the following set of examples:
<WebsiteTabs>
<Tab label="Tab 1"><div>
lorem ipsum dolor sit amet
</div></Tab>
<Tab label="Tab 2"><div>
Content for second tab goes here.
</div></Tab>
<Tab label="Tab 3"><div>
Content for third tab goes here.
</div></Tab>
</WebsiteTabs>
- Complete component block surrounded in
<WebsiteTabs> … </WebsiteTabs>
- Each tab element has a label property, which will be the displayed label of the tab
<Tab label="Lorem">
- Each Tab element also has a div wrapper inside of it, with no space between the div and tab
<Tab label="Lorem"><div> … </div></Tab>
- Because of the way Markdown processes files, an empty line is required to be the first bit of content inside of the
<Tab><div>
stack, e.g.:
<WebsiteTabs>
<Tab label="Tab 1"><div>
lorem ipsum dolor sit amet
</div></Tab>
</WebsiteTabs>
- note the empty line after
<Tab label="Tab 1"><div>
and before the first line of content, in this caselorem ipsum…
. Verify that there are no whitespace characters in these empty lines. - Do not indent interior components.
- Unfortunately, this component is extra fragile when written inside of a markdown file, because we are passing
<Tab>
components into the<WebsiteTabs>
component, and markdown can interfere when child components are indendented.
- Unfortunately, this component is extra fragile when written inside of a markdown file, because we are passing
Type
<TypeWeight>
<TypeWeight type="italic">
<TypeWeight type="type">
<TypeScaleTable>
<TypeSpec>
Glossary
<Glossary>
Component Status (content pulled from data/components.json)
<ComponentStatus>
Component Overview (content pulled from data/components.json)
<ComponentOverview>
Color Token Table (content pulled from data/guidelines/color-tokens.js)
- `
<ComponentCode
name="Text Input" //Required
component="text-input" //Required
variation="text-input" //Required
codepen="YEZLyd" //Optional - Adds link to codepen
hasLightVersion //Optional - shows the light/white background switcher
hasReactVersion //Optional -links to react storybook
hasAngularVersion //Optional -links to angular storkbook
experimental //Optional -loads experimental version/styles
>
</ComponentCode>
<ComponentDocs component="accordion"></ComponentDocs>
<ComponentReact
name="Multi-select Dropdown"
component="MultiSelect"
variation="MultiSelect"
>
</ComponentReact>