├── .github └── workflows │ ├── test.yml │ └── test_action.yml ├── .gitignore ├── README.md ├── action.yml ├── markdown_to_respec.py ├── requirements.txt ├── setup.cfg ├── setup.py ├── test-data ├── embedded │ └── index.md ├── external │ ├── index.json │ └── index.md └── ignore │ └── index.md └── test_markdown_to_respec.py /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrecorder/markdown-to-respec/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.github/workflows/test_action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrecorder/markdown-to-respec/HEAD/.github/workflows/test_action.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | test 2 | __pycache__ 3 | Pipfile* 4 | .eggs 5 | markdown_to_respec.egg-info 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrecorder/markdown-to-respec/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrecorder/markdown-to-respec/HEAD/action.yml -------------------------------------------------------------------------------- /markdown_to_respec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrecorder/markdown-to-respec/HEAD/markdown_to_respec.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrecorder/markdown-to-respec/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrecorder/markdown-to-respec/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrecorder/markdown-to-respec/HEAD/setup.py -------------------------------------------------------------------------------- /test-data/embedded/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrecorder/markdown-to-respec/HEAD/test-data/embedded/index.md -------------------------------------------------------------------------------- /test-data/external/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrecorder/markdown-to-respec/HEAD/test-data/external/index.json -------------------------------------------------------------------------------- /test-data/external/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrecorder/markdown-to-respec/HEAD/test-data/external/index.md -------------------------------------------------------------------------------- /test-data/ignore/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrecorder/markdown-to-respec/HEAD/test-data/ignore/index.md -------------------------------------------------------------------------------- /test_markdown_to_respec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrecorder/markdown-to-respec/HEAD/test_markdown_to_respec.py --------------------------------------------------------------------------------