├── .github └── workflows │ └── build.yml ├── .gitignore ├── LICENSE ├── README.md ├── affixer.json ├── app └── app.go ├── bin ├── affixer-example.json ├── composer-adapter │ └── hsawin ├── hsa ├── hsa.exe ├── hsamac ├── hsamac.zip ├── hsamacm1 └── hsawin.zip ├── composer.json ├── config ├── config.go └── config_test.go ├── go.mod ├── go.sum ├── issue-4.blade.php ├── logger └── logger.go ├── main.go ├── parsehtml ├── parsehtml.go └── parsehtml_test.go ├── replacer └── replacer.go ├── reporter └── reporter.go ├── scanning ├── scanning.go └── scanning_test.go ├── test.blade.php ├── testFilesLog ├── testing-file-1.blade.php ├── testing-file-2.blade.php └── testing-file-3.blade.php └── warnings_2023-09-21_00-34_9.json /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaestroError/html-strings-affixer/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaestroError/html-strings-affixer/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaestroError/html-strings-affixer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaestroError/html-strings-affixer/HEAD/README.md -------------------------------------------------------------------------------- /affixer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaestroError/html-strings-affixer/HEAD/affixer.json -------------------------------------------------------------------------------- /app/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaestroError/html-strings-affixer/HEAD/app/app.go -------------------------------------------------------------------------------- /bin/affixer-example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaestroError/html-strings-affixer/HEAD/bin/affixer-example.json -------------------------------------------------------------------------------- /bin/composer-adapter/hsawin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaestroError/html-strings-affixer/HEAD/bin/composer-adapter/hsawin -------------------------------------------------------------------------------- /bin/hsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaestroError/html-strings-affixer/HEAD/bin/hsa -------------------------------------------------------------------------------- /bin/hsa.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaestroError/html-strings-affixer/HEAD/bin/hsa.exe -------------------------------------------------------------------------------- /bin/hsamac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaestroError/html-strings-affixer/HEAD/bin/hsamac -------------------------------------------------------------------------------- /bin/hsamac.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaestroError/html-strings-affixer/HEAD/bin/hsamac.zip -------------------------------------------------------------------------------- /bin/hsamacm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaestroError/html-strings-affixer/HEAD/bin/hsamacm1 -------------------------------------------------------------------------------- /bin/hsawin.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaestroError/html-strings-affixer/HEAD/bin/hsawin.zip -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaestroError/html-strings-affixer/HEAD/composer.json -------------------------------------------------------------------------------- /config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaestroError/html-strings-affixer/HEAD/config/config.go -------------------------------------------------------------------------------- /config/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaestroError/html-strings-affixer/HEAD/config/config_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaestroError/html-strings-affixer/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaestroError/html-strings-affixer/HEAD/go.sum -------------------------------------------------------------------------------- /issue-4.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaestroError/html-strings-affixer/HEAD/issue-4.blade.php -------------------------------------------------------------------------------- /logger/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaestroError/html-strings-affixer/HEAD/logger/logger.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaestroError/html-strings-affixer/HEAD/main.go -------------------------------------------------------------------------------- /parsehtml/parsehtml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaestroError/html-strings-affixer/HEAD/parsehtml/parsehtml.go -------------------------------------------------------------------------------- /parsehtml/parsehtml_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaestroError/html-strings-affixer/HEAD/parsehtml/parsehtml_test.go -------------------------------------------------------------------------------- /replacer/replacer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaestroError/html-strings-affixer/HEAD/replacer/replacer.go -------------------------------------------------------------------------------- /reporter/reporter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaestroError/html-strings-affixer/HEAD/reporter/reporter.go -------------------------------------------------------------------------------- /scanning/scanning.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaestroError/html-strings-affixer/HEAD/scanning/scanning.go -------------------------------------------------------------------------------- /scanning/scanning_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaestroError/html-strings-affixer/HEAD/scanning/scanning_test.go -------------------------------------------------------------------------------- /test.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaestroError/html-strings-affixer/HEAD/test.blade.php -------------------------------------------------------------------------------- /testFilesLog/testing-file-1.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaestroError/html-strings-affixer/HEAD/testFilesLog/testing-file-1.blade.php -------------------------------------------------------------------------------- /testFilesLog/testing-file-2.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaestroError/html-strings-affixer/HEAD/testFilesLog/testing-file-2.blade.php -------------------------------------------------------------------------------- /testFilesLog/testing-file-3.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaestroError/html-strings-affixer/HEAD/testFilesLog/testing-file-3.blade.php -------------------------------------------------------------------------------- /warnings_2023-09-21_00-34_9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaestroError/html-strings-affixer/HEAD/warnings_2023-09-21_00-34_9.json --------------------------------------------------------------------------------