From da368225439eaa2432dabe3e9b61aa506be5c7c1 Mon Sep 17 00:00:00 2001 From: Website Deployment Script Date: Tue, 14 Nov 2017 01:55:43 +0000 Subject: [PATCH] Deploy website Deploy website version based on 726f92dd1d1fa9f01af299eea6e0324fc9f9ec6b --- docs/en/site-config.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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" ] };