diff --git a/docs/en/site-config.html b/docs/en/site-config.html index a43585de6f..2df0c0fcc8 100644 --- a/docs/en/site-config.html +++ b/docs/en/site-config.html @@ -66,6 +66,7 @@

markdownPlugins - An array of plugins to be loaded by Remarkable, the markdown parser and renderer used by Docusaurus. The plugin will receive a reference to the Remarkable instance, allowing custom parsing and rendering rules to be defined.

scripts - Array of JavaScript sources to load. The script tag will be inserted in the HTML head.

+

stylesheets - Array of CSS sources to load. The link tag will be inserted in the HTML head.

cname - The CNAME for your website. It will go into a CNAME file when your site it built.

Users can also add their own custom fields if they wish to provide some data across different files.

Example siteConfig.js with all fields

@@ -124,7 +125,8 @@ } } ], - scripts: [ "https://docusaurus.io/slash.js" ] + scripts: [ "https://docusaurus.io/slash.js" ], + stylesheets: [ "https://docusaurus.io/style.css" ] };