aboutsummaryrefslogtreecommitdiff
path: root/node_modules/highlight.js/lib/languages/openscad.js
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2017-05-24 15:10:37 +0200
committerFlorian Dold <florian.dold@gmail.com>2017-05-24 15:11:17 +0200
commit7a3df06eb573d36142bd1a8e03c5ce8752d300b3 (patch)
tree70bfaea8884c374876f607774850a3a51c0cb381 /node_modules/highlight.js/lib/languages/openscad.js
parentaca1143cb9eed16cf37f04e475e4257418dd18ac (diff)
downloadwallet-core-7a3df06eb573d36142bd1a8e03c5ce8752d300b3.tar.xz
fix build issues and add typedoc
Diffstat (limited to 'node_modules/highlight.js/lib/languages/openscad.js')
-rw-r--r--node_modules/highlight.js/lib/languages/openscad.js56
1 files changed, 56 insertions, 0 deletions
diff --git a/node_modules/highlight.js/lib/languages/openscad.js b/node_modules/highlight.js/lib/languages/openscad.js
new file mode 100644
index 000000000..4fb1bc976
--- /dev/null
+++ b/node_modules/highlight.js/lib/languages/openscad.js
@@ -0,0 +1,56 @@
+module.exports = function(hljs) {
+ var SPECIAL_VARS = {
+ className: 'keyword',
+ begin: '\\$(f[asn]|t|vp[rtd]|children)'
+ },
+ LITERALS = {
+ className: 'literal',
+ begin: 'false|true|PI|undef'
+ },
+ NUMBERS = {
+ className: 'number',
+ begin: '\\b\\d+(\\.\\d+)?(e-?\\d+)?', //adds 1e5, 1e-10
+ relevance: 0
+ },
+ STRING = hljs.inherit(hljs.QUOTE_STRING_MODE,{illegal: null}),
+ PREPRO = {
+ className: 'meta',
+ keywords: {'meta-keyword': 'include use'},
+ begin: 'include|use <',
+ end: '>'
+ },
+ PARAMS = {
+ className: 'params',
+ begin: '\\(', end: '\\)',
+ contains: ['self', NUMBERS, STRING, SPECIAL_VARS, LITERALS]
+ },
+ MODIFIERS = {
+ begin: '[*!#%]',
+ relevance: 0
+ },
+ FUNCTIONS = {
+ className: 'function',
+ beginKeywords: 'module function',
+ end: '\\=|\\{',
+ contains: [PARAMS, hljs.UNDERSCORE_TITLE_MODE]
+ };
+
+ return {
+ aliases: ['scad'],
+ keywords: {
+ keyword: 'function module include use for intersection_for if else \\%',
+ literal: 'false true PI undef',
+ built_in: 'circle square polygon text sphere cube cylinder polyhedron translate rotate scale resize mirror multmatrix color offset hull minkowski union difference intersection abs sign sin cos tan acos asin atan atan2 floor round ceil ln log pow sqrt exp rands min max concat lookup str chr search version version_num norm cross parent_module echo import import_dxf dxf_linear_extrude linear_extrude rotate_extrude surface projection render children dxf_cross dxf_dim let assign'
+ },
+ contains: [
+ hljs.C_LINE_COMMENT_MODE,
+ hljs.C_BLOCK_COMMENT_MODE,
+ NUMBERS,
+ PREPRO,
+ STRING,
+ SPECIAL_VARS,
+ MODIFIERS,
+ FUNCTIONS
+ ]
+ }
+}; \ No newline at end of file