Multi Path Block
Javascript path
PHP path
others
Multi path with more than three tabs
Markdown content
Bold text
Italic text
Bold and Italic text
Strikethrough text
This is a blockquote. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer nec odio. Praesent libero. Sed cursus ante dapibus diam.
- First ordered list item
 - Second item
- Unordered sub-list.
 
 - Third item
 
- Bullet list item
 - Another item
- Sub-list item
 - Another sub-list item
 
 
Inline code example
# Code block exampledef hello_world():print("Hello, World!")
| Table | Column B | Column C | 
|---|---|---|
| A1 | B1 | C1 | 
| A2 | B2 | C2 | 
| A3 | B3 | C3 | 
<CodeExample> component
JavaScript Code SampleJavaScript
// Arrow function sampleconst arrowFuncSample = () => {console.log('this is an arrow function example');};