├── .github └── workflows │ └── publish.yaml ├── .gitignore ├── .jshintrc ├── Gruntfile.js ├── LICENSE-MIT ├── README.md ├── package.json ├── tasks └── wp_readme_to_markdown.js └── test ├── expected ├── readme-post-convert-filter.md ├── readme-pre-convert-filter.md ├── readme-screenshots-disabled.md ├── readme-with-code-blocks.md ├── readme-with-spaces-after-headers.md ├── readme-with-spaces-between-plugin-details.md ├── readme-without-screenshots.md └── readme.md ├── fixtures ├── readme-with-code-blocks.txt ├── readme-with-spaces-after-headers.txt ├── readme-with-spaces-between-plugin-details.txt ├── readme-without-screenshots.txt └── readme.txt └── wp_readme_to_markdown_test.js /.github/workflows/publish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenharris/wp-readme-to-markdown/HEAD/.github/workflows/publish.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | .* 3 | node_modules 4 | npm-debug.log 5 | tmp 6 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenharris/wp-readme-to-markdown/HEAD/.jshintrc -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenharris/wp-readme-to-markdown/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenharris/wp-readme-to-markdown/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenharris/wp-readme-to-markdown/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenharris/wp-readme-to-markdown/HEAD/package.json -------------------------------------------------------------------------------- /tasks/wp_readme_to_markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenharris/wp-readme-to-markdown/HEAD/tasks/wp_readme_to_markdown.js -------------------------------------------------------------------------------- /test/expected/readme-post-convert-filter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenharris/wp-readme-to-markdown/HEAD/test/expected/readme-post-convert-filter.md -------------------------------------------------------------------------------- /test/expected/readme-pre-convert-filter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenharris/wp-readme-to-markdown/HEAD/test/expected/readme-pre-convert-filter.md -------------------------------------------------------------------------------- /test/expected/readme-screenshots-disabled.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenharris/wp-readme-to-markdown/HEAD/test/expected/readme-screenshots-disabled.md -------------------------------------------------------------------------------- /test/expected/readme-with-code-blocks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenharris/wp-readme-to-markdown/HEAD/test/expected/readme-with-code-blocks.md -------------------------------------------------------------------------------- /test/expected/readme-with-spaces-after-headers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenharris/wp-readme-to-markdown/HEAD/test/expected/readme-with-spaces-after-headers.md -------------------------------------------------------------------------------- /test/expected/readme-with-spaces-between-plugin-details.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenharris/wp-readme-to-markdown/HEAD/test/expected/readme-with-spaces-between-plugin-details.md -------------------------------------------------------------------------------- /test/expected/readme-without-screenshots.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenharris/wp-readme-to-markdown/HEAD/test/expected/readme-without-screenshots.md -------------------------------------------------------------------------------- /test/expected/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenharris/wp-readme-to-markdown/HEAD/test/expected/readme.md -------------------------------------------------------------------------------- /test/fixtures/readme-with-code-blocks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenharris/wp-readme-to-markdown/HEAD/test/fixtures/readme-with-code-blocks.txt -------------------------------------------------------------------------------- /test/fixtures/readme-with-spaces-after-headers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenharris/wp-readme-to-markdown/HEAD/test/fixtures/readme-with-spaces-after-headers.txt -------------------------------------------------------------------------------- /test/fixtures/readme-with-spaces-between-plugin-details.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenharris/wp-readme-to-markdown/HEAD/test/fixtures/readme-with-spaces-between-plugin-details.txt -------------------------------------------------------------------------------- /test/fixtures/readme-without-screenshots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenharris/wp-readme-to-markdown/HEAD/test/fixtures/readme-without-screenshots.txt -------------------------------------------------------------------------------- /test/fixtures/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenharris/wp-readme-to-markdown/HEAD/test/fixtures/readme.txt -------------------------------------------------------------------------------- /test/wp_readme_to_markdown_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenharris/wp-readme-to-markdown/HEAD/test/wp_readme_to_markdown_test.js --------------------------------------------------------------------------------