gitextract_mrc6b39g/ ├── .gitattributes ├── .github/ │ └── workflows/ │ └── semgrep.yml ├── .gitignore ├── .jshintrc ├── .travis.yml ├── Gruntfile.js ├── LICENSE-MIT ├── README.md ├── package.json ├── tasks/ │ └── html2js.js └── test/ ├── expected/ │ ├── amd_module.js │ ├── amd_module_custom_prefix.js │ ├── amd_module_custom_suffix.js │ ├── broken_newlines.js │ ├── coffee.coffee │ ├── compact_format_custom_options.js │ ├── compact_format_default_options.js │ ├── custom_attribute_collapsed.js │ ├── custom_attribute_not_collapsed.js │ ├── double_quotes.js │ ├── empty_attribute.js │ ├── existing_module.js │ ├── file_footer.js │ ├── file_header.js │ ├── file_header_footer.js │ ├── files_array_custom_options_1.js │ ├── files_array_custom_options_2.js │ ├── files_array_default_options_1.js │ ├── files_array_default_options_2.js │ ├── files_object_custom_options_1.js │ ├── files_object_custom_options_2.js │ ├── files_object_default_options_1.js │ ├── files_object_default_options_2.js │ ├── htmlmin.js │ ├── issue_26_withCollapseWhitespaceFalseDefaultQuotes.js │ ├── issue_26_withCollapseWhitespaceFalseDoubleQuotes.js │ ├── issue_26_withCollapseWhitespaceFalseSingleQuotes.js │ ├── issue_26_withCollapseWhitespaceTrueDefaultQuotes.js │ ├── issue_26_withCollapseWhitespaceTrueDoubleQuotes.js │ ├── issue_26_withCollapseWhitespaceTrueSingleQuotes.js │ ├── issue_26_withoutCollapseWhitespaceDefaultQuotes.js │ ├── issue_26_withoutCollapseWhitespaceDoubleQuotes.js │ ├── issue_26_withoutCollapseWhitespaceSingleQuotes.js │ ├── module_as_function.js │ ├── multi_lines.js │ ├── multi_lines_4spaces.js │ ├── multi_lines_tabs.js │ ├── process_all_pug.js │ ├── process_all_pug_after_change.js │ ├── process_function.js │ ├── process_pug.js │ ├── process_pug_custom.js │ ├── process_pug_with_include.js │ ├── process_template.js │ ├── regex_in_template.js │ ├── rename.js │ ├── single_module.coffee │ ├── single_module.js │ ├── single_module_strict.js │ ├── single_quotes.js │ ├── strict_mode.js │ └── template_path_in_comment.js ├── fixtures/ │ ├── broken_newlines.tpl.html │ ├── custom_attribute_collapse.tpl.html │ ├── empty_attribute.tpl.html │ ├── five.tpl.html │ ├── four.tpl.html │ ├── issue_26.tpl.html │ ├── one.tpl.html │ ├── pattern.tpl.html │ ├── process_function.tpl.html │ ├── process_pug.pug │ ├── process_pug_custom.pug │ ├── process_pug_with_include.pug │ ├── process_template.tpl.html │ ├── pug_include.pug │ ├── three.tpl.html │ └── two.tpl.html └── html2js_test.js