First Commit
This commit is contained in:
22
html/sternwarte/checkfuehrung/node_modules/cardinal/examples/highlight-self-hide-semicolons.js
generated
vendored
Executable file
22
html/sternwarte/checkfuehrung/node_modules/cardinal/examples/highlight-self-hide-semicolons.js
generated
vendored
Executable file
@@ -0,0 +1,22 @@
|
||||
/*
|
||||
* This file will highlight itself using a custom theme when run via: "node highlight-self-hide-semicolons"
|
||||
* The custom theme highlights semicolons as 'black', thus hiding them.
|
||||
*/
|
||||
'use strict'
|
||||
|
||||
var cardinal = require('..')
|
||||
var hideSemicolonsTheme = require('../themes/hide-semicolons')
|
||||
|
||||
function highlight() {
|
||||
// Using the synchronous highlightFileSync()
|
||||
// For asynchronous highlighting use: highlightFile() - see highlight-self.js
|
||||
|
||||
try {
|
||||
var highlighted = cardinal.highlightFileSync(__filename, {theme: hideSemicolonsTheme})
|
||||
console.log(highlighted)
|
||||
} catch (err) {
|
||||
console.error(err)
|
||||
}
|
||||
}
|
||||
|
||||
highlight()
|
||||
Reference in New Issue
Block a user