Shortcodes are HTML snippets inside your content files calling built-in or custom templates. You can use these shortcodes like custom HTML elements. Similar like custom web components.
Important: When allowing
Doctor
to take over for rendering the HTML, be aware that the pages can best not be modified on SharePoint. Otherwise the web part will override the HTML completly.
Doctor
has built-in shortcodes, but also supports you to create your own shortcodes. If you are missing something, or have a special requirement, this will allow you to make it possible.
At the moment, doctor
has the following built-in shortcodes:
Provide your own shortcodes
You can add custom shortcodes to your project by adding a JavaScript file to the shortcodes
folder (If you want, you can change this location - Markdown publishing settings). The contents of the JavaScript file should contain the following:
// Usage in Markdown: <shortcode-name name="name attribute">the content</shortcode-name>
module.exports = {
name: "shortcode-name",
render: (attributes, html) => {
return `<div>Name: ${attributes.name} - HTML: ${html}</div>`
},
beforeMarkdown: false
};
beforeMarkdown
- This is an optional property introduced to specify if you want to parse the shortcode before or after the Markdown gets processed. In case you include your own Markdown code with your shortcode, you can set this property to
true
. Otherwise you keep ot set tofalse
or do not include it.