mirror of
https://github.com/facebook/docusaurus.git
synced 2025-05-11 08:07:26 +02:00
Ability to tweak the prism language (#146)
I want to be able to tweak the default tokenizer for syntax highlighting. The current one isn't as good as it could be. With this PR, I would be able to add this to the siteConfig and it would give me the Prism access so that I can get proper syntax highlighting: ```js prism: function(Prism) { Prism.languages.javascript = Prism.languages.extend("javascript", { keyword: /\b(alias|as|async|await|base class|...|with)\b/, constant: /\b[A-Z][a-zA-Z0-9_]*\b/, builtin: /\bopen_file|...|invariant_violation|invariant|getcwd\b/, function: /\b[_$a-z\xA0-\uFFFF][_$a-zA-Z0-9\xA0-\uFFFF]*(?=\()/, }); }, ```
This commit is contained in:
parent
c3a1d99964
commit
57251a22c0
1 changed files with 4 additions and 2 deletions
|
@ -32,8 +32,6 @@ function execute(port) {
|
||||||
const ENABLE_TRANSLATION = fs.existsSync(CWD + "/languages.js");
|
const ENABLE_TRANSLATION = fs.existsSync(CWD + "/languages.js");
|
||||||
const ENABLE_VERSIONING = fs.existsSync(CWD + "/versions.json");
|
const ENABLE_VERSIONING = fs.existsSync(CWD + "/versions.json");
|
||||||
|
|
||||||
let siteConfig = require(CWD + "/siteConfig.js");
|
|
||||||
|
|
||||||
// remove a module and child modules from require cache, so server does not have
|
// remove a module and child modules from require cache, so server does not have
|
||||||
// to be restarted
|
// to be restarted
|
||||||
function removeModuleAndChildrenFromCache(moduleName) {
|
function removeModuleAndChildrenFromCache(moduleName) {
|
||||||
|
@ -61,6 +59,7 @@ function execute(port) {
|
||||||
let readMetadata = require("./readMetadata.js");
|
let readMetadata = require("./readMetadata.js");
|
||||||
let Metadata;
|
let Metadata;
|
||||||
let MetadataBlog;
|
let MetadataBlog;
|
||||||
|
let siteConfig;
|
||||||
|
|
||||||
function reloadMetadata() {
|
function reloadMetadata() {
|
||||||
removeModuleAndChildrenFromCache("./readMetadata.js");
|
removeModuleAndChildrenFromCache("./readMetadata.js");
|
||||||
|
@ -81,6 +80,9 @@ function execute(port) {
|
||||||
function reloadSiteConfig() {
|
function reloadSiteConfig() {
|
||||||
removeModuleAndChildrenFromCache(CWD + "/siteConfig.js");
|
removeModuleAndChildrenFromCache(CWD + "/siteConfig.js");
|
||||||
siteConfig = require(CWD + "/siteConfig.js");
|
siteConfig = require(CWD + "/siteConfig.js");
|
||||||
|
if (siteConfig.prism) {
|
||||||
|
siteConfig.prism(require("../core/Prism.js").Prism);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/****************************************************************************/
|
/****************************************************************************/
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue