On top of the standard Markdown syntax, there are shortcuts you can use to render Archbee's custom blocks.
Tabs block
Tab 1
Tab Photos
Some content for Tab 1
Pull requests are very welcome! Please see CONTRIBUTING.md for more information.
Tthis is really nice
This is a checkbox list
This is a checkbox list
This is done
This is a checkbox list
๏ปฟ
We would love you to contributeaaa
Use the following Markdown to generate a Tabs block.
Markdown
|
## Tabs
:::::tabs
::::tab{title="Tab 1"}
Some content for Tab 1
:::hint{style="info"}
Pull requests are very welcome! Please see CONTRIBUTING.md for more information.
Tthis is really nice
:::
- [x] This is a checkbox list
- [x] This is a checkbox list
- [ ] This is done
- [ ] This is a checkbox list
::::
:::tab{title="Tab Photos"}

We would love you to contributeaaa
:::
:::::
๏ปฟ
There is an alternative flavour of Markdown that you can use to generate a Tabs block.
We would love you to contribute to @octokit/rest, pull requests are very welcome! Please see CONTRIBUTING.md for more information.
We would love you to contribute to @octokit/rest, pull requests are very welcome! Please see CONTRIBUTING.md for more information.
We would love you to contribute to @octokit/rest, pull requests are very welcome! Please see CONTRIBUTING.md for more information.
We would love you to contribute to @octokit/rest, pull requests are very welcome! Please see CONTRIBUTING.md for more information.
Use the following Markdown to generate a Callout block.
Markdown
|
## Hints
:::hint
We would love you to contribute to `@octokit/rest`, pull requests are very welcome! Please see CONTRIBUTING.md for more information.
:::
:::hint{style="info"}
We would love you to contribute to `@octokit/rest`, pull requests are very welcome! Please see CONTRIBUTING.md for more information.
:::
:::hint{style="warning"}
We would love you to contribute to @octokit/rest, pull requests are very welcome! Please see CONTRIBUTING.md for more information.
:::
:::hint{style="success"}
We would love you to contribute to @octokit/rest, pull requests are very welcome! Please see CONTRIBUTING.md for more information.
:::
๏ปฟ
There is an alternative flavour of Markdown that you can use to generate a Callout block.
Markdown
|
{% hint style="info" %}
some hint
{% endhint %}
๏ปฟ
๏ปฟ
Link Blocks
list item 1
list item 2
unchecked list box
checked list box
Use the following Markdown to generate a Links block.
Markdown
|
## Link Array
::::link-array
:::link-array-item{headerType="IMAGE" headerImage="https://placehold.co/600x400"}
- list item 1
- list item 2
:::
:::link-array-item{headerType="COLOR" headerColor="#ff00FF"}
- [ ] unchecked list box
- [x] checked list box
:::
::::
๏ปฟ
๏ปฟ
Code block with a single tab
Node.js
|
var http =require('http');
http.createServer(function(req, res){
res.writeHead(200,{'Content-Type':'text/plain'});
res.end('Hello World!');}).listen(8080);
๏ปฟ
Use the following Markdown to generate a Code block with a single code example
Use the following Markdown to generate Code Drawer blocks.
Markdown
|
### Test codedrawer
::::codedrawer{title="a code drawer"}
:::codeblocktabs-examples
```php// Some wordpress plugi
// Add our plugin's option page to the WP admin menu.
public function add_plugin_options_page() {
add_options_page(
'Example Plugin Settings',
'Example Plugin Settings',
'manage_options',
'ex',
[$this, 'render_admin_page']
);
}``````go// Next should be used only inside middleware.// It executes the pending handlers in the chain inside the calling handler.// See example in GitHub.func(c *Context)Next(){
c.index++for c.index <int8(len(c.handlers)){
c.handlers[c.index](c)
c.index++}}``````javascript// demo js```
:::
:::codeblocktabs-responses
```json// 404 - not found{
requireFingerprintScope:true,
maxMachines:1,
concurrent:false,
floating:false,
protected:true,
strict:true}```
:::
::::
๏ปฟ
Changelogs
Test Changelog
v1.2 Release
Added
Deep tabular data is now supported
Improved
Works 0.000001% faster
Fixed
Team mates not receiving emails fast enough
๏ปฟ
Use the following Markdown to generate Changelogs blocks
Markdown
|
### Test Changelog
:::changelog{title="v1.2 Release"}
::changelog-item{type="added" description="Deep tabular data is now supported"}
::changelog-item{type="improved" description="Works 0.000001% faster"}
::changelog-item{type="fixed" description="Team mates not receiving emails fast enough"}
:::