gitextract_pjkmsduc/ ├── .editorconfig ├── .github/ │ ├── funding.yml │ └── workflows/ │ └── nodejs.yml ├── .gitignore ├── .nycrc ├── LICENSE ├── README.md ├── lib/ │ └── index.js ├── package.json ├── test/ │ ├── expected/ │ │ ├── basic.html │ │ ├── global-variables.html │ │ ├── inner-locals-big-json.html │ │ ├── inner-locals-not-json.html │ │ ├── inner-locals.html │ │ ├── locals-not-json.html │ │ ├── locals.html │ │ ├── multiple-include.html │ │ ├── nested.html │ │ ├── not-clear-rest.html │ │ ├── override-global-variables.html │ │ └── root.html │ ├── fixtures/ │ │ ├── basic.html │ │ ├── blocks/ │ │ │ ├── button/ │ │ │ │ └── button.html │ │ │ └── partial/ │ │ │ └── phone.html │ │ ├── global-variables.html │ │ ├── includes/ │ │ │ ├── 1.html │ │ │ ├── 2.html │ │ │ ├── 3.html │ │ │ ├── 4.html │ │ │ ├── 5.html │ │ │ └── 6.html │ │ ├── inner-locals-big-json.html │ │ ├── inner-locals-not-json.html │ │ ├── inner-locals.html │ │ ├── locals-not-json.html │ │ ├── locals.html │ │ ├── multiple-include.html │ │ ├── nested.html │ │ ├── not-clear-rest.html │ │ ├── override-global-variables.html │ │ └── root.html │ └── test.js └── xo.config.js