├── .flake8 ├── .github ├── copilot-instructions.md └── workflows │ └── ci.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yml ├── CHANGELOG.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── RELEASE.md ├── codecov.yml ├── docs ├── Makefile ├── _static │ └── custom.css ├── make.bat ├── runtime.txt └── source │ ├── conf.py │ ├── developer-design.md │ ├── developer.md │ ├── img │ └── gated-directive-example.png │ ├── index.md │ ├── install.md │ ├── releases │ ├── index.md │ ├── v1.1.0.md │ ├── v1.1.1.md │ ├── v1.2.0.md │ └── v1.2.1.md │ └── syntax.md ├── pyproject.toml ├── pytest.ini ├── sphinx_exercise ├── __init__.py ├── _compat.py ├── assets │ └── html │ │ └── exercise.css ├── directive.py ├── latex.py ├── nodes.py ├── post_transforms.py ├── transforms.py ├── translations │ ├── README.md │ ├── _convert.py │ ├── jsons │ │ ├── Exercise.json │ │ └── Solution.json │ └── locales │ │ ├── ar │ │ └── LC_MESSAGES │ │ │ ├── exercise.mo │ │ │ └── exercise.po │ │ ├── bn │ │ └── LC_MESSAGES │ │ │ ├── exercise.mo │ │ │ └── exercise.po │ │ ├── cs │ │ └── LC_MESSAGES │ │ │ ├── exercise.mo │ │ │ └── exercise.po │ │ ├── de │ │ └── LC_MESSAGES │ │ │ ├── exercise.mo │ │ │ └── exercise.po │ │ ├── el │ │ └── LC_MESSAGES │ │ │ ├── exercise.mo │ │ │ └── exercise.po │ │ ├── es │ │ └── LC_MESSAGES │ │ │ ├── exercise.mo │ │ │ └── exercise.po │ │ ├── fr │ │ └── LC_MESSAGES │ │ │ ├── exercise.mo │ │ │ └── exercise.po │ │ ├── hi │ │ └── LC_MESSAGES │ │ │ ├── exercise.mo │ │ │ └── exercise.po │ │ ├── hu │ │ └── LC_MESSAGES │ │ │ ├── exercise.mo │ │ │ └── exercise.po │ │ ├── id │ │ └── LC_MESSAGES │ │ │ ├── exercise.mo │ │ │ └── exercise.po │ │ ├── it │ │ └── LC_MESSAGES │ │ │ ├── exercise.mo │ │ │ └── exercise.po │ │ ├── ja │ │ └── LC_MESSAGES │ │ │ ├── exercise.mo │ │ │ └── exercise.po │ │ ├── ko │ │ └── LC_MESSAGES │ │ │ ├── exercise.mo │ │ │ └── exercise.po │ │ ├── ms │ │ └── LC_MESSAGES │ │ │ ├── exercise.mo │ │ │ └── exercise.po │ │ ├── nl │ │ └── LC_MESSAGES │ │ │ ├── exercise.mo │ │ │ └── exercise.po │ │ ├── no │ │ └── LC_MESSAGES │ │ │ ├── exercise.mo │ │ │ └── exercise.po │ │ ├── pl │ │ └── LC_MESSAGES │ │ │ ├── exercise.mo │ │ │ └── exercise.po │ │ ├── pt │ │ └── LC_MESSAGES │ │ │ ├── exercise.mo │ │ │ └── exercise.po │ │ ├── ro │ │ └── LC_MESSAGES │ │ │ ├── exercise.mo │ │ │ └── exercise.po │ │ ├── ru │ │ └── LC_MESSAGES │ │ │ ├── exercise.mo │ │ │ └── exercise.po │ │ ├── sv │ │ └── LC_MESSAGES │ │ │ ├── exercise.mo │ │ │ └── exercise.po │ │ ├── ta │ │ └── LC_MESSAGES │ │ │ ├── exercise.mo │ │ │ └── exercise.po │ │ ├── tr │ │ └── LC_MESSAGES │ │ │ ├── exercise.mo │ │ │ └── exercise.po │ │ ├── uk │ │ └── LC_MESSAGES │ │ │ ├── exercise.mo │ │ │ └── exercise.po │ │ ├── vi │ │ └── LC_MESSAGES │ │ │ ├── exercise.mo │ │ │ └── exercise.po │ │ └── zh_CN │ │ └── LC_MESSAGES │ │ ├── exercise.mo │ │ └── exercise.po └── utils.py ├── tests ├── books │ ├── test-duplicatelabel │ │ ├── Makefile │ │ ├── conf.py │ │ ├── index.rst │ │ └── make.bat │ ├── test-gateddirective │ │ ├── Makefile │ │ ├── conf.py │ │ ├── exercise-gated.md │ │ ├── exercise.md │ │ ├── exercise_errors_1.md │ │ ├── exercise_errors_2.md │ │ ├── exercise_errors_3.md │ │ ├── index.md │ │ ├── make.bat │ │ ├── solution-exercise-gated.md │ │ ├── solution-exercise.md │ │ ├── solution_errors_1.md │ │ ├── solution_errors_2.md │ │ ├── solution_errors_3.md │ │ └── sphx_glr_cohere_001_2_0x.png │ ├── test-hiddendirectives │ │ ├── Makefile │ │ ├── _enum_duplicatelabel_hidden.rst │ │ ├── _enum_hidden.rst │ │ ├── _linked_enum_hidden.rst │ │ ├── _linked_unenum_hidden.rst │ │ ├── _unenum_hidden.rst │ │ ├── conf.py │ │ ├── index.rst │ │ └── make.bat │ ├── test-mybook │ │ ├── Makefile │ │ ├── conf.py │ │ ├── exercise │ │ │ ├── _enum_duplicate_label.rst │ │ │ ├── _enum_mathtitle_label.rst │ │ │ ├── _enum_notitle_label.rst │ │ │ ├── _enum_numref_mathtitle.rst │ │ │ ├── _enum_numref_notitle.rst │ │ │ ├── _enum_numref_placeholders.rst │ │ │ ├── _enum_numref_title.rst │ │ │ ├── _enum_ref_mathtitle.rst │ │ │ ├── _enum_ref_notitle.rst │ │ │ ├── _enum_ref_title.rst │ │ │ ├── _enum_title_class_label.rst │ │ │ ├── _enum_title_nolabel.rst │ │ │ ├── _unenum_mathtitle_label.rst │ │ │ ├── _unenum_notitle_label.rst │ │ │ ├── _unenum_numref_mathtitle.rst │ │ │ ├── _unenum_numref_notitle.rst │ │ │ ├── _unenum_numref_title.rst │ │ │ ├── _unenum_ref_mathtitle.rst │ │ │ ├── _unenum_ref_notitle.rst │ │ │ ├── _unenum_ref_title.rst │ │ │ ├── _unenum_title_class_label.rst │ │ │ └── _unenum_title_nolabel.rst │ │ ├── index.rst │ │ ├── make.bat │ │ └── solution │ │ │ ├── _linked_duplicate_label.rst │ │ │ ├── _linked_enum.rst │ │ │ ├── _linked_enum_class.rst │ │ │ ├── _linked_missing_arg.rst │ │ │ ├── _linked_ref_enum.rst │ │ │ ├── _linked_ref_unenum_mathtitle.rst │ │ │ ├── _linked_ref_unenum_mathtitle2.rst │ │ │ ├── _linked_ref_unenum_notitle.rst │ │ │ ├── _linked_ref_unenum_title.rst │ │ │ ├── _linked_ref_wronglabel.rst │ │ │ ├── _linked_unenum_mathtitle.rst │ │ │ ├── _linked_unenum_mathtitle2.rst │ │ │ ├── _linked_unenum_notitle.rst │ │ │ ├── _linked_unenum_title.rst │ │ │ └── _linked_wrong_targetlabel.rst │ └── test-simplebook │ │ ├── Makefile │ │ ├── conf.py │ │ ├── exercise.rst │ │ ├── index.rst │ │ ├── make.bat │ │ └── solution.rst ├── conftest.py ├── test_build.py ├── test_duplicatelabel.py ├── test_exercise.py ├── test_exercise │ ├── _enum_duplicate_label.xml │ ├── _enum_mathtitle_label.html │ ├── _enum_mathtitle_label.xml │ ├── _enum_notitle_label.html │ ├── _enum_notitle_label.xml │ ├── _enum_title_class_label.html │ ├── _enum_title_class_label.xml │ ├── _enum_title_nolabel.html │ ├── _enum_title_nolabel.xml │ ├── _unenum_mathtitle_label.html │ ├── _unenum_mathtitle_label.xml │ ├── _unenum_notitle_label.html │ ├── _unenum_notitle_label.xml │ ├── _unenum_title_class_label.html │ ├── _unenum_title_class_label.xml │ ├── _unenum_title_nolabel.html │ └── _unenum_title_nolabel.xml ├── test_exercise_references.py ├── test_exercise_references │ ├── _enum_numref_mathtitle.html │ ├── _enum_numref_mathtitle.sphinx6.html │ ├── _enum_numref_mathtitle.sphinx7.html │ ├── _enum_numref_mathtitle.sphinx8.1.html │ ├── _enum_numref_mathtitle.sphinx8.html │ ├── _enum_numref_mathtitle.xml │ ├── _enum_numref_notitle.html │ ├── _enum_numref_notitle.sphinx6.html │ ├── _enum_numref_notitle.sphinx7.html │ ├── _enum_numref_notitle.sphinx8.1.html │ ├── _enum_numref_notitle.sphinx8.html │ ├── _enum_numref_notitle.xml │ ├── _enum_numref_placeholders.html │ ├── _enum_numref_placeholders.sphinx6.html │ ├── _enum_numref_placeholders.sphinx7.html │ ├── _enum_numref_placeholders.sphinx8.1.html │ ├── _enum_numref_placeholders.sphinx8.html │ ├── _enum_numref_placeholders.xml │ ├── _enum_numref_title.html │ ├── _enum_numref_title.sphinx6.html │ ├── _enum_numref_title.sphinx7.html │ ├── _enum_numref_title.sphinx8.1.html │ ├── _enum_numref_title.sphinx8.html │ ├── _enum_numref_title.xml │ ├── _enum_ref_mathtitle.html │ ├── _enum_ref_mathtitle.sphinx6.html │ ├── _enum_ref_mathtitle.sphinx7.html │ ├── _enum_ref_mathtitle.sphinx8.1.html │ ├── _enum_ref_mathtitle.sphinx8.html │ ├── _enum_ref_mathtitle.xml │ ├── _enum_ref_notitle.html │ ├── _enum_ref_notitle.sphinx6.html │ ├── _enum_ref_notitle.sphinx7.html │ ├── _enum_ref_notitle.sphinx8.1.html │ ├── _enum_ref_notitle.sphinx8.html │ ├── _enum_ref_notitle.xml │ ├── _enum_ref_title.html │ ├── _enum_ref_title.sphinx6.html │ ├── _enum_ref_title.sphinx7.html │ ├── _enum_ref_title.sphinx8.1.html │ ├── _enum_ref_title.sphinx8.html │ ├── _enum_ref_title.xml │ ├── _unenum_numref_mathtitle.html │ ├── _unenum_numref_mathtitle.sphinx6.html │ ├── _unenum_numref_mathtitle.sphinx7.html │ ├── _unenum_numref_mathtitle.sphinx8.1.html │ ├── _unenum_numref_mathtitle.sphinx8.html │ ├── _unenum_numref_mathtitle.xml │ ├── _unenum_numref_notitle.html │ ├── _unenum_numref_notitle.sphinx6.html │ ├── _unenum_numref_notitle.sphinx7.html │ ├── _unenum_numref_notitle.sphinx8.1.html │ ├── _unenum_numref_notitle.sphinx8.html │ ├── _unenum_numref_notitle.xml │ ├── _unenum_numref_title.html │ ├── _unenum_numref_title.sphinx6.html │ ├── _unenum_numref_title.sphinx7.html │ ├── _unenum_numref_title.sphinx8.1.html │ ├── _unenum_numref_title.sphinx8.html │ ├── _unenum_numref_title.xml │ ├── _unenum_ref_mathtitle.html │ ├── _unenum_ref_mathtitle.sphinx6.html │ ├── _unenum_ref_mathtitle.sphinx7.html │ ├── _unenum_ref_mathtitle.sphinx8.1.html │ ├── _unenum_ref_mathtitle.sphinx8.html │ ├── _unenum_ref_mathtitle.xml │ ├── _unenum_ref_notitle.html │ ├── _unenum_ref_notitle.sphinx6.html │ ├── _unenum_ref_notitle.sphinx7.html │ ├── _unenum_ref_notitle.sphinx8.1.html │ ├── _unenum_ref_notitle.sphinx8.html │ ├── _unenum_ref_notitle.xml │ ├── _unenum_ref_title.html │ ├── _unenum_ref_title.sphinx6.html │ ├── _unenum_ref_title.sphinx7.html │ ├── _unenum_ref_title.sphinx8.1.html │ ├── _unenum_ref_title.sphinx8.html │ └── _unenum_ref_title.xml ├── test_exercise_style.py ├── test_gateddirective.py ├── test_gateddirective │ ├── exercise-gated-0.html │ ├── exercise-gated-0.sphinx6.html │ ├── exercise-gated-0.sphinx7.html │ ├── exercise-gated-0.sphinx8.1.html │ ├── exercise-gated-0.sphinx8.html │ ├── exercise-gated-1.html │ ├── exercise-gated-1.sphinx6.html │ ├── exercise-gated-1.sphinx7.html │ ├── exercise-gated-1.sphinx8.1.html │ ├── exercise-gated-1.sphinx8.html │ ├── exercise-gated.sphinx6.xml │ ├── exercise-gated.sphinx7.xml │ ├── exercise-gated.sphinx8.1.xml │ ├── exercise-gated.sphinx8.xml │ ├── exercise-gated.xml │ ├── solution-exercise-0.sphinx4.html │ ├── solution-exercise-0.sphinx5.html │ ├── solution-exercise-0.sphinx6.html │ ├── solution-exercise-0.sphinx7.html │ ├── solution-exercise-0.sphinx8.1.html │ ├── solution-exercise-0.sphinx8.html │ ├── solution-exercise-1.sphinx4.html │ ├── solution-exercise-1.sphinx5.html │ ├── solution-exercise-1.sphinx6.html │ ├── solution-exercise-1.sphinx7.html │ ├── solution-exercise-1.sphinx8.1.html │ ├── solution-exercise-1.sphinx8.html │ ├── solution-exercise-gated-0.sphinx4.html │ ├── solution-exercise-gated-0.sphinx5.html │ ├── solution-exercise-gated-0.sphinx6.html │ ├── solution-exercise-gated-0.sphinx7.html │ ├── solution-exercise-gated-0.sphinx8.1.html │ ├── solution-exercise-gated-0.sphinx8.html │ ├── solution-exercise-gated-1.sphinx4.html │ ├── solution-exercise-gated-1.sphinx5.html │ ├── solution-exercise-gated-1.sphinx6.html │ ├── solution-exercise-gated-1.sphinx7.html │ ├── solution-exercise-gated-1.sphinx8.1.html │ ├── solution-exercise-gated-1.sphinx8.html │ ├── solution-exercise-gated.sphinx4.xml │ ├── solution-exercise-gated.sphinx5.xml │ ├── solution-exercise-gated.sphinx6.xml │ ├── solution-exercise-gated.sphinx7.xml │ ├── solution-exercise-gated.sphinx8.1.xml │ ├── solution-exercise-gated.sphinx8.xml │ ├── solution-exercise.sphinx4.xml │ ├── solution-exercise.sphinx5.xml │ ├── solution-exercise.sphinx6.xml │ ├── solution-exercise.sphinx7.xml │ ├── solution-exercise.sphinx8.1.xml │ ├── solution-exercise.sphinx8.xml │ └── solution-exercise.xml ├── test_hiddendirective.py ├── test_hiddendirective │ ├── _enum_hidden.html │ ├── _enum_hidden.xml │ ├── _linked_enum_hidden.xml │ ├── _linked_unenum_hidden.xml │ ├── _unenum_hidden.html │ └── _unenum_hidden.xml ├── test_latex.py ├── test_latex │ ├── test_latex_build.sphinx4.tex │ ├── test_latex_build.sphinx5.tex │ ├── test_latex_build.sphinx6.tex │ ├── test_latex_build.sphinx7.tex │ ├── test_latex_build.sphinx8.1.tex │ └── test_latex_build.sphinx8.tex ├── test_order_validation.py ├── test_solution.py ├── test_solution │ ├── _linked_duplicate_label.sphinx6.xml │ ├── _linked_duplicate_label.sphinx7.xml │ ├── _linked_duplicate_label.sphinx8.1.xml │ ├── _linked_duplicate_label.sphinx8.xml │ ├── _linked_duplicate_label.xml │ ├── _linked_enum.html │ ├── _linked_enum.sphinx6.xml │ ├── _linked_enum.sphinx7.xml │ ├── _linked_enum.sphinx8.1.xml │ ├── _linked_enum.sphinx8.xml │ ├── _linked_enum.xml │ ├── _linked_enum_class.html │ ├── _linked_enum_class.sphinx6.xml │ ├── _linked_enum_class.sphinx7.xml │ ├── _linked_enum_class.sphinx8.1.xml │ ├── _linked_enum_class.sphinx8.xml │ ├── _linked_enum_class.xml │ ├── _linked_missing_arg.sphinx6.xml │ ├── _linked_missing_arg.sphinx7.xml │ ├── _linked_missing_arg.sphinx8.1.xml │ ├── _linked_missing_arg.sphinx8.xml │ ├── _linked_missing_arg.xml │ ├── _linked_unenum_mathtitle.html │ ├── _linked_unenum_mathtitle.sphinx6.xml │ ├── _linked_unenum_mathtitle.sphinx7.xml │ ├── _linked_unenum_mathtitle.sphinx8.1.xml │ ├── _linked_unenum_mathtitle.sphinx8.xml │ ├── _linked_unenum_mathtitle.xml │ ├── _linked_unenum_mathtitle2.html │ ├── _linked_unenum_mathtitle2.sphinx6.xml │ ├── _linked_unenum_mathtitle2.sphinx7.xml │ ├── _linked_unenum_mathtitle2.sphinx8.1.xml │ ├── _linked_unenum_mathtitle2.sphinx8.xml │ ├── _linked_unenum_mathtitle2.xml │ ├── _linked_unenum_notitle.html │ ├── _linked_unenum_notitle.sphinx6.xml │ ├── _linked_unenum_notitle.sphinx7.xml │ ├── _linked_unenum_notitle.sphinx8.1.xml │ ├── _linked_unenum_notitle.sphinx8.xml │ ├── _linked_unenum_notitle.xml │ ├── _linked_unenum_title.html │ ├── _linked_unenum_title.sphinx6.xml │ ├── _linked_unenum_title.sphinx7.xml │ ├── _linked_unenum_title.sphinx8.1.xml │ ├── _linked_unenum_title.sphinx8.xml │ ├── _linked_unenum_title.xml │ ├── _linked_wrong_targetlabel.html │ ├── _linked_wrong_targetlabel.sphinx6.xml │ ├── _linked_wrong_targetlabel.sphinx7.xml │ ├── _linked_wrong_targetlabel.sphinx8.1.xml │ ├── _linked_wrong_targetlabel.sphinx8.xml │ ├── _linked_wrong_targetlabel.xml │ └── solution │ │ ├── _linked_duplicate_label.sphinx6.xml │ │ ├── _linked_duplicate_label.sphinx7.xml │ │ ├── _linked_duplicate_label.sphinx8.1.xml │ │ ├── _linked_duplicate_label.sphinx8.xml │ │ ├── _linked_enum.sphinx6.xml │ │ ├── _linked_enum.sphinx7.xml │ │ ├── _linked_enum.sphinx8.1.xml │ │ ├── _linked_enum.sphinx8.xml │ │ ├── _linked_enum_class.sphinx6.xml │ │ ├── _linked_enum_class.sphinx7.xml │ │ ├── _linked_enum_class.sphinx8.1.xml │ │ ├── _linked_enum_class.sphinx8.xml │ │ ├── _linked_missing_arg.sphinx6.xml │ │ ├── _linked_missing_arg.sphinx7.xml │ │ ├── _linked_missing_arg.sphinx8.1.xml │ │ ├── _linked_missing_arg.sphinx8.xml │ │ ├── _linked_unenum_mathtitle.sphinx6.xml │ │ ├── _linked_unenum_mathtitle.sphinx7.xml │ │ ├── _linked_unenum_mathtitle.sphinx8.1.xml │ │ ├── _linked_unenum_mathtitle.sphinx8.xml │ │ ├── _linked_unenum_mathtitle2.sphinx6.xml │ │ ├── _linked_unenum_mathtitle2.sphinx7.xml │ │ ├── _linked_unenum_mathtitle2.sphinx8.1.xml │ │ ├── _linked_unenum_mathtitle2.sphinx8.xml │ │ ├── _linked_unenum_notitle.sphinx6.xml │ │ ├── _linked_unenum_notitle.sphinx7.xml │ │ ├── _linked_unenum_notitle.sphinx8.1.xml │ │ ├── _linked_unenum_notitle.sphinx8.xml │ │ ├── _linked_unenum_title.sphinx6.xml │ │ ├── _linked_unenum_title.sphinx7.xml │ │ ├── _linked_unenum_title.sphinx8.1.xml │ │ ├── _linked_unenum_title.sphinx8.xml │ │ ├── _linked_wrong_targetlabel.sphinx6.xml │ │ ├── _linked_wrong_targetlabel.sphinx7.xml │ │ ├── _linked_wrong_targetlabel.sphinx8.1.xml │ │ └── _linked_wrong_targetlabel.sphinx8.xml ├── test_solution_references.py └── test_solution_references │ ├── _linked_ref_enum.html │ ├── _linked_ref_enum.sphinx6.html │ ├── _linked_ref_enum.sphinx7.html │ ├── _linked_ref_enum.sphinx8.1.html │ ├── _linked_ref_enum.sphinx8.html │ ├── _linked_ref_enum.xml │ ├── _linked_ref_unenum_mathtitle.html │ ├── _linked_ref_unenum_mathtitle.sphinx6.html │ ├── _linked_ref_unenum_mathtitle.sphinx7.html │ ├── _linked_ref_unenum_mathtitle.sphinx8.1.html │ ├── _linked_ref_unenum_mathtitle.sphinx8.html │ ├── _linked_ref_unenum_mathtitle.xml │ ├── _linked_ref_unenum_mathtitle2.html │ ├── _linked_ref_unenum_mathtitle2.sphinx6.html │ ├── _linked_ref_unenum_mathtitle2.sphinx7.html │ ├── _linked_ref_unenum_mathtitle2.sphinx8.1.html │ ├── _linked_ref_unenum_mathtitle2.sphinx8.html │ ├── _linked_ref_unenum_mathtitle2.xml │ ├── _linked_ref_unenum_notitle.html │ ├── _linked_ref_unenum_notitle.sphinx6.html │ ├── _linked_ref_unenum_notitle.sphinx7.html │ ├── _linked_ref_unenum_notitle.sphinx8.1.html │ ├── _linked_ref_unenum_notitle.sphinx8.html │ ├── _linked_ref_unenum_notitle.xml │ ├── _linked_ref_unenum_title.html │ ├── _linked_ref_unenum_title.sphinx6.html │ ├── _linked_ref_unenum_title.sphinx7.html │ ├── _linked_ref_unenum_title.sphinx8.1.html │ ├── _linked_ref_unenum_title.sphinx8.html │ ├── _linked_ref_unenum_title.xml │ └── _linked_ref_wronglabel.xml └── tox.ini /.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max-line-length = 88 3 | ignore=E203,W503 4 | -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/RELEASE.md -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/codecov.yml -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/docs/_static/custom.css -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/runtime.txt: -------------------------------------------------------------------------------- 1 | 3.11 2 | -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/developer-design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/docs/source/developer-design.md -------------------------------------------------------------------------------- /docs/source/developer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/docs/source/developer.md -------------------------------------------------------------------------------- /docs/source/img/gated-directive-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/docs/source/img/gated-directive-example.png -------------------------------------------------------------------------------- /docs/source/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/docs/source/index.md -------------------------------------------------------------------------------- /docs/source/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/docs/source/install.md -------------------------------------------------------------------------------- /docs/source/releases/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/docs/source/releases/index.md -------------------------------------------------------------------------------- /docs/source/releases/v1.1.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/docs/source/releases/v1.1.0.md -------------------------------------------------------------------------------- /docs/source/releases/v1.1.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/docs/source/releases/v1.1.1.md -------------------------------------------------------------------------------- /docs/source/releases/v1.2.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/docs/source/releases/v1.2.0.md -------------------------------------------------------------------------------- /docs/source/releases/v1.2.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/docs/source/releases/v1.2.1.md -------------------------------------------------------------------------------- /docs/source/syntax.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/docs/source/syntax.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/pytest.ini -------------------------------------------------------------------------------- /sphinx_exercise/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/sphinx_exercise/__init__.py -------------------------------------------------------------------------------- /sphinx_exercise/_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/sphinx_exercise/_compat.py -------------------------------------------------------------------------------- /sphinx_exercise/assets/html/exercise.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/sphinx_exercise/assets/html/exercise.css -------------------------------------------------------------------------------- /sphinx_exercise/directive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/sphinx_exercise/directive.py -------------------------------------------------------------------------------- /sphinx_exercise/latex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/sphinx_exercise/latex.py -------------------------------------------------------------------------------- /sphinx_exercise/nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/sphinx_exercise/nodes.py -------------------------------------------------------------------------------- /sphinx_exercise/post_transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/sphinx_exercise/post_transforms.py -------------------------------------------------------------------------------- /sphinx_exercise/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/sphinx_exercise/transforms.py -------------------------------------------------------------------------------- /sphinx_exercise/translations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/sphinx_exercise/translations/README.md -------------------------------------------------------------------------------- /sphinx_exercise/translations/_convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/sphinx_exercise/translations/_convert.py -------------------------------------------------------------------------------- /sphinx_exercise/translations/jsons/Exercise.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/sphinx_exercise/translations/jsons/Exercise.json -------------------------------------------------------------------------------- /sphinx_exercise/translations/jsons/Solution.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/sphinx_exercise/translations/jsons/Solution.json -------------------------------------------------------------------------------- /sphinx_exercise/translations/locales/ar/LC_MESSAGES/exercise.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/sphinx_exercise/translations/locales/ar/LC_MESSAGES/exercise.mo -------------------------------------------------------------------------------- /sphinx_exercise/translations/locales/ar/LC_MESSAGES/exercise.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/sphinx_exercise/translations/locales/ar/LC_MESSAGES/exercise.po -------------------------------------------------------------------------------- /sphinx_exercise/translations/locales/bn/LC_MESSAGES/exercise.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/sphinx_exercise/translations/locales/bn/LC_MESSAGES/exercise.mo -------------------------------------------------------------------------------- /sphinx_exercise/translations/locales/bn/LC_MESSAGES/exercise.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/sphinx_exercise/translations/locales/bn/LC_MESSAGES/exercise.po -------------------------------------------------------------------------------- /sphinx_exercise/translations/locales/cs/LC_MESSAGES/exercise.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/sphinx_exercise/translations/locales/cs/LC_MESSAGES/exercise.mo -------------------------------------------------------------------------------- /sphinx_exercise/translations/locales/cs/LC_MESSAGES/exercise.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/sphinx_exercise/translations/locales/cs/LC_MESSAGES/exercise.po -------------------------------------------------------------------------------- /sphinx_exercise/translations/locales/de/LC_MESSAGES/exercise.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/sphinx_exercise/translations/locales/de/LC_MESSAGES/exercise.mo -------------------------------------------------------------------------------- /sphinx_exercise/translations/locales/de/LC_MESSAGES/exercise.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/sphinx_exercise/translations/locales/de/LC_MESSAGES/exercise.po -------------------------------------------------------------------------------- /sphinx_exercise/translations/locales/el/LC_MESSAGES/exercise.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/sphinx_exercise/translations/locales/el/LC_MESSAGES/exercise.mo -------------------------------------------------------------------------------- /sphinx_exercise/translations/locales/el/LC_MESSAGES/exercise.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/sphinx_exercise/translations/locales/el/LC_MESSAGES/exercise.po -------------------------------------------------------------------------------- /sphinx_exercise/translations/locales/es/LC_MESSAGES/exercise.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/sphinx_exercise/translations/locales/es/LC_MESSAGES/exercise.mo -------------------------------------------------------------------------------- /sphinx_exercise/translations/locales/es/LC_MESSAGES/exercise.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/sphinx_exercise/translations/locales/es/LC_MESSAGES/exercise.po -------------------------------------------------------------------------------- /sphinx_exercise/translations/locales/fr/LC_MESSAGES/exercise.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/sphinx_exercise/translations/locales/fr/LC_MESSAGES/exercise.mo -------------------------------------------------------------------------------- /sphinx_exercise/translations/locales/fr/LC_MESSAGES/exercise.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/sphinx_exercise/translations/locales/fr/LC_MESSAGES/exercise.po -------------------------------------------------------------------------------- /sphinx_exercise/translations/locales/hi/LC_MESSAGES/exercise.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/sphinx_exercise/translations/locales/hi/LC_MESSAGES/exercise.mo -------------------------------------------------------------------------------- /sphinx_exercise/translations/locales/hi/LC_MESSAGES/exercise.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/sphinx_exercise/translations/locales/hi/LC_MESSAGES/exercise.po -------------------------------------------------------------------------------- /sphinx_exercise/translations/locales/hu/LC_MESSAGES/exercise.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/sphinx_exercise/translations/locales/hu/LC_MESSAGES/exercise.mo -------------------------------------------------------------------------------- /sphinx_exercise/translations/locales/hu/LC_MESSAGES/exercise.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/sphinx_exercise/translations/locales/hu/LC_MESSAGES/exercise.po -------------------------------------------------------------------------------- /sphinx_exercise/translations/locales/id/LC_MESSAGES/exercise.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/sphinx_exercise/translations/locales/id/LC_MESSAGES/exercise.mo -------------------------------------------------------------------------------- /sphinx_exercise/translations/locales/id/LC_MESSAGES/exercise.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/sphinx_exercise/translations/locales/id/LC_MESSAGES/exercise.po -------------------------------------------------------------------------------- /sphinx_exercise/translations/locales/it/LC_MESSAGES/exercise.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/sphinx_exercise/translations/locales/it/LC_MESSAGES/exercise.mo -------------------------------------------------------------------------------- /sphinx_exercise/translations/locales/it/LC_MESSAGES/exercise.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/sphinx_exercise/translations/locales/it/LC_MESSAGES/exercise.po -------------------------------------------------------------------------------- /sphinx_exercise/translations/locales/ja/LC_MESSAGES/exercise.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/sphinx_exercise/translations/locales/ja/LC_MESSAGES/exercise.mo -------------------------------------------------------------------------------- /sphinx_exercise/translations/locales/ja/LC_MESSAGES/exercise.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/sphinx_exercise/translations/locales/ja/LC_MESSAGES/exercise.po -------------------------------------------------------------------------------- /sphinx_exercise/translations/locales/ko/LC_MESSAGES/exercise.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/sphinx_exercise/translations/locales/ko/LC_MESSAGES/exercise.mo -------------------------------------------------------------------------------- /sphinx_exercise/translations/locales/ko/LC_MESSAGES/exercise.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/sphinx_exercise/translations/locales/ko/LC_MESSAGES/exercise.po -------------------------------------------------------------------------------- /sphinx_exercise/translations/locales/ms/LC_MESSAGES/exercise.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/sphinx_exercise/translations/locales/ms/LC_MESSAGES/exercise.mo -------------------------------------------------------------------------------- /sphinx_exercise/translations/locales/ms/LC_MESSAGES/exercise.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/sphinx_exercise/translations/locales/ms/LC_MESSAGES/exercise.po -------------------------------------------------------------------------------- /sphinx_exercise/translations/locales/nl/LC_MESSAGES/exercise.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/sphinx_exercise/translations/locales/nl/LC_MESSAGES/exercise.mo -------------------------------------------------------------------------------- /sphinx_exercise/translations/locales/nl/LC_MESSAGES/exercise.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/sphinx_exercise/translations/locales/nl/LC_MESSAGES/exercise.po -------------------------------------------------------------------------------- /sphinx_exercise/translations/locales/no/LC_MESSAGES/exercise.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/sphinx_exercise/translations/locales/no/LC_MESSAGES/exercise.mo -------------------------------------------------------------------------------- /sphinx_exercise/translations/locales/no/LC_MESSAGES/exercise.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/sphinx_exercise/translations/locales/no/LC_MESSAGES/exercise.po -------------------------------------------------------------------------------- /sphinx_exercise/translations/locales/pl/LC_MESSAGES/exercise.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/sphinx_exercise/translations/locales/pl/LC_MESSAGES/exercise.mo -------------------------------------------------------------------------------- /sphinx_exercise/translations/locales/pl/LC_MESSAGES/exercise.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/sphinx_exercise/translations/locales/pl/LC_MESSAGES/exercise.po -------------------------------------------------------------------------------- /sphinx_exercise/translations/locales/pt/LC_MESSAGES/exercise.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/sphinx_exercise/translations/locales/pt/LC_MESSAGES/exercise.mo -------------------------------------------------------------------------------- /sphinx_exercise/translations/locales/pt/LC_MESSAGES/exercise.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/sphinx_exercise/translations/locales/pt/LC_MESSAGES/exercise.po -------------------------------------------------------------------------------- /sphinx_exercise/translations/locales/ro/LC_MESSAGES/exercise.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/sphinx_exercise/translations/locales/ro/LC_MESSAGES/exercise.mo -------------------------------------------------------------------------------- /sphinx_exercise/translations/locales/ro/LC_MESSAGES/exercise.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/sphinx_exercise/translations/locales/ro/LC_MESSAGES/exercise.po -------------------------------------------------------------------------------- /sphinx_exercise/translations/locales/ru/LC_MESSAGES/exercise.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/sphinx_exercise/translations/locales/ru/LC_MESSAGES/exercise.mo -------------------------------------------------------------------------------- /sphinx_exercise/translations/locales/ru/LC_MESSAGES/exercise.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/sphinx_exercise/translations/locales/ru/LC_MESSAGES/exercise.po -------------------------------------------------------------------------------- /sphinx_exercise/translations/locales/sv/LC_MESSAGES/exercise.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/sphinx_exercise/translations/locales/sv/LC_MESSAGES/exercise.mo -------------------------------------------------------------------------------- /sphinx_exercise/translations/locales/sv/LC_MESSAGES/exercise.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/sphinx_exercise/translations/locales/sv/LC_MESSAGES/exercise.po -------------------------------------------------------------------------------- /sphinx_exercise/translations/locales/ta/LC_MESSAGES/exercise.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/sphinx_exercise/translations/locales/ta/LC_MESSAGES/exercise.mo -------------------------------------------------------------------------------- /sphinx_exercise/translations/locales/ta/LC_MESSAGES/exercise.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/sphinx_exercise/translations/locales/ta/LC_MESSAGES/exercise.po -------------------------------------------------------------------------------- /sphinx_exercise/translations/locales/tr/LC_MESSAGES/exercise.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/sphinx_exercise/translations/locales/tr/LC_MESSAGES/exercise.mo -------------------------------------------------------------------------------- /sphinx_exercise/translations/locales/tr/LC_MESSAGES/exercise.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/sphinx_exercise/translations/locales/tr/LC_MESSAGES/exercise.po -------------------------------------------------------------------------------- /sphinx_exercise/translations/locales/uk/LC_MESSAGES/exercise.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/sphinx_exercise/translations/locales/uk/LC_MESSAGES/exercise.mo -------------------------------------------------------------------------------- /sphinx_exercise/translations/locales/uk/LC_MESSAGES/exercise.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/sphinx_exercise/translations/locales/uk/LC_MESSAGES/exercise.po -------------------------------------------------------------------------------- /sphinx_exercise/translations/locales/vi/LC_MESSAGES/exercise.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/sphinx_exercise/translations/locales/vi/LC_MESSAGES/exercise.mo -------------------------------------------------------------------------------- /sphinx_exercise/translations/locales/vi/LC_MESSAGES/exercise.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/sphinx_exercise/translations/locales/vi/LC_MESSAGES/exercise.po -------------------------------------------------------------------------------- /sphinx_exercise/translations/locales/zh_CN/LC_MESSAGES/exercise.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/sphinx_exercise/translations/locales/zh_CN/LC_MESSAGES/exercise.mo -------------------------------------------------------------------------------- /sphinx_exercise/translations/locales/zh_CN/LC_MESSAGES/exercise.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/sphinx_exercise/translations/locales/zh_CN/LC_MESSAGES/exercise.po -------------------------------------------------------------------------------- /sphinx_exercise/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/sphinx_exercise/utils.py -------------------------------------------------------------------------------- /tests/books/test-duplicatelabel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/books/test-duplicatelabel/Makefile -------------------------------------------------------------------------------- /tests/books/test-duplicatelabel/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/books/test-duplicatelabel/conf.py -------------------------------------------------------------------------------- /tests/books/test-duplicatelabel/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/books/test-duplicatelabel/index.rst -------------------------------------------------------------------------------- /tests/books/test-duplicatelabel/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/books/test-duplicatelabel/make.bat -------------------------------------------------------------------------------- /tests/books/test-gateddirective/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/books/test-gateddirective/Makefile -------------------------------------------------------------------------------- /tests/books/test-gateddirective/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/books/test-gateddirective/conf.py -------------------------------------------------------------------------------- /tests/books/test-gateddirective/exercise-gated.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/books/test-gateddirective/exercise-gated.md -------------------------------------------------------------------------------- /tests/books/test-gateddirective/exercise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/books/test-gateddirective/exercise.md -------------------------------------------------------------------------------- /tests/books/test-gateddirective/exercise_errors_1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/books/test-gateddirective/exercise_errors_1.md -------------------------------------------------------------------------------- /tests/books/test-gateddirective/exercise_errors_2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/books/test-gateddirective/exercise_errors_2.md -------------------------------------------------------------------------------- /tests/books/test-gateddirective/exercise_errors_3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/books/test-gateddirective/exercise_errors_3.md -------------------------------------------------------------------------------- /tests/books/test-gateddirective/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/books/test-gateddirective/index.md -------------------------------------------------------------------------------- /tests/books/test-gateddirective/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/books/test-gateddirective/make.bat -------------------------------------------------------------------------------- /tests/books/test-gateddirective/solution-exercise-gated.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/books/test-gateddirective/solution-exercise-gated.md -------------------------------------------------------------------------------- /tests/books/test-gateddirective/solution-exercise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/books/test-gateddirective/solution-exercise.md -------------------------------------------------------------------------------- /tests/books/test-gateddirective/solution_errors_1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/books/test-gateddirective/solution_errors_1.md -------------------------------------------------------------------------------- /tests/books/test-gateddirective/solution_errors_2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/books/test-gateddirective/solution_errors_2.md -------------------------------------------------------------------------------- /tests/books/test-gateddirective/solution_errors_3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/books/test-gateddirective/solution_errors_3.md -------------------------------------------------------------------------------- /tests/books/test-gateddirective/sphx_glr_cohere_001_2_0x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/books/test-gateddirective/sphx_glr_cohere_001_2_0x.png -------------------------------------------------------------------------------- /tests/books/test-hiddendirectives/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/books/test-hiddendirectives/Makefile -------------------------------------------------------------------------------- /tests/books/test-hiddendirectives/_enum_duplicatelabel_hidden.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/books/test-hiddendirectives/_enum_duplicatelabel_hidden.rst -------------------------------------------------------------------------------- /tests/books/test-hiddendirectives/_enum_hidden.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/books/test-hiddendirectives/_enum_hidden.rst -------------------------------------------------------------------------------- /tests/books/test-hiddendirectives/_linked_enum_hidden.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/books/test-hiddendirectives/_linked_enum_hidden.rst -------------------------------------------------------------------------------- /tests/books/test-hiddendirectives/_linked_unenum_hidden.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/books/test-hiddendirectives/_linked_unenum_hidden.rst -------------------------------------------------------------------------------- /tests/books/test-hiddendirectives/_unenum_hidden.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/books/test-hiddendirectives/_unenum_hidden.rst -------------------------------------------------------------------------------- /tests/books/test-hiddendirectives/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/books/test-hiddendirectives/conf.py -------------------------------------------------------------------------------- /tests/books/test-hiddendirectives/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/books/test-hiddendirectives/index.rst -------------------------------------------------------------------------------- /tests/books/test-hiddendirectives/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/books/test-hiddendirectives/make.bat -------------------------------------------------------------------------------- /tests/books/test-mybook/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/books/test-mybook/Makefile -------------------------------------------------------------------------------- /tests/books/test-mybook/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/books/test-mybook/conf.py -------------------------------------------------------------------------------- /tests/books/test-mybook/exercise/_enum_duplicate_label.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/books/test-mybook/exercise/_enum_duplicate_label.rst -------------------------------------------------------------------------------- /tests/books/test-mybook/exercise/_enum_mathtitle_label.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/books/test-mybook/exercise/_enum_mathtitle_label.rst -------------------------------------------------------------------------------- /tests/books/test-mybook/exercise/_enum_notitle_label.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/books/test-mybook/exercise/_enum_notitle_label.rst -------------------------------------------------------------------------------- /tests/books/test-mybook/exercise/_enum_numref_mathtitle.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/books/test-mybook/exercise/_enum_numref_mathtitle.rst -------------------------------------------------------------------------------- /tests/books/test-mybook/exercise/_enum_numref_notitle.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/books/test-mybook/exercise/_enum_numref_notitle.rst -------------------------------------------------------------------------------- /tests/books/test-mybook/exercise/_enum_numref_placeholders.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/books/test-mybook/exercise/_enum_numref_placeholders.rst -------------------------------------------------------------------------------- /tests/books/test-mybook/exercise/_enum_numref_title.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/books/test-mybook/exercise/_enum_numref_title.rst -------------------------------------------------------------------------------- /tests/books/test-mybook/exercise/_enum_ref_mathtitle.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/books/test-mybook/exercise/_enum_ref_mathtitle.rst -------------------------------------------------------------------------------- /tests/books/test-mybook/exercise/_enum_ref_notitle.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/books/test-mybook/exercise/_enum_ref_notitle.rst -------------------------------------------------------------------------------- /tests/books/test-mybook/exercise/_enum_ref_title.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/books/test-mybook/exercise/_enum_ref_title.rst -------------------------------------------------------------------------------- /tests/books/test-mybook/exercise/_enum_title_class_label.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/books/test-mybook/exercise/_enum_title_class_label.rst -------------------------------------------------------------------------------- /tests/books/test-mybook/exercise/_enum_title_nolabel.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/books/test-mybook/exercise/_enum_title_nolabel.rst -------------------------------------------------------------------------------- /tests/books/test-mybook/exercise/_unenum_mathtitle_label.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/books/test-mybook/exercise/_unenum_mathtitle_label.rst -------------------------------------------------------------------------------- /tests/books/test-mybook/exercise/_unenum_notitle_label.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/books/test-mybook/exercise/_unenum_notitle_label.rst -------------------------------------------------------------------------------- /tests/books/test-mybook/exercise/_unenum_numref_mathtitle.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/books/test-mybook/exercise/_unenum_numref_mathtitle.rst -------------------------------------------------------------------------------- /tests/books/test-mybook/exercise/_unenum_numref_notitle.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/books/test-mybook/exercise/_unenum_numref_notitle.rst -------------------------------------------------------------------------------- /tests/books/test-mybook/exercise/_unenum_numref_title.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/books/test-mybook/exercise/_unenum_numref_title.rst -------------------------------------------------------------------------------- /tests/books/test-mybook/exercise/_unenum_ref_mathtitle.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/books/test-mybook/exercise/_unenum_ref_mathtitle.rst -------------------------------------------------------------------------------- /tests/books/test-mybook/exercise/_unenum_ref_notitle.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/books/test-mybook/exercise/_unenum_ref_notitle.rst -------------------------------------------------------------------------------- /tests/books/test-mybook/exercise/_unenum_ref_title.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/books/test-mybook/exercise/_unenum_ref_title.rst -------------------------------------------------------------------------------- /tests/books/test-mybook/exercise/_unenum_title_class_label.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/books/test-mybook/exercise/_unenum_title_class_label.rst -------------------------------------------------------------------------------- /tests/books/test-mybook/exercise/_unenum_title_nolabel.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/books/test-mybook/exercise/_unenum_title_nolabel.rst -------------------------------------------------------------------------------- /tests/books/test-mybook/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/books/test-mybook/index.rst -------------------------------------------------------------------------------- /tests/books/test-mybook/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/books/test-mybook/make.bat -------------------------------------------------------------------------------- /tests/books/test-mybook/solution/_linked_duplicate_label.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/books/test-mybook/solution/_linked_duplicate_label.rst -------------------------------------------------------------------------------- /tests/books/test-mybook/solution/_linked_enum.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/books/test-mybook/solution/_linked_enum.rst -------------------------------------------------------------------------------- /tests/books/test-mybook/solution/_linked_enum_class.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/books/test-mybook/solution/_linked_enum_class.rst -------------------------------------------------------------------------------- /tests/books/test-mybook/solution/_linked_missing_arg.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/books/test-mybook/solution/_linked_missing_arg.rst -------------------------------------------------------------------------------- /tests/books/test-mybook/solution/_linked_ref_enum.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/books/test-mybook/solution/_linked_ref_enum.rst -------------------------------------------------------------------------------- /tests/books/test-mybook/solution/_linked_ref_unenum_mathtitle.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/books/test-mybook/solution/_linked_ref_unenum_mathtitle.rst -------------------------------------------------------------------------------- /tests/books/test-mybook/solution/_linked_ref_unenum_mathtitle2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/books/test-mybook/solution/_linked_ref_unenum_mathtitle2.rst -------------------------------------------------------------------------------- /tests/books/test-mybook/solution/_linked_ref_unenum_notitle.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/books/test-mybook/solution/_linked_ref_unenum_notitle.rst -------------------------------------------------------------------------------- /tests/books/test-mybook/solution/_linked_ref_unenum_title.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/books/test-mybook/solution/_linked_ref_unenum_title.rst -------------------------------------------------------------------------------- /tests/books/test-mybook/solution/_linked_ref_wronglabel.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/books/test-mybook/solution/_linked_ref_wronglabel.rst -------------------------------------------------------------------------------- /tests/books/test-mybook/solution/_linked_unenum_mathtitle.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/books/test-mybook/solution/_linked_unenum_mathtitle.rst -------------------------------------------------------------------------------- /tests/books/test-mybook/solution/_linked_unenum_mathtitle2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/books/test-mybook/solution/_linked_unenum_mathtitle2.rst -------------------------------------------------------------------------------- /tests/books/test-mybook/solution/_linked_unenum_notitle.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/books/test-mybook/solution/_linked_unenum_notitle.rst -------------------------------------------------------------------------------- /tests/books/test-mybook/solution/_linked_unenum_title.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/books/test-mybook/solution/_linked_unenum_title.rst -------------------------------------------------------------------------------- /tests/books/test-mybook/solution/_linked_wrong_targetlabel.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/books/test-mybook/solution/_linked_wrong_targetlabel.rst -------------------------------------------------------------------------------- /tests/books/test-simplebook/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/books/test-simplebook/Makefile -------------------------------------------------------------------------------- /tests/books/test-simplebook/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/books/test-simplebook/conf.py -------------------------------------------------------------------------------- /tests/books/test-simplebook/exercise.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/books/test-simplebook/exercise.rst -------------------------------------------------------------------------------- /tests/books/test-simplebook/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/books/test-simplebook/index.rst -------------------------------------------------------------------------------- /tests/books/test-simplebook/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/books/test-simplebook/make.bat -------------------------------------------------------------------------------- /tests/books/test-simplebook/solution.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/books/test-simplebook/solution.rst -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_build.py -------------------------------------------------------------------------------- /tests/test_duplicatelabel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_duplicatelabel.py -------------------------------------------------------------------------------- /tests/test_exercise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise.py -------------------------------------------------------------------------------- /tests/test_exercise/_enum_duplicate_label.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise/_enum_duplicate_label.xml -------------------------------------------------------------------------------- /tests/test_exercise/_enum_mathtitle_label.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise/_enum_mathtitle_label.html -------------------------------------------------------------------------------- /tests/test_exercise/_enum_mathtitle_label.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise/_enum_mathtitle_label.xml -------------------------------------------------------------------------------- /tests/test_exercise/_enum_notitle_label.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise/_enum_notitle_label.html -------------------------------------------------------------------------------- /tests/test_exercise/_enum_notitle_label.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise/_enum_notitle_label.xml -------------------------------------------------------------------------------- /tests/test_exercise/_enum_title_class_label.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise/_enum_title_class_label.html -------------------------------------------------------------------------------- /tests/test_exercise/_enum_title_class_label.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise/_enum_title_class_label.xml -------------------------------------------------------------------------------- /tests/test_exercise/_enum_title_nolabel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise/_enum_title_nolabel.html -------------------------------------------------------------------------------- /tests/test_exercise/_enum_title_nolabel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise/_enum_title_nolabel.xml -------------------------------------------------------------------------------- /tests/test_exercise/_unenum_mathtitle_label.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise/_unenum_mathtitle_label.html -------------------------------------------------------------------------------- /tests/test_exercise/_unenum_mathtitle_label.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise/_unenum_mathtitle_label.xml -------------------------------------------------------------------------------- /tests/test_exercise/_unenum_notitle_label.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise/_unenum_notitle_label.html -------------------------------------------------------------------------------- /tests/test_exercise/_unenum_notitle_label.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise/_unenum_notitle_label.xml -------------------------------------------------------------------------------- /tests/test_exercise/_unenum_title_class_label.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise/_unenum_title_class_label.html -------------------------------------------------------------------------------- /tests/test_exercise/_unenum_title_class_label.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise/_unenum_title_class_label.xml -------------------------------------------------------------------------------- /tests/test_exercise/_unenum_title_nolabel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise/_unenum_title_nolabel.html -------------------------------------------------------------------------------- /tests/test_exercise/_unenum_title_nolabel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise/_unenum_title_nolabel.xml -------------------------------------------------------------------------------- /tests/test_exercise_references.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise_references.py -------------------------------------------------------------------------------- /tests/test_exercise_references/_enum_numref_mathtitle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise_references/_enum_numref_mathtitle.html -------------------------------------------------------------------------------- /tests/test_exercise_references/_enum_numref_mathtitle.sphinx6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise_references/_enum_numref_mathtitle.sphinx6.html -------------------------------------------------------------------------------- /tests/test_exercise_references/_enum_numref_mathtitle.sphinx7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise_references/_enum_numref_mathtitle.sphinx7.html -------------------------------------------------------------------------------- /tests/test_exercise_references/_enum_numref_mathtitle.sphinx8.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise_references/_enum_numref_mathtitle.sphinx8.1.html -------------------------------------------------------------------------------- /tests/test_exercise_references/_enum_numref_mathtitle.sphinx8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise_references/_enum_numref_mathtitle.sphinx8.html -------------------------------------------------------------------------------- /tests/test_exercise_references/_enum_numref_mathtitle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise_references/_enum_numref_mathtitle.xml -------------------------------------------------------------------------------- /tests/test_exercise_references/_enum_numref_notitle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise_references/_enum_numref_notitle.html -------------------------------------------------------------------------------- /tests/test_exercise_references/_enum_numref_notitle.sphinx6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise_references/_enum_numref_notitle.sphinx6.html -------------------------------------------------------------------------------- /tests/test_exercise_references/_enum_numref_notitle.sphinx7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise_references/_enum_numref_notitle.sphinx7.html -------------------------------------------------------------------------------- /tests/test_exercise_references/_enum_numref_notitle.sphinx8.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise_references/_enum_numref_notitle.sphinx8.1.html -------------------------------------------------------------------------------- /tests/test_exercise_references/_enum_numref_notitle.sphinx8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise_references/_enum_numref_notitle.sphinx8.html -------------------------------------------------------------------------------- /tests/test_exercise_references/_enum_numref_notitle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise_references/_enum_numref_notitle.xml -------------------------------------------------------------------------------- /tests/test_exercise_references/_enum_numref_placeholders.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise_references/_enum_numref_placeholders.html -------------------------------------------------------------------------------- /tests/test_exercise_references/_enum_numref_placeholders.sphinx6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise_references/_enum_numref_placeholders.sphinx6.html -------------------------------------------------------------------------------- /tests/test_exercise_references/_enum_numref_placeholders.sphinx7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise_references/_enum_numref_placeholders.sphinx7.html -------------------------------------------------------------------------------- /tests/test_exercise_references/_enum_numref_placeholders.sphinx8.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise_references/_enum_numref_placeholders.sphinx8.1.html -------------------------------------------------------------------------------- /tests/test_exercise_references/_enum_numref_placeholders.sphinx8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise_references/_enum_numref_placeholders.sphinx8.html -------------------------------------------------------------------------------- /tests/test_exercise_references/_enum_numref_placeholders.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise_references/_enum_numref_placeholders.xml -------------------------------------------------------------------------------- /tests/test_exercise_references/_enum_numref_title.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise_references/_enum_numref_title.html -------------------------------------------------------------------------------- /tests/test_exercise_references/_enum_numref_title.sphinx6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise_references/_enum_numref_title.sphinx6.html -------------------------------------------------------------------------------- /tests/test_exercise_references/_enum_numref_title.sphinx7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise_references/_enum_numref_title.sphinx7.html -------------------------------------------------------------------------------- /tests/test_exercise_references/_enum_numref_title.sphinx8.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise_references/_enum_numref_title.sphinx8.1.html -------------------------------------------------------------------------------- /tests/test_exercise_references/_enum_numref_title.sphinx8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise_references/_enum_numref_title.sphinx8.html -------------------------------------------------------------------------------- /tests/test_exercise_references/_enum_numref_title.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise_references/_enum_numref_title.xml -------------------------------------------------------------------------------- /tests/test_exercise_references/_enum_ref_mathtitle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise_references/_enum_ref_mathtitle.html -------------------------------------------------------------------------------- /tests/test_exercise_references/_enum_ref_mathtitle.sphinx6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise_references/_enum_ref_mathtitle.sphinx6.html -------------------------------------------------------------------------------- /tests/test_exercise_references/_enum_ref_mathtitle.sphinx7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise_references/_enum_ref_mathtitle.sphinx7.html -------------------------------------------------------------------------------- /tests/test_exercise_references/_enum_ref_mathtitle.sphinx8.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise_references/_enum_ref_mathtitle.sphinx8.1.html -------------------------------------------------------------------------------- /tests/test_exercise_references/_enum_ref_mathtitle.sphinx8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise_references/_enum_ref_mathtitle.sphinx8.html -------------------------------------------------------------------------------- /tests/test_exercise_references/_enum_ref_mathtitle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise_references/_enum_ref_mathtitle.xml -------------------------------------------------------------------------------- /tests/test_exercise_references/_enum_ref_notitle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise_references/_enum_ref_notitle.html -------------------------------------------------------------------------------- /tests/test_exercise_references/_enum_ref_notitle.sphinx6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise_references/_enum_ref_notitle.sphinx6.html -------------------------------------------------------------------------------- /tests/test_exercise_references/_enum_ref_notitle.sphinx7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise_references/_enum_ref_notitle.sphinx7.html -------------------------------------------------------------------------------- /tests/test_exercise_references/_enum_ref_notitle.sphinx8.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise_references/_enum_ref_notitle.sphinx8.1.html -------------------------------------------------------------------------------- /tests/test_exercise_references/_enum_ref_notitle.sphinx8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise_references/_enum_ref_notitle.sphinx8.html -------------------------------------------------------------------------------- /tests/test_exercise_references/_enum_ref_notitle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise_references/_enum_ref_notitle.xml -------------------------------------------------------------------------------- /tests/test_exercise_references/_enum_ref_title.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise_references/_enum_ref_title.html -------------------------------------------------------------------------------- /tests/test_exercise_references/_enum_ref_title.sphinx6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise_references/_enum_ref_title.sphinx6.html -------------------------------------------------------------------------------- /tests/test_exercise_references/_enum_ref_title.sphinx7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise_references/_enum_ref_title.sphinx7.html -------------------------------------------------------------------------------- /tests/test_exercise_references/_enum_ref_title.sphinx8.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise_references/_enum_ref_title.sphinx8.1.html -------------------------------------------------------------------------------- /tests/test_exercise_references/_enum_ref_title.sphinx8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise_references/_enum_ref_title.sphinx8.html -------------------------------------------------------------------------------- /tests/test_exercise_references/_enum_ref_title.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise_references/_enum_ref_title.xml -------------------------------------------------------------------------------- /tests/test_exercise_references/_unenum_numref_mathtitle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise_references/_unenum_numref_mathtitle.html -------------------------------------------------------------------------------- /tests/test_exercise_references/_unenum_numref_mathtitle.sphinx6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise_references/_unenum_numref_mathtitle.sphinx6.html -------------------------------------------------------------------------------- /tests/test_exercise_references/_unenum_numref_mathtitle.sphinx7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise_references/_unenum_numref_mathtitle.sphinx7.html -------------------------------------------------------------------------------- /tests/test_exercise_references/_unenum_numref_mathtitle.sphinx8.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise_references/_unenum_numref_mathtitle.sphinx8.1.html -------------------------------------------------------------------------------- /tests/test_exercise_references/_unenum_numref_mathtitle.sphinx8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise_references/_unenum_numref_mathtitle.sphinx8.html -------------------------------------------------------------------------------- /tests/test_exercise_references/_unenum_numref_mathtitle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise_references/_unenum_numref_mathtitle.xml -------------------------------------------------------------------------------- /tests/test_exercise_references/_unenum_numref_notitle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise_references/_unenum_numref_notitle.html -------------------------------------------------------------------------------- /tests/test_exercise_references/_unenum_numref_notitle.sphinx6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise_references/_unenum_numref_notitle.sphinx6.html -------------------------------------------------------------------------------- /tests/test_exercise_references/_unenum_numref_notitle.sphinx7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise_references/_unenum_numref_notitle.sphinx7.html -------------------------------------------------------------------------------- /tests/test_exercise_references/_unenum_numref_notitle.sphinx8.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise_references/_unenum_numref_notitle.sphinx8.1.html -------------------------------------------------------------------------------- /tests/test_exercise_references/_unenum_numref_notitle.sphinx8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise_references/_unenum_numref_notitle.sphinx8.html -------------------------------------------------------------------------------- /tests/test_exercise_references/_unenum_numref_notitle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise_references/_unenum_numref_notitle.xml -------------------------------------------------------------------------------- /tests/test_exercise_references/_unenum_numref_title.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise_references/_unenum_numref_title.html -------------------------------------------------------------------------------- /tests/test_exercise_references/_unenum_numref_title.sphinx6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise_references/_unenum_numref_title.sphinx6.html -------------------------------------------------------------------------------- /tests/test_exercise_references/_unenum_numref_title.sphinx7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise_references/_unenum_numref_title.sphinx7.html -------------------------------------------------------------------------------- /tests/test_exercise_references/_unenum_numref_title.sphinx8.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise_references/_unenum_numref_title.sphinx8.1.html -------------------------------------------------------------------------------- /tests/test_exercise_references/_unenum_numref_title.sphinx8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise_references/_unenum_numref_title.sphinx8.html -------------------------------------------------------------------------------- /tests/test_exercise_references/_unenum_numref_title.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise_references/_unenum_numref_title.xml -------------------------------------------------------------------------------- /tests/test_exercise_references/_unenum_ref_mathtitle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise_references/_unenum_ref_mathtitle.html -------------------------------------------------------------------------------- /tests/test_exercise_references/_unenum_ref_mathtitle.sphinx6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise_references/_unenum_ref_mathtitle.sphinx6.html -------------------------------------------------------------------------------- /tests/test_exercise_references/_unenum_ref_mathtitle.sphinx7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise_references/_unenum_ref_mathtitle.sphinx7.html -------------------------------------------------------------------------------- /tests/test_exercise_references/_unenum_ref_mathtitle.sphinx8.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise_references/_unenum_ref_mathtitle.sphinx8.1.html -------------------------------------------------------------------------------- /tests/test_exercise_references/_unenum_ref_mathtitle.sphinx8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise_references/_unenum_ref_mathtitle.sphinx8.html -------------------------------------------------------------------------------- /tests/test_exercise_references/_unenum_ref_mathtitle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise_references/_unenum_ref_mathtitle.xml -------------------------------------------------------------------------------- /tests/test_exercise_references/_unenum_ref_notitle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise_references/_unenum_ref_notitle.html -------------------------------------------------------------------------------- /tests/test_exercise_references/_unenum_ref_notitle.sphinx6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise_references/_unenum_ref_notitle.sphinx6.html -------------------------------------------------------------------------------- /tests/test_exercise_references/_unenum_ref_notitle.sphinx7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise_references/_unenum_ref_notitle.sphinx7.html -------------------------------------------------------------------------------- /tests/test_exercise_references/_unenum_ref_notitle.sphinx8.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise_references/_unenum_ref_notitle.sphinx8.1.html -------------------------------------------------------------------------------- /tests/test_exercise_references/_unenum_ref_notitle.sphinx8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise_references/_unenum_ref_notitle.sphinx8.html -------------------------------------------------------------------------------- /tests/test_exercise_references/_unenum_ref_notitle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise_references/_unenum_ref_notitle.xml -------------------------------------------------------------------------------- /tests/test_exercise_references/_unenum_ref_title.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise_references/_unenum_ref_title.html -------------------------------------------------------------------------------- /tests/test_exercise_references/_unenum_ref_title.sphinx6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise_references/_unenum_ref_title.sphinx6.html -------------------------------------------------------------------------------- /tests/test_exercise_references/_unenum_ref_title.sphinx7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise_references/_unenum_ref_title.sphinx7.html -------------------------------------------------------------------------------- /tests/test_exercise_references/_unenum_ref_title.sphinx8.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise_references/_unenum_ref_title.sphinx8.1.html -------------------------------------------------------------------------------- /tests/test_exercise_references/_unenum_ref_title.sphinx8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise_references/_unenum_ref_title.sphinx8.html -------------------------------------------------------------------------------- /tests/test_exercise_references/_unenum_ref_title.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise_references/_unenum_ref_title.xml -------------------------------------------------------------------------------- /tests/test_exercise_style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_exercise_style.py -------------------------------------------------------------------------------- /tests/test_gateddirective.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_gateddirective.py -------------------------------------------------------------------------------- /tests/test_gateddirective/exercise-gated-0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_gateddirective/exercise-gated-0.html -------------------------------------------------------------------------------- /tests/test_gateddirective/exercise-gated-0.sphinx6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_gateddirective/exercise-gated-0.sphinx6.html -------------------------------------------------------------------------------- /tests/test_gateddirective/exercise-gated-0.sphinx7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_gateddirective/exercise-gated-0.sphinx7.html -------------------------------------------------------------------------------- /tests/test_gateddirective/exercise-gated-0.sphinx8.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_gateddirective/exercise-gated-0.sphinx8.1.html -------------------------------------------------------------------------------- /tests/test_gateddirective/exercise-gated-0.sphinx8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_gateddirective/exercise-gated-0.sphinx8.html -------------------------------------------------------------------------------- /tests/test_gateddirective/exercise-gated-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_gateddirective/exercise-gated-1.html -------------------------------------------------------------------------------- /tests/test_gateddirective/exercise-gated-1.sphinx6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_gateddirective/exercise-gated-1.sphinx6.html -------------------------------------------------------------------------------- /tests/test_gateddirective/exercise-gated-1.sphinx7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_gateddirective/exercise-gated-1.sphinx7.html -------------------------------------------------------------------------------- /tests/test_gateddirective/exercise-gated-1.sphinx8.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_gateddirective/exercise-gated-1.sphinx8.1.html -------------------------------------------------------------------------------- /tests/test_gateddirective/exercise-gated-1.sphinx8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_gateddirective/exercise-gated-1.sphinx8.html -------------------------------------------------------------------------------- /tests/test_gateddirective/exercise-gated.sphinx6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_gateddirective/exercise-gated.sphinx6.xml -------------------------------------------------------------------------------- /tests/test_gateddirective/exercise-gated.sphinx7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_gateddirective/exercise-gated.sphinx7.xml -------------------------------------------------------------------------------- /tests/test_gateddirective/exercise-gated.sphinx8.1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_gateddirective/exercise-gated.sphinx8.1.xml -------------------------------------------------------------------------------- /tests/test_gateddirective/exercise-gated.sphinx8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_gateddirective/exercise-gated.sphinx8.xml -------------------------------------------------------------------------------- /tests/test_gateddirective/exercise-gated.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_gateddirective/exercise-gated.xml -------------------------------------------------------------------------------- /tests/test_gateddirective/solution-exercise-0.sphinx4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_gateddirective/solution-exercise-0.sphinx4.html -------------------------------------------------------------------------------- /tests/test_gateddirective/solution-exercise-0.sphinx5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_gateddirective/solution-exercise-0.sphinx5.html -------------------------------------------------------------------------------- /tests/test_gateddirective/solution-exercise-0.sphinx6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_gateddirective/solution-exercise-0.sphinx6.html -------------------------------------------------------------------------------- /tests/test_gateddirective/solution-exercise-0.sphinx7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_gateddirective/solution-exercise-0.sphinx7.html -------------------------------------------------------------------------------- /tests/test_gateddirective/solution-exercise-0.sphinx8.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_gateddirective/solution-exercise-0.sphinx8.1.html -------------------------------------------------------------------------------- /tests/test_gateddirective/solution-exercise-0.sphinx8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_gateddirective/solution-exercise-0.sphinx8.html -------------------------------------------------------------------------------- /tests/test_gateddirective/solution-exercise-1.sphinx4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_gateddirective/solution-exercise-1.sphinx4.html -------------------------------------------------------------------------------- /tests/test_gateddirective/solution-exercise-1.sphinx5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_gateddirective/solution-exercise-1.sphinx5.html -------------------------------------------------------------------------------- /tests/test_gateddirective/solution-exercise-1.sphinx6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_gateddirective/solution-exercise-1.sphinx6.html -------------------------------------------------------------------------------- /tests/test_gateddirective/solution-exercise-1.sphinx7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_gateddirective/solution-exercise-1.sphinx7.html -------------------------------------------------------------------------------- /tests/test_gateddirective/solution-exercise-1.sphinx8.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_gateddirective/solution-exercise-1.sphinx8.1.html -------------------------------------------------------------------------------- /tests/test_gateddirective/solution-exercise-1.sphinx8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_gateddirective/solution-exercise-1.sphinx8.html -------------------------------------------------------------------------------- /tests/test_gateddirective/solution-exercise-gated-0.sphinx4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_gateddirective/solution-exercise-gated-0.sphinx4.html -------------------------------------------------------------------------------- /tests/test_gateddirective/solution-exercise-gated-0.sphinx5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_gateddirective/solution-exercise-gated-0.sphinx5.html -------------------------------------------------------------------------------- /tests/test_gateddirective/solution-exercise-gated-0.sphinx6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_gateddirective/solution-exercise-gated-0.sphinx6.html -------------------------------------------------------------------------------- /tests/test_gateddirective/solution-exercise-gated-0.sphinx7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_gateddirective/solution-exercise-gated-0.sphinx7.html -------------------------------------------------------------------------------- /tests/test_gateddirective/solution-exercise-gated-0.sphinx8.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_gateddirective/solution-exercise-gated-0.sphinx8.1.html -------------------------------------------------------------------------------- /tests/test_gateddirective/solution-exercise-gated-0.sphinx8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_gateddirective/solution-exercise-gated-0.sphinx8.html -------------------------------------------------------------------------------- /tests/test_gateddirective/solution-exercise-gated-1.sphinx4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_gateddirective/solution-exercise-gated-1.sphinx4.html -------------------------------------------------------------------------------- /tests/test_gateddirective/solution-exercise-gated-1.sphinx5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_gateddirective/solution-exercise-gated-1.sphinx5.html -------------------------------------------------------------------------------- /tests/test_gateddirective/solution-exercise-gated-1.sphinx6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_gateddirective/solution-exercise-gated-1.sphinx6.html -------------------------------------------------------------------------------- /tests/test_gateddirective/solution-exercise-gated-1.sphinx7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_gateddirective/solution-exercise-gated-1.sphinx7.html -------------------------------------------------------------------------------- /tests/test_gateddirective/solution-exercise-gated-1.sphinx8.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_gateddirective/solution-exercise-gated-1.sphinx8.1.html -------------------------------------------------------------------------------- /tests/test_gateddirective/solution-exercise-gated-1.sphinx8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_gateddirective/solution-exercise-gated-1.sphinx8.html -------------------------------------------------------------------------------- /tests/test_gateddirective/solution-exercise-gated.sphinx4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_gateddirective/solution-exercise-gated.sphinx4.xml -------------------------------------------------------------------------------- /tests/test_gateddirective/solution-exercise-gated.sphinx5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_gateddirective/solution-exercise-gated.sphinx5.xml -------------------------------------------------------------------------------- /tests/test_gateddirective/solution-exercise-gated.sphinx6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_gateddirective/solution-exercise-gated.sphinx6.xml -------------------------------------------------------------------------------- /tests/test_gateddirective/solution-exercise-gated.sphinx7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_gateddirective/solution-exercise-gated.sphinx7.xml -------------------------------------------------------------------------------- /tests/test_gateddirective/solution-exercise-gated.sphinx8.1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_gateddirective/solution-exercise-gated.sphinx8.1.xml -------------------------------------------------------------------------------- /tests/test_gateddirective/solution-exercise-gated.sphinx8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_gateddirective/solution-exercise-gated.sphinx8.xml -------------------------------------------------------------------------------- /tests/test_gateddirective/solution-exercise.sphinx4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_gateddirective/solution-exercise.sphinx4.xml -------------------------------------------------------------------------------- /tests/test_gateddirective/solution-exercise.sphinx5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_gateddirective/solution-exercise.sphinx5.xml -------------------------------------------------------------------------------- /tests/test_gateddirective/solution-exercise.sphinx6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_gateddirective/solution-exercise.sphinx6.xml -------------------------------------------------------------------------------- /tests/test_gateddirective/solution-exercise.sphinx7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_gateddirective/solution-exercise.sphinx7.xml -------------------------------------------------------------------------------- /tests/test_gateddirective/solution-exercise.sphinx8.1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_gateddirective/solution-exercise.sphinx8.1.xml -------------------------------------------------------------------------------- /tests/test_gateddirective/solution-exercise.sphinx8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_gateddirective/solution-exercise.sphinx8.xml -------------------------------------------------------------------------------- /tests/test_gateddirective/solution-exercise.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_gateddirective/solution-exercise.xml -------------------------------------------------------------------------------- /tests/test_hiddendirective.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_hiddendirective.py -------------------------------------------------------------------------------- /tests/test_hiddendirective/_enum_hidden.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_hiddendirective/_enum_hidden.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_hiddendirective/_enum_hidden.xml -------------------------------------------------------------------------------- /tests/test_hiddendirective/_linked_enum_hidden.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_hiddendirective/_linked_enum_hidden.xml -------------------------------------------------------------------------------- /tests/test_hiddendirective/_linked_unenum_hidden.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_hiddendirective/_linked_unenum_hidden.xml -------------------------------------------------------------------------------- /tests/test_hiddendirective/_unenum_hidden.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_hiddendirective/_unenum_hidden.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_hiddendirective/_unenum_hidden.xml -------------------------------------------------------------------------------- /tests/test_latex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_latex.py -------------------------------------------------------------------------------- /tests/test_latex/test_latex_build.sphinx4.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_latex/test_latex_build.sphinx4.tex -------------------------------------------------------------------------------- /tests/test_latex/test_latex_build.sphinx5.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_latex/test_latex_build.sphinx5.tex -------------------------------------------------------------------------------- /tests/test_latex/test_latex_build.sphinx6.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_latex/test_latex_build.sphinx6.tex -------------------------------------------------------------------------------- /tests/test_latex/test_latex_build.sphinx7.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_latex/test_latex_build.sphinx7.tex -------------------------------------------------------------------------------- /tests/test_latex/test_latex_build.sphinx8.1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_latex/test_latex_build.sphinx8.1.tex -------------------------------------------------------------------------------- /tests/test_latex/test_latex_build.sphinx8.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_latex/test_latex_build.sphinx8.tex -------------------------------------------------------------------------------- /tests/test_order_validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_order_validation.py -------------------------------------------------------------------------------- /tests/test_solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution.py -------------------------------------------------------------------------------- /tests/test_solution/_linked_duplicate_label.sphinx6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution/_linked_duplicate_label.sphinx6.xml -------------------------------------------------------------------------------- /tests/test_solution/_linked_duplicate_label.sphinx7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution/_linked_duplicate_label.sphinx7.xml -------------------------------------------------------------------------------- /tests/test_solution/_linked_duplicate_label.sphinx8.1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution/_linked_duplicate_label.sphinx8.1.xml -------------------------------------------------------------------------------- /tests/test_solution/_linked_duplicate_label.sphinx8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution/_linked_duplicate_label.sphinx8.xml -------------------------------------------------------------------------------- /tests/test_solution/_linked_duplicate_label.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution/_linked_duplicate_label.xml -------------------------------------------------------------------------------- /tests/test_solution/_linked_enum.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution/_linked_enum.html -------------------------------------------------------------------------------- /tests/test_solution/_linked_enum.sphinx6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution/_linked_enum.sphinx6.xml -------------------------------------------------------------------------------- /tests/test_solution/_linked_enum.sphinx7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution/_linked_enum.sphinx7.xml -------------------------------------------------------------------------------- /tests/test_solution/_linked_enum.sphinx8.1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution/_linked_enum.sphinx8.1.xml -------------------------------------------------------------------------------- /tests/test_solution/_linked_enum.sphinx8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution/_linked_enum.sphinx8.xml -------------------------------------------------------------------------------- /tests/test_solution/_linked_enum.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution/_linked_enum.xml -------------------------------------------------------------------------------- /tests/test_solution/_linked_enum_class.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution/_linked_enum_class.html -------------------------------------------------------------------------------- /tests/test_solution/_linked_enum_class.sphinx6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution/_linked_enum_class.sphinx6.xml -------------------------------------------------------------------------------- /tests/test_solution/_linked_enum_class.sphinx7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution/_linked_enum_class.sphinx7.xml -------------------------------------------------------------------------------- /tests/test_solution/_linked_enum_class.sphinx8.1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution/_linked_enum_class.sphinx8.1.xml -------------------------------------------------------------------------------- /tests/test_solution/_linked_enum_class.sphinx8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution/_linked_enum_class.sphinx8.xml -------------------------------------------------------------------------------- /tests/test_solution/_linked_enum_class.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution/_linked_enum_class.xml -------------------------------------------------------------------------------- /tests/test_solution/_linked_missing_arg.sphinx6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution/_linked_missing_arg.sphinx6.xml -------------------------------------------------------------------------------- /tests/test_solution/_linked_missing_arg.sphinx7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution/_linked_missing_arg.sphinx7.xml -------------------------------------------------------------------------------- /tests/test_solution/_linked_missing_arg.sphinx8.1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution/_linked_missing_arg.sphinx8.1.xml -------------------------------------------------------------------------------- /tests/test_solution/_linked_missing_arg.sphinx8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution/_linked_missing_arg.sphinx8.xml -------------------------------------------------------------------------------- /tests/test_solution/_linked_missing_arg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution/_linked_missing_arg.xml -------------------------------------------------------------------------------- /tests/test_solution/_linked_unenum_mathtitle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution/_linked_unenum_mathtitle.html -------------------------------------------------------------------------------- /tests/test_solution/_linked_unenum_mathtitle.sphinx6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution/_linked_unenum_mathtitle.sphinx6.xml -------------------------------------------------------------------------------- /tests/test_solution/_linked_unenum_mathtitle.sphinx7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution/_linked_unenum_mathtitle.sphinx7.xml -------------------------------------------------------------------------------- /tests/test_solution/_linked_unenum_mathtitle.sphinx8.1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution/_linked_unenum_mathtitle.sphinx8.1.xml -------------------------------------------------------------------------------- /tests/test_solution/_linked_unenum_mathtitle.sphinx8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution/_linked_unenum_mathtitle.sphinx8.xml -------------------------------------------------------------------------------- /tests/test_solution/_linked_unenum_mathtitle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution/_linked_unenum_mathtitle.xml -------------------------------------------------------------------------------- /tests/test_solution/_linked_unenum_mathtitle2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution/_linked_unenum_mathtitle2.html -------------------------------------------------------------------------------- /tests/test_solution/_linked_unenum_mathtitle2.sphinx6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution/_linked_unenum_mathtitle2.sphinx6.xml -------------------------------------------------------------------------------- /tests/test_solution/_linked_unenum_mathtitle2.sphinx7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution/_linked_unenum_mathtitle2.sphinx7.xml -------------------------------------------------------------------------------- /tests/test_solution/_linked_unenum_mathtitle2.sphinx8.1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution/_linked_unenum_mathtitle2.sphinx8.1.xml -------------------------------------------------------------------------------- /tests/test_solution/_linked_unenum_mathtitle2.sphinx8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution/_linked_unenum_mathtitle2.sphinx8.xml -------------------------------------------------------------------------------- /tests/test_solution/_linked_unenum_mathtitle2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution/_linked_unenum_mathtitle2.xml -------------------------------------------------------------------------------- /tests/test_solution/_linked_unenum_notitle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution/_linked_unenum_notitle.html -------------------------------------------------------------------------------- /tests/test_solution/_linked_unenum_notitle.sphinx6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution/_linked_unenum_notitle.sphinx6.xml -------------------------------------------------------------------------------- /tests/test_solution/_linked_unenum_notitle.sphinx7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution/_linked_unenum_notitle.sphinx7.xml -------------------------------------------------------------------------------- /tests/test_solution/_linked_unenum_notitle.sphinx8.1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution/_linked_unenum_notitle.sphinx8.1.xml -------------------------------------------------------------------------------- /tests/test_solution/_linked_unenum_notitle.sphinx8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution/_linked_unenum_notitle.sphinx8.xml -------------------------------------------------------------------------------- /tests/test_solution/_linked_unenum_notitle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution/_linked_unenum_notitle.xml -------------------------------------------------------------------------------- /tests/test_solution/_linked_unenum_title.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution/_linked_unenum_title.html -------------------------------------------------------------------------------- /tests/test_solution/_linked_unenum_title.sphinx6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution/_linked_unenum_title.sphinx6.xml -------------------------------------------------------------------------------- /tests/test_solution/_linked_unenum_title.sphinx7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution/_linked_unenum_title.sphinx7.xml -------------------------------------------------------------------------------- /tests/test_solution/_linked_unenum_title.sphinx8.1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution/_linked_unenum_title.sphinx8.1.xml -------------------------------------------------------------------------------- /tests/test_solution/_linked_unenum_title.sphinx8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution/_linked_unenum_title.sphinx8.xml -------------------------------------------------------------------------------- /tests/test_solution/_linked_unenum_title.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution/_linked_unenum_title.xml -------------------------------------------------------------------------------- /tests/test_solution/_linked_wrong_targetlabel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution/_linked_wrong_targetlabel.html -------------------------------------------------------------------------------- /tests/test_solution/_linked_wrong_targetlabel.sphinx6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution/_linked_wrong_targetlabel.sphinx6.xml -------------------------------------------------------------------------------- /tests/test_solution/_linked_wrong_targetlabel.sphinx7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution/_linked_wrong_targetlabel.sphinx7.xml -------------------------------------------------------------------------------- /tests/test_solution/_linked_wrong_targetlabel.sphinx8.1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution/_linked_wrong_targetlabel.sphinx8.1.xml -------------------------------------------------------------------------------- /tests/test_solution/_linked_wrong_targetlabel.sphinx8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution/_linked_wrong_targetlabel.sphinx8.xml -------------------------------------------------------------------------------- /tests/test_solution/_linked_wrong_targetlabel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution/_linked_wrong_targetlabel.xml -------------------------------------------------------------------------------- /tests/test_solution/solution/_linked_duplicate_label.sphinx6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution/solution/_linked_duplicate_label.sphinx6.xml -------------------------------------------------------------------------------- /tests/test_solution/solution/_linked_duplicate_label.sphinx7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution/solution/_linked_duplicate_label.sphinx7.xml -------------------------------------------------------------------------------- /tests/test_solution/solution/_linked_duplicate_label.sphinx8.1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution/solution/_linked_duplicate_label.sphinx8.1.xml -------------------------------------------------------------------------------- /tests/test_solution/solution/_linked_duplicate_label.sphinx8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution/solution/_linked_duplicate_label.sphinx8.xml -------------------------------------------------------------------------------- /tests/test_solution/solution/_linked_enum.sphinx6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution/solution/_linked_enum.sphinx6.xml -------------------------------------------------------------------------------- /tests/test_solution/solution/_linked_enum.sphinx7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution/solution/_linked_enum.sphinx7.xml -------------------------------------------------------------------------------- /tests/test_solution/solution/_linked_enum.sphinx8.1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution/solution/_linked_enum.sphinx8.1.xml -------------------------------------------------------------------------------- /tests/test_solution/solution/_linked_enum.sphinx8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution/solution/_linked_enum.sphinx8.xml -------------------------------------------------------------------------------- /tests/test_solution/solution/_linked_enum_class.sphinx6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution/solution/_linked_enum_class.sphinx6.xml -------------------------------------------------------------------------------- /tests/test_solution/solution/_linked_enum_class.sphinx7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution/solution/_linked_enum_class.sphinx7.xml -------------------------------------------------------------------------------- /tests/test_solution/solution/_linked_enum_class.sphinx8.1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution/solution/_linked_enum_class.sphinx8.1.xml -------------------------------------------------------------------------------- /tests/test_solution/solution/_linked_enum_class.sphinx8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution/solution/_linked_enum_class.sphinx8.xml -------------------------------------------------------------------------------- /tests/test_solution/solution/_linked_missing_arg.sphinx6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution/solution/_linked_missing_arg.sphinx6.xml -------------------------------------------------------------------------------- /tests/test_solution/solution/_linked_missing_arg.sphinx7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution/solution/_linked_missing_arg.sphinx7.xml -------------------------------------------------------------------------------- /tests/test_solution/solution/_linked_missing_arg.sphinx8.1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution/solution/_linked_missing_arg.sphinx8.1.xml -------------------------------------------------------------------------------- /tests/test_solution/solution/_linked_missing_arg.sphinx8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution/solution/_linked_missing_arg.sphinx8.xml -------------------------------------------------------------------------------- /tests/test_solution/solution/_linked_unenum_mathtitle.sphinx6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution/solution/_linked_unenum_mathtitle.sphinx6.xml -------------------------------------------------------------------------------- /tests/test_solution/solution/_linked_unenum_mathtitle.sphinx7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution/solution/_linked_unenum_mathtitle.sphinx7.xml -------------------------------------------------------------------------------- /tests/test_solution/solution/_linked_unenum_mathtitle.sphinx8.1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution/solution/_linked_unenum_mathtitle.sphinx8.1.xml -------------------------------------------------------------------------------- /tests/test_solution/solution/_linked_unenum_mathtitle.sphinx8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution/solution/_linked_unenum_mathtitle.sphinx8.xml -------------------------------------------------------------------------------- /tests/test_solution/solution/_linked_unenum_mathtitle2.sphinx6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution/solution/_linked_unenum_mathtitle2.sphinx6.xml -------------------------------------------------------------------------------- /tests/test_solution/solution/_linked_unenum_mathtitle2.sphinx7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution/solution/_linked_unenum_mathtitle2.sphinx7.xml -------------------------------------------------------------------------------- /tests/test_solution/solution/_linked_unenum_mathtitle2.sphinx8.1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution/solution/_linked_unenum_mathtitle2.sphinx8.1.xml -------------------------------------------------------------------------------- /tests/test_solution/solution/_linked_unenum_mathtitle2.sphinx8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution/solution/_linked_unenum_mathtitle2.sphinx8.xml -------------------------------------------------------------------------------- /tests/test_solution/solution/_linked_unenum_notitle.sphinx6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution/solution/_linked_unenum_notitle.sphinx6.xml -------------------------------------------------------------------------------- /tests/test_solution/solution/_linked_unenum_notitle.sphinx7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution/solution/_linked_unenum_notitle.sphinx7.xml -------------------------------------------------------------------------------- /tests/test_solution/solution/_linked_unenum_notitle.sphinx8.1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution/solution/_linked_unenum_notitle.sphinx8.1.xml -------------------------------------------------------------------------------- /tests/test_solution/solution/_linked_unenum_notitle.sphinx8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution/solution/_linked_unenum_notitle.sphinx8.xml -------------------------------------------------------------------------------- /tests/test_solution/solution/_linked_unenum_title.sphinx6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution/solution/_linked_unenum_title.sphinx6.xml -------------------------------------------------------------------------------- /tests/test_solution/solution/_linked_unenum_title.sphinx7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution/solution/_linked_unenum_title.sphinx7.xml -------------------------------------------------------------------------------- /tests/test_solution/solution/_linked_unenum_title.sphinx8.1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution/solution/_linked_unenum_title.sphinx8.1.xml -------------------------------------------------------------------------------- /tests/test_solution/solution/_linked_unenum_title.sphinx8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution/solution/_linked_unenum_title.sphinx8.xml -------------------------------------------------------------------------------- /tests/test_solution/solution/_linked_wrong_targetlabel.sphinx6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution/solution/_linked_wrong_targetlabel.sphinx6.xml -------------------------------------------------------------------------------- /tests/test_solution/solution/_linked_wrong_targetlabel.sphinx7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution/solution/_linked_wrong_targetlabel.sphinx7.xml -------------------------------------------------------------------------------- /tests/test_solution/solution/_linked_wrong_targetlabel.sphinx8.1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution/solution/_linked_wrong_targetlabel.sphinx8.1.xml -------------------------------------------------------------------------------- /tests/test_solution/solution/_linked_wrong_targetlabel.sphinx8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution/solution/_linked_wrong_targetlabel.sphinx8.xml -------------------------------------------------------------------------------- /tests/test_solution_references.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution_references.py -------------------------------------------------------------------------------- /tests/test_solution_references/_linked_ref_enum.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution_references/_linked_ref_enum.html -------------------------------------------------------------------------------- /tests/test_solution_references/_linked_ref_enum.sphinx6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution_references/_linked_ref_enum.sphinx6.html -------------------------------------------------------------------------------- /tests/test_solution_references/_linked_ref_enum.sphinx7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution_references/_linked_ref_enum.sphinx7.html -------------------------------------------------------------------------------- /tests/test_solution_references/_linked_ref_enum.sphinx8.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution_references/_linked_ref_enum.sphinx8.1.html -------------------------------------------------------------------------------- /tests/test_solution_references/_linked_ref_enum.sphinx8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution_references/_linked_ref_enum.sphinx8.html -------------------------------------------------------------------------------- /tests/test_solution_references/_linked_ref_enum.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution_references/_linked_ref_enum.xml -------------------------------------------------------------------------------- /tests/test_solution_references/_linked_ref_unenum_mathtitle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution_references/_linked_ref_unenum_mathtitle.html -------------------------------------------------------------------------------- /tests/test_solution_references/_linked_ref_unenum_mathtitle.sphinx6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution_references/_linked_ref_unenum_mathtitle.sphinx6.html -------------------------------------------------------------------------------- /tests/test_solution_references/_linked_ref_unenum_mathtitle.sphinx7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution_references/_linked_ref_unenum_mathtitle.sphinx7.html -------------------------------------------------------------------------------- /tests/test_solution_references/_linked_ref_unenum_mathtitle.sphinx8.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution_references/_linked_ref_unenum_mathtitle.sphinx8.1.html -------------------------------------------------------------------------------- /tests/test_solution_references/_linked_ref_unenum_mathtitle.sphinx8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution_references/_linked_ref_unenum_mathtitle.sphinx8.html -------------------------------------------------------------------------------- /tests/test_solution_references/_linked_ref_unenum_mathtitle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution_references/_linked_ref_unenum_mathtitle.xml -------------------------------------------------------------------------------- /tests/test_solution_references/_linked_ref_unenum_mathtitle2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution_references/_linked_ref_unenum_mathtitle2.html -------------------------------------------------------------------------------- /tests/test_solution_references/_linked_ref_unenum_mathtitle2.sphinx6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution_references/_linked_ref_unenum_mathtitle2.sphinx6.html -------------------------------------------------------------------------------- /tests/test_solution_references/_linked_ref_unenum_mathtitle2.sphinx7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution_references/_linked_ref_unenum_mathtitle2.sphinx7.html -------------------------------------------------------------------------------- /tests/test_solution_references/_linked_ref_unenum_mathtitle2.sphinx8.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution_references/_linked_ref_unenum_mathtitle2.sphinx8.1.html -------------------------------------------------------------------------------- /tests/test_solution_references/_linked_ref_unenum_mathtitle2.sphinx8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution_references/_linked_ref_unenum_mathtitle2.sphinx8.html -------------------------------------------------------------------------------- /tests/test_solution_references/_linked_ref_unenum_mathtitle2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution_references/_linked_ref_unenum_mathtitle2.xml -------------------------------------------------------------------------------- /tests/test_solution_references/_linked_ref_unenum_notitle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution_references/_linked_ref_unenum_notitle.html -------------------------------------------------------------------------------- /tests/test_solution_references/_linked_ref_unenum_notitle.sphinx6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution_references/_linked_ref_unenum_notitle.sphinx6.html -------------------------------------------------------------------------------- /tests/test_solution_references/_linked_ref_unenum_notitle.sphinx7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution_references/_linked_ref_unenum_notitle.sphinx7.html -------------------------------------------------------------------------------- /tests/test_solution_references/_linked_ref_unenum_notitle.sphinx8.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution_references/_linked_ref_unenum_notitle.sphinx8.1.html -------------------------------------------------------------------------------- /tests/test_solution_references/_linked_ref_unenum_notitle.sphinx8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution_references/_linked_ref_unenum_notitle.sphinx8.html -------------------------------------------------------------------------------- /tests/test_solution_references/_linked_ref_unenum_notitle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution_references/_linked_ref_unenum_notitle.xml -------------------------------------------------------------------------------- /tests/test_solution_references/_linked_ref_unenum_title.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution_references/_linked_ref_unenum_title.html -------------------------------------------------------------------------------- /tests/test_solution_references/_linked_ref_unenum_title.sphinx6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution_references/_linked_ref_unenum_title.sphinx6.html -------------------------------------------------------------------------------- /tests/test_solution_references/_linked_ref_unenum_title.sphinx7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution_references/_linked_ref_unenum_title.sphinx7.html -------------------------------------------------------------------------------- /tests/test_solution_references/_linked_ref_unenum_title.sphinx8.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution_references/_linked_ref_unenum_title.sphinx8.1.html -------------------------------------------------------------------------------- /tests/test_solution_references/_linked_ref_unenum_title.sphinx8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution_references/_linked_ref_unenum_title.sphinx8.html -------------------------------------------------------------------------------- /tests/test_solution_references/_linked_ref_unenum_title.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution_references/_linked_ref_unenum_title.xml -------------------------------------------------------------------------------- /tests/test_solution_references/_linked_ref_wronglabel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tests/test_solution_references/_linked_ref_wronglabel.xml -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/sphinx-exercise/HEAD/tox.ini --------------------------------------------------------------------------------