From ca8cdae117881947e4bc97466bd87a682ee892ff Mon Sep 17 00:00:00 2001
From: Website Deployment Script docs.
Path to your web app manifest (e.g., manifest.json). This will add a <link> tag to <head> with rel as "manifest" and href as the provided path.
markdownOptions [object]Override default Remarkable options that will be used to render markdown.
++To manage syntax extensions, use the
+markdownPluginsfield.
markdownPlugins [array]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.
+For example, if you want to enable superscript and subscript in your markdown that is rendered by Remarkable to HTML, you would do the following:
+ markdownPlugins: [
+ function foo(md) {
+ md.inline.ruler.enable(['sub', 'sup']);
+ },
+ ],
+
noIndex [boolean]Boolean. If true, Docusaurus will politely ask crawlers and search engines to avoid indexing your site. This is done with a header tag and so only applies to docs and pages. Will not attempt to hide static resources. This is a best effort request. Malicious crawlers can and will still index your site.
ogImage [string]docs.
module.exports = siteConfig;
-