6.0.0 • Published 4 years ago

pug-parser v6.0.0

Weekly downloads
1,160,468
License
MIT
Repository
github
Last release
4 years ago

pug-parser

The pug parser (takes an array of tokens and converts it to an abstract syntax tree)

Build Status Dependencies Status DevDependencies Status NPM version

Installation

npm install pug-parser

Usage

var parse = require('pug-parser');

parse(tokens, options)

Convert Pug tokens to an abstract syntax tree (AST).

options can contain the following properties:

  • filename (string): The name of the Pug file; it is included in the produced AST nodes and error handling, if provided.
  • plugins (array): An array of plugins, in the order they should be applied.
  • src (string): The source of the Pug file; it is used in error handling if provided.
var lex = require('pug-lexer');

var filename = 'my-file.pug';
var src = 'div(data-foo="bar")';
var tokens = lex(src, {filename});

var ast = parse(tokens, {filename, src});

console.log(JSON.stringify(ast, null, '  '))
{
  "type": "Block",
  "nodes": [
    {
      "type": "Tag",
      "name": "div",
      "selfClosing": false,
      "block": {
        "type": "Block",
        "nodes": [],
        "line": 1,
        "filename": "my-file.pug"
      },
      "attrs": [
        {
          "name": "data-foo",
          "val": "\"bar\"",
          "line": 1,
          "column": 5,
          "filename": "my-file.pug",
          "mustEscape": true
        }
      ],
      "attributeBlocks": [],
      "isInline": false,
      "line": 1,
      "column": 1,
      "filename": "my-file.pug"
    }
  ],
  "line": 0,
  "filename": "my-file.pug"
}

new parse.Parser(tokens, options)

Constructor for a Parser 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 included in the produced AST nodes and error handling, if provided.
  • plugins (array): An array of plugins, in the order they should be applied.
  • src (string): The source of the Pug file; it is used in error handling if provided.

License

MIT

pug@olivervorasai/sliderfalling42-butterfly-envelopefalling42-butterfly-wowjsasterjs@everything-registry/sub-chunk-2492io-ng2-aot-fixer-pugjade-jsxjade2scripthtml-typingsgettext-pugjsxgettexticons-vue-testjaideimport-bem-webpack-pluginlocal-scoped-scss-with-pug-loaderemjayeslint-plugin-pugflutter-viewnessami18n-coremolossermitroofann-pugparcel-plugin-pugpug-stylekit-webpack-pluginpug-tailwindpug-vdompug2tsxpugjs-angular-language-serverpugjs-angular-templatepugjs-language-servicepug-react-compilerpug-react-loaderpug-pack-loaderpug-package-loaderpug-inheritancepug-layoutpug-element-loaderpug-html-vuepug-cachepug-customer-parserpug-asyncpug-dependenciespug-dependencyrcs-corescegrpugsi18n-coreteapackage-tatespoorman297then-pug@mydiem/aot-fixer-pug@ptb/transform-react-pugyi18n-corezliq-pug@scoutgg/fn-pugvolar-service-pugvscode-pug-languageservice@i18never/parse@i18never/preprocess@markuplint/pug-parser@linthtml/linthtml-pug@object-studio/react-native-web@infinitebrahmanuniverse/nolb-pug@hazyflame/vue-jitsi-meet@kocan/pug-language-service@kocan-plugins/pug@ladjs/pug@amory/react-pug@amory/transform-react-pug@unisharp/pug-inheritance@virtualpatterns/mablung-check-dependency@virtualpatterns/nessa@volar-plugins/pug@volar/pug-language-service@astql/pug.pug@bitfirer/vue-qriously@brydget/restify@startupjs/babel-plugin-transform-react-pug@uiengine/adapter-pugcomponent-scannerbroccoli-pug@zalastax/nolb-pug@dinert/echarts@dinert/componentdocs-intlsderby-pugdi18n-coredi18n-core-vue3angular-aot-fixer-pugalisselisss-lab3babel-plugin-react-pugbabel-plugin-transform-react-pugbabel-plugin-transform-react-pug-coffeebabel-plugin-transform-react-pug-coffee7@grantstrachan/npm-packaging-test
6.0.0

4 years ago

6.0.0-canary-2

4 years ago

6.0.0-canary-1

4 years ago

5.0.1

5 years ago

4.0.2

6 years ago

5.0.0

6 years ago

4.0.1

6 years ago

4.0.0

7 years ago

3.0.1

7 years ago

3.0.0

7 years ago

2.0.2

7 years ago

2.0.1

8 years ago

2.0.0

8 years ago

1.0.0

8 years ago

0.0.0

8 years ago