5.0.1 • Published 3 years ago

pug-lexer v5.0.1

Weekly downloads
1,168,703
License
MIT
Repository
github
Last release
3 years ago

pug-lexer

The pug lexer. This module is responsible for taking a string and converting it into an array of tokens.

Build Status Dependencies Status DevDependencies Status NPM version Coverage Status

Installation

npm install pug-lexer

Usage

var lex = require('pug-lexer');

lex(str, options)

Convert Pug string to an array of tokens.

options can contain the following properties:

  • filename (string): The name of the Pug file; it is used in error handling if provided.
  • plugins (array): An array of plugins, in the order they should be applied.
console.log(JSON.stringify(lex('div(data-foo="bar")', {filename: 'my-file.pug'}), null, '  '))
[
  {
    "type": "tag",
    "line": 1,
    "val": "div",
    "selfClosing": false
  },
  {
    "type": "attrs",
    "line": 1,
    "attrs": [
      {
        "name": "data-foo",
        "val": "\"bar\"",
        "escaped": true
      }
    ]
  },
  {
    "type": "eos",
    "line": 1
  }
]

new lex.Lexer(str, options)

Constructor for a Lexer class. This is not meant to be used directly unless you know what you are doing.

options may contain the following properties:

  • filename (string): The name of the Pug file; it is used in error handling if provided.
  • interpolated (boolean): if the Lexer is created as a child lexer for inline tag interpolation (e.g. #[p Hello]). Defaults to false.
  • startingLine (integer): the real line number of the first line in the input. It is also used for inline tag interpolation. Defaults to 1.
  • plugins (array): An array of plugins, in the order they should be applied.

License

MIT

pug@olivervorasai/sliderfalling42-butterfly-envelopefalling42-butterfly-wowjsasterjs@everything-registry/sub-chunk-2492gulp-bemblocksio-ng2-aot-fixer-pugjade2scripthtml-typingsgettext-pugjsxgettextjungledrumicons-vue-testjaideimport-bem-webpack-pluginlocal-scoped-scss-with-pug-loader@astql/pug.pug@bitfirer/vue-qriously@brydget/restify@uiengine/adapter-pug@dinert/echarts@dinert/componentdocs-intlsdoc-downderby-pugdi18n-coredi18n-core-vue3@emitty/language-pug@grantstrachan/npm-packaging-test@hazyflame/vue-jitsi-meet@fishx/view-dsl-lspemitty-pug-language-aliasemjayeslint-plugin-vue-pug-sfceslint-plugin-pugeslint-plugin-react-pugflutter-viewflameresttablenessami18n-coremolossermitroofann-pugparcel-plugin-pugprettier-plugin-pugpretty-plugin-pug-gpug-stylekit-webpack-pluginpug-uses-variablespug-vdompug2tsxpugjs-angular-language-serverpugjs-angular-templatepugjs-language-servicepug-react-compilerpug-react-loaderpug-pack-loaderpug-package-loaderpug-inheritancepug-layoutpug-lintpug-element-loaderpug-fmtpug-html-vuepug-cachepug-code-blockpug-customer-parserpug-asyncpug-dependenciespug-dependencyrcs-corescegrpugsi18n-coreteapackage-tatespoorman297then-pugyi18n-corezliq-pug@scoutgg/fn-pugvolar-service-pugvlsvscode-pug-languageservice@seletskiy/plugin-pugstylinpugvue-eslint-parser-template-tokenizer-pug@amory/react-pug@amory/transform-react-pug@unisharp/pug-inheritance@virtualpatterns/mablung-check-dependency@virtualpatterns/nessa@volar-plugins/pug@volar/pug-language-service@kocan-plugins/pug@kocan/pug-language-service@zalastax/nolb-pug@ladjs/pug@ladjs/pug-lintalisselisss-lab3@i18never/parse@i18never/preprocess@infinitebrahmanuniverse/nolb-pug
5.0.1

3 years ago

5.0.1-canary-8

3 years ago

5.0.1-canary-9

3 years ago

5.0.1-canary-7

3 years ago

5.0.1-canary-10

3 years ago

5.0.0

4 years ago

5.0.0-canary-2

4 years ago

5.0.0-canary-1

4 years ago

4.1.0

5 years ago

4.0.0

6 years ago

3.1.0

7 years ago

3.0.0

7 years ago

2.3.2

7 years ago

2.3.1

7 years ago

2.3.0

8 years ago

2.2.2

8 years ago

2.2.1

8 years ago

2.2.0

8 years ago

2.1.0

8 years ago

2.0.3

8 years ago

2.0.2

8 years ago

2.0.1

8 years ago

2.0.0

8 years ago

1.2.0

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago

0.0.0

8 years ago