pyhtml2md 1.5.3__tar.gz → 1.6.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pyhtml2md might be problematic. Click here for more details.
- pyhtml2md-1.6.0/.clang-format +192 -0
- pyhtml2md-1.6.0/.github/CODEOWNERS +2 -0
- pyhtml2md-1.6.0/.github/ISSUE_TEMPLATE/bug_report.md +28 -0
- pyhtml2md-1.6.0/.github/ISSUE_TEMPLATE/feature_request.md +20 -0
- pyhtml2md-1.6.0/.github/ISSUE_TEMPLATE/question.md +10 -0
- pyhtml2md-1.6.0/.github/dependabot.yml +18 -0
- pyhtml2md-1.6.0/.github/workflows/build.yml +29 -0
- pyhtml2md-1.6.0/.github/workflows/release.yml +82 -0
- pyhtml2md-1.6.0/.github/workflows/website.yml +31 -0
- pyhtml2md-1.6.0/.github/workflows/wheels.yml +71 -0
- pyhtml2md-1.6.0/.gitignore +13 -0
- pyhtml2md-1.6.0/.gitmodules +6 -0
- pyhtml2md-1.6.0/CHANGELOG.md +133 -0
- {pyhtml2md-1.5.3 → pyhtml2md-1.6.0}/CMakeLists.txt +4 -1
- pyhtml2md-1.6.0/CONTRIBUTING.md +3 -0
- {pyhtml2md-1.5.3/pyhtml2md.egg-info → pyhtml2md-1.6.0}/PKG-INFO +19 -6
- pyhtml2md-1.6.0/SECURITY.md +13 -0
- pyhtml2md-1.6.0/cli/main.cpp +178 -0
- pyhtml2md-1.6.0/cmake/Doc.cmake +13 -0
- pyhtml2md-1.6.0/cmake/Packaging.cmake +85 -0
- pyhtml2md-1.6.0/docs/Doxyfile +48 -0
- pyhtml2md-1.6.0/docs/doxygen-awesome-css/.gitignore +3 -0
- pyhtml2md-1.6.0/docs/doxygen-awesome-css/LICENSE +21 -0
- pyhtml2md-1.6.0/docs/doxygen-awesome-css/doxygen-awesome-darkmode-toggle.js +157 -0
- pyhtml2md-1.6.0/docs/doxygen-awesome-css/doxygen-awesome-fragment-copy-button.js +85 -0
- pyhtml2md-1.6.0/docs/doxygen-awesome-css/doxygen-awesome-interactive-toc.js +81 -0
- pyhtml2md-1.6.0/docs/doxygen-awesome-css/doxygen-awesome-paragraph-link.js +51 -0
- pyhtml2md-1.6.0/docs/doxygen-awesome-css/doxygen-awesome-sidebar-only-darkmode-toggle.css +40 -0
- pyhtml2md-1.6.0/docs/doxygen-awesome-css/doxygen-awesome-sidebar-only.css +115 -0
- pyhtml2md-1.6.0/docs/doxygen-awesome-css/doxygen-awesome.css +2406 -0
- pyhtml2md-1.6.0/docs/doxygen-awesome-css/doxygen-custom/custom.css +101 -0
- pyhtml2md-1.6.0/docs/doxygen-awesome-css/doxygen-custom/header.html +100 -0
- pyhtml2md-1.6.0/docs/index.md +98 -0
- pyhtml2md-1.6.0/html2md.pc.in +12 -0
- pyhtml2md-1.6.0/html2mdConfig.cmake.in +7 -0
- {pyhtml2md-1.5.3 → pyhtml2md-1.6.0}/include/html2md.h +17 -3
- pyhtml2md-1.6.0/js/bindings.cpp +21 -0
- pyhtml2md-1.6.0/pyproject.toml +81 -0
- pyhtml2md-1.6.0/python/pybind11/.appveyor.yml +35 -0
- pyhtml2md-1.6.0/python/pybind11/.clang-format +38 -0
- pyhtml2md-1.6.0/python/pybind11/.clang-tidy +77 -0
- pyhtml2md-1.6.0/python/pybind11/.cmake-format.yaml +73 -0
- pyhtml2md-1.6.0/python/pybind11/.codespell-ignore-lines +24 -0
- pyhtml2md-1.6.0/python/pybind11/.git +1 -0
- pyhtml2md-1.6.0/python/pybind11/.gitattributes +1 -0
- pyhtml2md-1.6.0/python/pybind11/.github/CODEOWNERS +9 -0
- pyhtml2md-1.6.0/python/pybind11/.github/CONTRIBUTING.md +388 -0
- pyhtml2md-1.6.0/python/pybind11/.github/ISSUE_TEMPLATE/bug-report.yml +61 -0
- pyhtml2md-1.6.0/python/pybind11/.github/ISSUE_TEMPLATE/config.yml +8 -0
- pyhtml2md-1.6.0/python/pybind11/.github/dependabot.yml +15 -0
- pyhtml2md-1.6.0/python/pybind11/.github/labeler.yml +8 -0
- pyhtml2md-1.6.0/python/pybind11/.github/labeler_merged.yml +3 -0
- pyhtml2md-1.6.0/python/pybind11/.github/matchers/pylint.json +32 -0
- pyhtml2md-1.6.0/python/pybind11/.github/pull_request_template.md +19 -0
- pyhtml2md-1.6.0/python/pybind11/.github/workflows/ci.yml +1202 -0
- pyhtml2md-1.6.0/python/pybind11/.github/workflows/configure.yml +92 -0
- pyhtml2md-1.6.0/python/pybind11/.github/workflows/format.yml +60 -0
- pyhtml2md-1.6.0/python/pybind11/.github/workflows/labeler.yml +25 -0
- pyhtml2md-1.6.0/python/pybind11/.github/workflows/pip.yml +114 -0
- pyhtml2md-1.6.0/python/pybind11/.github/workflows/upstream.yml +116 -0
- pyhtml2md-1.6.0/python/pybind11/.gitignore +46 -0
- pyhtml2md-1.6.0/python/pybind11/.pre-commit-config.yaml +155 -0
- pyhtml2md-1.6.0/python/pybind11/.readthedocs.yml +20 -0
- {pyhtml2md-1.5.3 → pyhtml2md-1.6.0}/python/pybind11/CMakeLists.txt +58 -7
- pyhtml2md-1.6.0/python/pybind11/MANIFEST.in +6 -0
- pyhtml2md-1.6.0/python/pybind11/README.rst +181 -0
- pyhtml2md-1.6.0/python/pybind11/SECURITY.md +13 -0
- pyhtml2md-1.6.0/python/pybind11/docs/Doxyfile +21 -0
- pyhtml2md-1.6.0/python/pybind11/docs/Makefile +192 -0
- pyhtml2md-1.6.0/python/pybind11/docs/_static/css/custom.css +3 -0
- pyhtml2md-1.6.0/python/pybind11/docs/advanced/cast/chrono.rst +81 -0
- pyhtml2md-1.6.0/python/pybind11/docs/advanced/cast/custom.rst +93 -0
- pyhtml2md-1.6.0/python/pybind11/docs/advanced/cast/eigen.rst +310 -0
- pyhtml2md-1.6.0/python/pybind11/docs/advanced/cast/functional.rst +109 -0
- pyhtml2md-1.6.0/python/pybind11/docs/advanced/cast/index.rst +43 -0
- pyhtml2md-1.6.0/python/pybind11/docs/advanced/cast/overview.rst +170 -0
- pyhtml2md-1.6.0/python/pybind11/docs/advanced/cast/stl.rst +249 -0
- pyhtml2md-1.6.0/python/pybind11/docs/advanced/cast/strings.rst +296 -0
- pyhtml2md-1.6.0/python/pybind11/docs/advanced/classes.rst +1335 -0
- pyhtml2md-1.6.0/python/pybind11/docs/advanced/embedding.rst +262 -0
- pyhtml2md-1.6.0/python/pybind11/docs/advanced/exceptions.rst +401 -0
- pyhtml2md-1.6.0/python/pybind11/docs/advanced/functions.rst +614 -0
- pyhtml2md-1.6.0/python/pybind11/docs/advanced/misc.rst +429 -0
- pyhtml2md-1.6.0/python/pybind11/docs/advanced/pycpp/index.rst +13 -0
- pyhtml2md-1.6.0/python/pybind11/docs/advanced/pycpp/numpy.rst +455 -0
- pyhtml2md-1.6.0/python/pybind11/docs/advanced/pycpp/object.rst +286 -0
- pyhtml2md-1.6.0/python/pybind11/docs/advanced/pycpp/utilities.rst +155 -0
- pyhtml2md-1.6.0/python/pybind11/docs/advanced/smart_ptrs.rst +174 -0
- pyhtml2md-1.6.0/python/pybind11/docs/basics.rst +307 -0
- pyhtml2md-1.6.0/python/pybind11/docs/benchmark.py +87 -0
- pyhtml2md-1.6.0/python/pybind11/docs/benchmark.rst +95 -0
- pyhtml2md-1.6.0/python/pybind11/docs/changelog.rst +3006 -0
- pyhtml2md-1.6.0/python/pybind11/docs/classes.rst +555 -0
- pyhtml2md-1.6.0/python/pybind11/docs/cmake/index.rst +8 -0
- pyhtml2md-1.6.0/python/pybind11/docs/compiling.rst +649 -0
- pyhtml2md-1.6.0/python/pybind11/docs/conf.py +368 -0
- pyhtml2md-1.6.0/python/pybind11/docs/faq.rst +308 -0
- pyhtml2md-1.6.0/python/pybind11/docs/index.rst +48 -0
- pyhtml2md-1.6.0/python/pybind11/docs/installing.rst +105 -0
- pyhtml2md-1.6.0/python/pybind11/docs/limitations.rst +72 -0
- pyhtml2md-1.6.0/python/pybind11/docs/pybind11-logo.png +0 -0
- pyhtml2md-1.6.0/python/pybind11/docs/pybind11_vs_boost_python1.png +0 -0
- pyhtml2md-1.6.0/python/pybind11/docs/pybind11_vs_boost_python1.svg +427 -0
- pyhtml2md-1.6.0/python/pybind11/docs/pybind11_vs_boost_python2.png +0 -0
- pyhtml2md-1.6.0/python/pybind11/docs/pybind11_vs_boost_python2.svg +427 -0
- pyhtml2md-1.6.0/python/pybind11/docs/reference.rst +130 -0
- pyhtml2md-1.6.0/python/pybind11/docs/release.rst +143 -0
- pyhtml2md-1.6.0/python/pybind11/docs/requirements.txt +6 -0
- pyhtml2md-1.6.0/python/pybind11/docs/upgrade.rst +594 -0
- {pyhtml2md-1.5.3 → pyhtml2md-1.6.0}/python/pybind11/include/pybind11/buffer_info.h +14 -14
- {pyhtml2md-1.5.3 → pyhtml2md-1.6.0}/python/pybind11/include/pybind11/cast.h +142 -9
- {pyhtml2md-1.5.3 → pyhtml2md-1.6.0}/python/pybind11/include/pybind11/detail/class.h +18 -13
- {pyhtml2md-1.5.3 → pyhtml2md-1.6.0}/python/pybind11/include/pybind11/detail/common.h +22 -14
- {pyhtml2md-1.5.3 → pyhtml2md-1.6.0}/python/pybind11/include/pybind11/detail/descr.h +3 -2
- {pyhtml2md-1.5.3 → pyhtml2md-1.6.0}/python/pybind11/include/pybind11/detail/init.h +1 -1
- {pyhtml2md-1.5.3 → pyhtml2md-1.6.0}/python/pybind11/include/pybind11/detail/internals.h +20 -9
- {pyhtml2md-1.5.3 → pyhtml2md-1.6.0}/python/pybind11/include/pybind11/detail/type_caster_base.h +55 -14
- {pyhtml2md-1.5.3 → pyhtml2md-1.6.0}/python/pybind11/include/pybind11/eigen/tensor.h +3 -2
- {pyhtml2md-1.5.3 → pyhtml2md-1.6.0}/python/pybind11/include/pybind11/functional.h +2 -1
- {pyhtml2md-1.5.3 → pyhtml2md-1.6.0}/python/pybind11/include/pybind11/gil.h +9 -1
- pyhtml2md-1.6.0/python/pybind11/include/pybind11/gil_safe_call_once.h +91 -0
- {pyhtml2md-1.5.3 → pyhtml2md-1.6.0}/python/pybind11/include/pybind11/numpy.h +157 -22
- {pyhtml2md-1.5.3 → pyhtml2md-1.6.0}/python/pybind11/include/pybind11/pybind11.h +121 -48
- {pyhtml2md-1.5.3 → pyhtml2md-1.6.0}/python/pybind11/include/pybind11/pytypes.h +27 -5
- {pyhtml2md-1.5.3 → pyhtml2md-1.6.0}/python/pybind11/include/pybind11/stl.h +8 -7
- {pyhtml2md-1.5.3 → pyhtml2md-1.6.0}/python/pybind11/include/pybind11/stl_bind.h +29 -58
- pyhtml2md-1.6.0/python/pybind11/include/pybind11/typing.h +125 -0
- pyhtml2md-1.6.0/python/pybind11/noxfile.py +107 -0
- pyhtml2md-1.6.0/python/pybind11/pybind11/__init__.py +17 -0
- pyhtml2md-1.6.0/python/pybind11/pybind11/__main__.py +62 -0
- pyhtml2md-1.6.0/python/pybind11/pybind11/_version.py +12 -0
- pyhtml2md-1.6.0/python/pybind11/pybind11/commands.py +37 -0
- pyhtml2md-1.6.0/python/pybind11/pybind11/py.typed +0 -0
- pyhtml2md-1.6.0/python/pybind11/pybind11/setup_helpers.py +500 -0
- pyhtml2md-1.6.0/python/pybind11/pyproject.toml +95 -0
- pyhtml2md-1.6.0/python/pybind11/setup.cfg +43 -0
- pyhtml2md-1.6.0/python/pybind11/setup.py +150 -0
- pyhtml2md-1.6.0/python/pybind11/tests/CMakeLists.txt +589 -0
- pyhtml2md-1.6.0/python/pybind11/tests/conftest.py +222 -0
- pyhtml2md-1.6.0/python/pybind11/tests/constructor_stats.h +322 -0
- pyhtml2md-1.6.0/python/pybind11/tests/cross_module_gil_utils.cpp +108 -0
- pyhtml2md-1.6.0/python/pybind11/tests/cross_module_interleaved_error_already_set.cpp +51 -0
- pyhtml2md-1.6.0/python/pybind11/tests/eigen_tensor_avoid_stl_array.cpp +14 -0
- pyhtml2md-1.6.0/python/pybind11/tests/env.py +27 -0
- pyhtml2md-1.6.0/python/pybind11/tests/extra_python_package/pytest.ini +0 -0
- pyhtml2md-1.6.0/python/pybind11/tests/extra_python_package/test_files.py +293 -0
- pyhtml2md-1.6.0/python/pybind11/tests/extra_setuptools/pytest.ini +0 -0
- pyhtml2md-1.6.0/python/pybind11/tests/extra_setuptools/test_setuphelper.py +151 -0
- pyhtml2md-1.6.0/python/pybind11/tests/local_bindings.h +92 -0
- pyhtml2md-1.6.0/python/pybind11/tests/object.h +205 -0
- pyhtml2md-1.6.0/python/pybind11/tests/pybind11_cross_module_tests.cpp +149 -0
- pyhtml2md-1.6.0/python/pybind11/tests/pybind11_tests.cpp +129 -0
- pyhtml2md-1.6.0/python/pybind11/tests/pybind11_tests.h +85 -0
- pyhtml2md-1.6.0/python/pybind11/tests/pytest.ini +22 -0
- pyhtml2md-1.6.0/python/pybind11/tests/requirements.txt +15 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_async.cpp +25 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_async.py +24 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_buffers.cpp +259 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_buffers.py +228 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_builtin_casters.cpp +387 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_builtin_casters.py +528 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_call_policies.cpp +113 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_call_policies.py +247 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_callbacks.cpp +280 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_callbacks.py +225 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_chrono.cpp +81 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_chrono.py +205 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_class.cpp +656 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_class.py +499 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_cmake_build/CMakeLists.txt +80 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_cmake_build/embed.cpp +23 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_cmake_build/installed_embed/CMakeLists.txt +28 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_cmake_build/installed_function/CMakeLists.txt +39 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_cmake_build/installed_target/CMakeLists.txt +46 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_cmake_build/main.cpp +6 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_cmake_build/subdirectory_embed/CMakeLists.txt +47 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_cmake_build/subdirectory_function/CMakeLists.txt +41 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_cmake_build/subdirectory_target/CMakeLists.txt +47 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_cmake_build/test.py +8 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_const_name.cpp +55 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_const_name.py +29 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_constants_and_functions.cpp +158 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_constants_and_functions.py +56 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_copy_move.cpp +532 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_copy_move.py +132 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_custom_type_casters.cpp +217 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_custom_type_casters.py +122 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_custom_type_setup.cpp +41 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_custom_type_setup.py +48 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_docstring_options.cpp +129 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_docstring_options.py +64 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_eigen_matrix.cpp +443 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_eigen_matrix.py +814 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_eigen_tensor.cpp +18 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_eigen_tensor.inl +332 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_eigen_tensor.py +288 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_embed/CMakeLists.txt +47 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_embed/catch.cpp +43 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_embed/external_module.cpp +20 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_embed/test_interpreter.cpp +488 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_embed/test_interpreter.py +14 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_embed/test_trampoline.py +16 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_enum.cpp +133 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_enum.py +269 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_eval.cpp +118 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_eval.py +50 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_eval_call.py +4 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_exceptions.cpp +388 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_exceptions.h +13 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_exceptions.py +432 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_factory_constructors.cpp +430 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_factory_constructors.py +516 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_gil_scoped.cpp +144 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_gil_scoped.py +242 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_iostream.cpp +126 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_iostream.py +291 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_kwargs_and_defaults.cpp +322 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_kwargs_and_defaults.py +425 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_local_bindings.cpp +106 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_local_bindings.py +257 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_methods_and_attributes.cpp +492 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_methods_and_attributes.py +537 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_modules.cpp +125 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_modules.py +116 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_multiple_inheritance.cpp +341 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_multiple_inheritance.py +493 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_numpy_array.cpp +547 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_numpy_array.py +674 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_numpy_dtypes.cpp +639 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_numpy_dtypes.py +446 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_numpy_vectorize.cpp +107 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_numpy_vectorize.py +266 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_opaque_types.cpp +77 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_opaque_types.py +58 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_operator_overloading.cpp +281 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_operator_overloading.py +151 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_pickling.cpp +194 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_pickling.py +93 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_python_multiple_inheritance.cpp +45 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_python_multiple_inheritance.py +35 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_pytypes.cpp +846 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_pytypes.py +954 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_sequences_and_iterators.cpp +600 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_sequences_and_iterators.py +265 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_smart_ptr.cpp +473 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_smart_ptr.py +315 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_stl.cpp +549 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_stl.py +381 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_stl_binders.cpp +275 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_stl_binders.py +393 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_tagbased_polymorphic.cpp +147 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_tagbased_polymorphic.py +28 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_thread.cpp +66 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_thread.py +42 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_type_caster_pyobject_ptr.cpp +130 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_type_caster_pyobject_ptr.py +104 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_union.cpp +22 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_union.py +8 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_unnamed_namespace_a.cpp +38 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_unnamed_namespace_a.py +34 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_unnamed_namespace_b.cpp +13 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_unnamed_namespace_b.py +5 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_vector_unique_ptr_member.cpp +54 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_vector_unique_ptr_member.py +14 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_virtual_functions.cpp +592 -0
- pyhtml2md-1.6.0/python/pybind11/tests/test_virtual_functions.py +458 -0
- pyhtml2md-1.6.0/python/pybind11/tests/valgrind-numpy-scipy.supp +140 -0
- pyhtml2md-1.6.0/python/pybind11/tests/valgrind-python.supp +117 -0
- {pyhtml2md-1.5.3 → pyhtml2md-1.6.0}/python/pybind11/tools/FindPythonLibsNew.cmake +24 -1
- {pyhtml2md-1.5.3 → pyhtml2md-1.6.0}/python/pybind11/tools/make_changelog.py +29 -1
- {pyhtml2md-1.5.3 → pyhtml2md-1.6.0}/python/pybind11/tools/pybind11Common.cmake +37 -15
- {pyhtml2md-1.5.3 → pyhtml2md-1.6.0}/python/pybind11/tools/pybind11Config.cmake.in +4 -2
- {pyhtml2md-1.5.3 → pyhtml2md-1.6.0}/python/pybind11/tools/pybind11NewTools.cmake +77 -22
- {pyhtml2md-1.5.3 → pyhtml2md-1.6.0}/python/pybind11/tools/pybind11Tools.cmake +13 -7
- pyhtml2md-1.6.0/scripts/clang-format.sh +3 -0
- {pyhtml2md-1.5.3 → pyhtml2md-1.6.0}/src/html2md.cpp +11 -14
- {pyhtml2md-1.5.3 → pyhtml2md-1.6.0}/src/table.cpp +4 -0
- pyhtml2md-1.6.0/tests/CMakeLists.txt +44 -0
- pyhtml2md-1.6.0/tests/README.md +9 -0
- pyhtml2md-1.6.0/tests/blockquote.md +52 -0
- pyhtml2md-1.6.0/tests/breaks.md +18 -0
- pyhtml2md-1.6.0/tests/code.md +51 -0
- pyhtml2md-1.6.0/tests/comment.html +12 -0
- pyhtml2md-1.6.0/tests/escaping.md +15 -0
- pyhtml2md-1.6.0/tests/formating.md +28 -0
- pyhtml2md-1.6.0/tests/links.md +45 -0
- pyhtml2md-1.6.0/tests/lists.md +13 -0
- pyhtml2md-1.6.0/tests/main.cpp +240 -0
- pyhtml2md-1.6.0/tests/md4c/.git +1 -0
- pyhtml2md-1.6.0/tests/md4c/.gitignore +79 -0
- pyhtml2md-1.6.0/tests/md4c/.travis.yml +36 -0
- pyhtml2md-1.6.0/tests/md4c/CHANGELOG.md +442 -0
- pyhtml2md-1.6.0/tests/md4c/CMakeLists.txt +59 -0
- pyhtml2md-1.6.0/tests/md4c/LICENSE.md +22 -0
- pyhtml2md-1.6.0/tests/md4c/README.md +301 -0
- pyhtml2md-1.6.0/tests/md4c/appveyor.yml +29 -0
- pyhtml2md-1.6.0/tests/md4c/codecov.yml +4 -0
- pyhtml2md-1.6.0/tests/md4c/md2html/CMakeLists.txt +22 -0
- pyhtml2md-1.6.0/tests/md4c/md2html/cmdline.c +205 -0
- pyhtml2md-1.6.0/tests/md4c/md2html/cmdline.h +153 -0
- pyhtml2md-1.6.0/tests/md4c/md2html/md2html.1 +113 -0
- pyhtml2md-1.6.0/tests/md4c/md2html/md2html.c +417 -0
- pyhtml2md-1.6.0/tests/md4c/scripts/build_folding_map.py +120 -0
- pyhtml2md-1.6.0/tests/md4c/scripts/build_punct_map.py +66 -0
- pyhtml2md-1.6.0/tests/md4c/scripts/build_symbol_map.py +66 -0
- pyhtml2md-1.6.0/tests/md4c/scripts/build_whitespace_map.py +66 -0
- pyhtml2md-1.6.0/tests/md4c/scripts/coverity.sh +70 -0
- pyhtml2md-1.6.0/tests/md4c/scripts/run-tests.sh +91 -0
- pyhtml2md-1.6.0/tests/md4c/scripts/unicode/CaseFolding.txt +1584 -0
- pyhtml2md-1.6.0/tests/md4c/scripts/unicode/DerivedGeneralCategory.txt +4100 -0
- pyhtml2md-1.6.0/tests/md4c/src/CMakeLists.txt +56 -0
- pyhtml2md-1.6.0/tests/md4c/src/entity.c +2190 -0
- pyhtml2md-1.6.0/tests/md4c/src/entity.h +42 -0
- pyhtml2md-1.6.0/tests/md4c/src/md4c-html.c +590 -0
- pyhtml2md-1.6.0/tests/md4c/src/md4c-html.h +71 -0
- pyhtml2md-1.6.0/tests/md4c/src/md4c-html.pc.in +13 -0
- pyhtml2md-1.6.0/tests/md4c/src/md4c.c +7240 -0
- pyhtml2md-1.6.0/tests/md4c/src/md4c.h +430 -0
- pyhtml2md-1.6.0/tests/md4c/src/md4c.pc.in +13 -0
- pyhtml2md-1.6.0/tests/md4c/test/LICENSE +64 -0
- pyhtml2md-1.6.0/tests/md4c/test/cmark.py +40 -0
- pyhtml2md-1.6.0/tests/md4c/test/coverage.txt +522 -0
- pyhtml2md-1.6.0/tests/md4c/test/fuzz-input/commonmark.md +40 -0
- pyhtml2md-1.6.0/tests/md4c/test/fuzz-input/gfm.md +10 -0
- pyhtml2md-1.6.0/tests/md4c/test/fuzz-input/latex-math.md +1 -0
- pyhtml2md-1.6.0/tests/md4c/test/fuzz-input/wiki.md +1 -0
- pyhtml2md-1.6.0/tests/md4c/test/fuzzers/fuzz-mdhtml.c +35 -0
- pyhtml2md-1.6.0/tests/md4c/test/heading-auto-identifier.txt +163 -0
- pyhtml2md-1.6.0/tests/md4c/test/latex-math.txt +39 -0
- pyhtml2md-1.6.0/tests/md4c/test/normalize.py +194 -0
- pyhtml2md-1.6.0/tests/md4c/test/pathological_auto_ident_tests.py +63 -0
- pyhtml2md-1.6.0/tests/md4c/test/pathological_tests.py +128 -0
- pyhtml2md-1.6.0/tests/md4c/test/permissive-email-autolinks.txt +50 -0
- pyhtml2md-1.6.0/tests/md4c/test/permissive-url-autolinks.txt +99 -0
- pyhtml2md-1.6.0/tests/md4c/test/permissive-www-autolinks.txt +107 -0
- pyhtml2md-1.6.0/tests/md4c/test/spec.txt +9756 -0
- pyhtml2md-1.6.0/tests/md4c/test/spec_tests.py +144 -0
- pyhtml2md-1.6.0/tests/md4c/test/strikethrough.txt +75 -0
- pyhtml2md-1.6.0/tests/md4c/test/tables.txt +357 -0
- pyhtml2md-1.6.0/tests/md4c/test/tasklists.txt +117 -0
- pyhtml2md-1.6.0/tests/md4c/test/toc-mark.txt +85 -0
- pyhtml2md-1.6.0/tests/md4c/test/toc.txt +104 -0
- pyhtml2md-1.6.0/tests/md4c/test/underline.txt +39 -0
- pyhtml2md-1.6.0/tests/md4c/test/wiki-links.txt +232 -0
- pyhtml2md-1.6.0/tests/tables.md +30 -0
- pyhtml2md-1.5.3/PKG-INFO +0 -122
- pyhtml2md-1.5.3/pyhtml2md.egg-info/SOURCES.txt +0 -70
- pyhtml2md-1.5.3/pyhtml2md.egg-info/dependency_links.txt +0 -1
- pyhtml2md-1.5.3/pyhtml2md.egg-info/not-zip-safe +0 -1
- pyhtml2md-1.5.3/pyhtml2md.egg-info/requires.txt +0 -3
- pyhtml2md-1.5.3/pyhtml2md.egg-info/top_level.txt +0 -1
- pyhtml2md-1.5.3/pyproject.toml +0 -39
- pyhtml2md-1.5.3/setup.cfg +0 -4
- pyhtml2md-1.5.3/setup.py +0 -145
- {pyhtml2md-1.5.3 → pyhtml2md-1.6.0}/COPYING +0 -0
- {pyhtml2md-1.5.3 → pyhtml2md-1.6.0}/MANIFEST.in +0 -0
- {pyhtml2md-1.5.3 → pyhtml2md-1.6.0}/README.md +0 -0
- {pyhtml2md-1.5.3 → pyhtml2md-1.6.0}/include/table.h +0 -0
- {pyhtml2md-1.5.3 → pyhtml2md-1.6.0}/python/README.md +0 -0
- {pyhtml2md-1.5.3 → pyhtml2md-1.6.0}/python/bindings.cpp +0 -0
- {pyhtml2md-1.5.3 → pyhtml2md-1.6.0}/python/pybind11/LICENSE +0 -0
- {pyhtml2md-1.5.3 → pyhtml2md-1.6.0}/python/pybind11/include/pybind11/attr.h +0 -0
- {pyhtml2md-1.5.3 → pyhtml2md-1.6.0}/python/pybind11/include/pybind11/chrono.h +0 -0
- {pyhtml2md-1.5.3 → pyhtml2md-1.6.0}/python/pybind11/include/pybind11/common.h +0 -0
- {pyhtml2md-1.5.3 → pyhtml2md-1.6.0}/python/pybind11/include/pybind11/complex.h +0 -0
- {pyhtml2md-1.5.3 → pyhtml2md-1.6.0}/python/pybind11/include/pybind11/detail/typeid.h +0 -0
- {pyhtml2md-1.5.3 → pyhtml2md-1.6.0}/python/pybind11/include/pybind11/eigen/common.h +0 -0
- {pyhtml2md-1.5.3 → pyhtml2md-1.6.0}/python/pybind11/include/pybind11/eigen/matrix.h +0 -0
- {pyhtml2md-1.5.3 → pyhtml2md-1.6.0}/python/pybind11/include/pybind11/eigen.h +0 -0
- {pyhtml2md-1.5.3 → pyhtml2md-1.6.0}/python/pybind11/include/pybind11/embed.h +0 -0
- {pyhtml2md-1.5.3 → pyhtml2md-1.6.0}/python/pybind11/include/pybind11/eval.h +0 -0
- {pyhtml2md-1.5.3 → pyhtml2md-1.6.0}/python/pybind11/include/pybind11/iostream.h +0 -0
- {pyhtml2md-1.5.3 → pyhtml2md-1.6.0}/python/pybind11/include/pybind11/operators.h +0 -0
- {pyhtml2md-1.5.3 → pyhtml2md-1.6.0}/python/pybind11/include/pybind11/options.h +0 -0
- {pyhtml2md-1.5.3 → pyhtml2md-1.6.0}/python/pybind11/include/pybind11/stl/filesystem.h +0 -0
- {pyhtml2md-1.5.3 → pyhtml2md-1.6.0}/python/pybind11/include/pybind11/type_caster_pyobject_ptr.h +0 -0
- {pyhtml2md-1.5.3 → pyhtml2md-1.6.0}/python/pybind11/tools/FindCatch.cmake +0 -0
- {pyhtml2md-1.5.3 → pyhtml2md-1.6.0}/python/pybind11/tools/FindEigen3.cmake +0 -0
- {pyhtml2md-1.5.3 → pyhtml2md-1.6.0}/python/pybind11/tools/JoinPaths.cmake +0 -0
- {pyhtml2md-1.5.3 → pyhtml2md-1.6.0}/python/pybind11/tools/check-style.sh +0 -0
- {pyhtml2md-1.5.3 → pyhtml2md-1.6.0}/python/pybind11/tools/cmake_uninstall.cmake.in +0 -0
- {pyhtml2md-1.5.3 → pyhtml2md-1.6.0}/python/pybind11/tools/codespell_ignore_lines_from_errors.py +0 -0
- {pyhtml2md-1.5.3 → pyhtml2md-1.6.0}/python/pybind11/tools/libsize.py +0 -0
- {pyhtml2md-1.5.3 → pyhtml2md-1.6.0}/python/pybind11/tools/pybind11.pc.in +0 -0
- {pyhtml2md-1.5.3 → pyhtml2md-1.6.0}/python/pybind11/tools/pyproject.toml +0 -0
- {pyhtml2md-1.5.3 → pyhtml2md-1.6.0}/python/pybind11/tools/setup_global.py.in +0 -0
- {pyhtml2md-1.5.3 → pyhtml2md-1.6.0}/python/pybind11/tools/setup_main.py.in +0 -0
- {pyhtml2md-1.5.3 → pyhtml2md-1.6.0}/tests/test_advanced.py +0 -0
- {pyhtml2md-1.5.3 → pyhtml2md-1.6.0}/tests/test_basic.py +0 -0
|
@@ -0,0 +1,192 @@
|
|
|
1
|
+
---
|
|
2
|
+
Language: Cpp
|
|
3
|
+
# BasedOnStyle: LLVM
|
|
4
|
+
AccessModifierOffset: -2
|
|
5
|
+
AlignAfterOpenBracket: Align
|
|
6
|
+
AlignArrayOfStructures: None
|
|
7
|
+
AlignConsecutiveMacros: None
|
|
8
|
+
AlignConsecutiveAssignments: None
|
|
9
|
+
AlignConsecutiveBitFields: None
|
|
10
|
+
AlignConsecutiveDeclarations: None
|
|
11
|
+
AlignEscapedNewlines: Right
|
|
12
|
+
AlignOperands: Align
|
|
13
|
+
AlignTrailingComments: true
|
|
14
|
+
AllowAllArgumentsOnNextLine: true
|
|
15
|
+
AllowAllParametersOfDeclarationOnNextLine: true
|
|
16
|
+
AllowShortEnumsOnASingleLine: true
|
|
17
|
+
AllowShortBlocksOnASingleLine: Never
|
|
18
|
+
AllowShortCaseLabelsOnASingleLine: false
|
|
19
|
+
AllowShortFunctionsOnASingleLine: All
|
|
20
|
+
AllowShortLambdasOnASingleLine: All
|
|
21
|
+
AllowShortIfStatementsOnASingleLine: Never
|
|
22
|
+
AllowShortLoopsOnASingleLine: false
|
|
23
|
+
AlwaysBreakAfterDefinitionReturnType: None
|
|
24
|
+
AlwaysBreakAfterReturnType: None
|
|
25
|
+
AlwaysBreakBeforeMultilineStrings: false
|
|
26
|
+
AlwaysBreakTemplateDeclarations: MultiLine
|
|
27
|
+
AttributeMacros:
|
|
28
|
+
- __capability
|
|
29
|
+
BinPackArguments: true
|
|
30
|
+
BinPackParameters: true
|
|
31
|
+
BraceWrapping:
|
|
32
|
+
AfterCaseLabel: false
|
|
33
|
+
AfterClass: false
|
|
34
|
+
AfterControlStatement: Never
|
|
35
|
+
AfterEnum: false
|
|
36
|
+
AfterFunction: false
|
|
37
|
+
AfterNamespace: false
|
|
38
|
+
AfterObjCDeclaration: false
|
|
39
|
+
AfterStruct: false
|
|
40
|
+
AfterUnion: false
|
|
41
|
+
AfterExternBlock: false
|
|
42
|
+
BeforeCatch: false
|
|
43
|
+
BeforeElse: false
|
|
44
|
+
BeforeLambdaBody: false
|
|
45
|
+
BeforeWhile: false
|
|
46
|
+
IndentBraces: false
|
|
47
|
+
SplitEmptyFunction: true
|
|
48
|
+
SplitEmptyRecord: true
|
|
49
|
+
SplitEmptyNamespace: true
|
|
50
|
+
BreakBeforeBinaryOperators: None
|
|
51
|
+
BreakBeforeConceptDeclarations: true
|
|
52
|
+
BreakBeforeBraces: Attach
|
|
53
|
+
BreakBeforeInheritanceComma: false
|
|
54
|
+
BreakInheritanceList: BeforeColon
|
|
55
|
+
BreakBeforeTernaryOperators: true
|
|
56
|
+
BreakConstructorInitializersBeforeComma: false
|
|
57
|
+
BreakConstructorInitializers: BeforeColon
|
|
58
|
+
BreakAfterJavaFieldAnnotations: false
|
|
59
|
+
BreakStringLiterals: true
|
|
60
|
+
ColumnLimit: 80
|
|
61
|
+
CommentPragmas: '^ IWYU pragma:'
|
|
62
|
+
QualifierAlignment: Leave
|
|
63
|
+
CompactNamespaces: false
|
|
64
|
+
ConstructorInitializerIndentWidth: 4
|
|
65
|
+
ContinuationIndentWidth: 4
|
|
66
|
+
Cpp11BracedListStyle: true
|
|
67
|
+
DeriveLineEnding: true
|
|
68
|
+
DerivePointerAlignment: false
|
|
69
|
+
DisableFormat: false
|
|
70
|
+
EmptyLineAfterAccessModifier: Never
|
|
71
|
+
EmptyLineBeforeAccessModifier: LogicalBlock
|
|
72
|
+
ExperimentalAutoDetectBinPacking: false
|
|
73
|
+
PackConstructorInitializers: BinPack
|
|
74
|
+
BasedOnStyle: ''
|
|
75
|
+
ConstructorInitializerAllOnOneLineOrOnePerLine: false
|
|
76
|
+
AllowAllConstructorInitializersOnNextLine: true
|
|
77
|
+
FixNamespaceComments: true
|
|
78
|
+
ForEachMacros:
|
|
79
|
+
- foreach
|
|
80
|
+
- Q_FOREACH
|
|
81
|
+
- BOOST_FOREACH
|
|
82
|
+
IfMacros:
|
|
83
|
+
- KJ_IF_MAYBE
|
|
84
|
+
IncludeBlocks: Preserve
|
|
85
|
+
IncludeCategories:
|
|
86
|
+
- Regex: '^"(llvm|llvm-c|clang|clang-c)/'
|
|
87
|
+
Priority: 2
|
|
88
|
+
SortPriority: 0
|
|
89
|
+
CaseSensitive: false
|
|
90
|
+
- Regex: '^(<|"(gtest|gmock|isl|json)/)'
|
|
91
|
+
Priority: 3
|
|
92
|
+
SortPriority: 0
|
|
93
|
+
CaseSensitive: false
|
|
94
|
+
- Regex: '.*'
|
|
95
|
+
Priority: 1
|
|
96
|
+
SortPriority: 0
|
|
97
|
+
CaseSensitive: false
|
|
98
|
+
IncludeIsMainRegex: '(Test)?$'
|
|
99
|
+
IncludeIsMainSourceRegex: ''
|
|
100
|
+
IndentAccessModifiers: false
|
|
101
|
+
IndentCaseLabels: false
|
|
102
|
+
IndentCaseBlocks: false
|
|
103
|
+
IndentGotoLabels: true
|
|
104
|
+
IndentPPDirectives: None
|
|
105
|
+
IndentExternBlock: AfterExternBlock
|
|
106
|
+
IndentRequires: false
|
|
107
|
+
IndentWidth: 2
|
|
108
|
+
IndentWrappedFunctionNames: false
|
|
109
|
+
InsertTrailingCommas: None
|
|
110
|
+
JavaScriptQuotes: Leave
|
|
111
|
+
JavaScriptWrapImports: true
|
|
112
|
+
KeepEmptyLinesAtTheStartOfBlocks: true
|
|
113
|
+
LambdaBodyIndentation: Signature
|
|
114
|
+
MacroBlockBegin: ''
|
|
115
|
+
MacroBlockEnd: ''
|
|
116
|
+
MaxEmptyLinesToKeep: 1
|
|
117
|
+
NamespaceIndentation: None
|
|
118
|
+
ObjCBinPackProtocolList: Auto
|
|
119
|
+
ObjCBlockIndentWidth: 2
|
|
120
|
+
ObjCBreakBeforeNestedBlockParam: true
|
|
121
|
+
ObjCSpaceAfterProperty: false
|
|
122
|
+
ObjCSpaceBeforeProtocolList: true
|
|
123
|
+
PenaltyBreakAssignment: 2
|
|
124
|
+
PenaltyBreakBeforeFirstCallParameter: 19
|
|
125
|
+
PenaltyBreakComment: 300
|
|
126
|
+
PenaltyBreakFirstLessLess: 120
|
|
127
|
+
PenaltyBreakOpenParenthesis: 0
|
|
128
|
+
PenaltyBreakString: 1000
|
|
129
|
+
PenaltyBreakTemplateDeclaration: 10
|
|
130
|
+
PenaltyExcessCharacter: 1000000
|
|
131
|
+
PenaltyReturnTypeOnItsOwnLine: 60
|
|
132
|
+
PenaltyIndentedWhitespace: 0
|
|
133
|
+
PointerAlignment: Right
|
|
134
|
+
PPIndentWidth: -1
|
|
135
|
+
ReferenceAlignment: Pointer
|
|
136
|
+
ReflowComments: true
|
|
137
|
+
RemoveBracesLLVM: false
|
|
138
|
+
SeparateDefinitionBlocks: Leave
|
|
139
|
+
ShortNamespaceLines: 1
|
|
140
|
+
SortIncludes: CaseSensitive
|
|
141
|
+
SortJavaStaticImport: Before
|
|
142
|
+
SortUsingDeclarations: true
|
|
143
|
+
SpaceAfterCStyleCast: false
|
|
144
|
+
SpaceAfterLogicalNot: false
|
|
145
|
+
SpaceAfterTemplateKeyword: true
|
|
146
|
+
SpaceBeforeAssignmentOperators: true
|
|
147
|
+
SpaceBeforeCaseColon: false
|
|
148
|
+
SpaceBeforeCpp11BracedList: false
|
|
149
|
+
SpaceBeforeCtorInitializerColon: true
|
|
150
|
+
SpaceBeforeInheritanceColon: true
|
|
151
|
+
SpaceBeforeParens: ControlStatements
|
|
152
|
+
SpaceBeforeParensOptions:
|
|
153
|
+
AfterControlStatements: true
|
|
154
|
+
AfterForeachMacros: true
|
|
155
|
+
AfterFunctionDefinitionName: false
|
|
156
|
+
AfterFunctionDeclarationName: false
|
|
157
|
+
AfterIfMacros: true
|
|
158
|
+
AfterOverloadedOperator: false
|
|
159
|
+
BeforeNonEmptyParentheses: false
|
|
160
|
+
SpaceAroundPointerQualifiers: Default
|
|
161
|
+
SpaceBeforeRangeBasedForLoopColon: true
|
|
162
|
+
SpaceInEmptyBlock: false
|
|
163
|
+
SpaceInEmptyParentheses: false
|
|
164
|
+
SpacesBeforeTrailingComments: 1
|
|
165
|
+
SpacesInAngles: Never
|
|
166
|
+
SpacesInConditionalStatement: false
|
|
167
|
+
SpacesInContainerLiterals: true
|
|
168
|
+
SpacesInCStyleCastParentheses: false
|
|
169
|
+
SpacesInLineCommentPrefix:
|
|
170
|
+
Minimum: 1
|
|
171
|
+
Maximum: -1
|
|
172
|
+
SpacesInParentheses: false
|
|
173
|
+
SpacesInSquareBrackets: false
|
|
174
|
+
SpaceBeforeSquareBrackets: false
|
|
175
|
+
BitFieldColonSpacing: Both
|
|
176
|
+
Standard: Latest
|
|
177
|
+
StatementAttributeLikeMacros:
|
|
178
|
+
- Q_EMIT
|
|
179
|
+
StatementMacros:
|
|
180
|
+
- Q_UNUSED
|
|
181
|
+
- QT_REQUIRE_VERSION
|
|
182
|
+
TabWidth: 8
|
|
183
|
+
UseCRLF: false
|
|
184
|
+
UseTab: Never
|
|
185
|
+
WhitespaceSensitiveMacros:
|
|
186
|
+
- STRINGIZE
|
|
187
|
+
- PP_STRINGIZE
|
|
188
|
+
- BOOST_PP_STRINGIZE
|
|
189
|
+
- NS_SWIFT_NAME
|
|
190
|
+
- CF_SWIFT_NAME
|
|
191
|
+
...
|
|
192
|
+
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: Bug report
|
|
3
|
+
about: Create a report to help us improve
|
|
4
|
+
title: ''
|
|
5
|
+
labels: ''
|
|
6
|
+
assignees: ''
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
**Describe the bug**
|
|
11
|
+
A clear and concise description of what the bug is.
|
|
12
|
+
|
|
13
|
+
**To Reproduce**
|
|
14
|
+
Steps to reproduce the behavior:
|
|
15
|
+
1. Run '....'
|
|
16
|
+
2. See error
|
|
17
|
+
|
|
18
|
+
**Expected behavior**
|
|
19
|
+
A clear and concise description of what you expected to happen.
|
|
20
|
+
|
|
21
|
+
**Output of `dmesg | tail -n2`**
|
|
22
|
+
(for Linux and maybe mac)
|
|
23
|
+
|
|
24
|
+
**Desktop (please complete the following information):**
|
|
25
|
+
- OS: [e.g. Ubuntu 22.04]
|
|
26
|
+
|
|
27
|
+
**Additional context**
|
|
28
|
+
Add any other context about the problem here.
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: Feature request
|
|
3
|
+
about: Suggest an idea for this project
|
|
4
|
+
title: ''
|
|
5
|
+
labels: ''
|
|
6
|
+
assignees: ''
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
**Is your feature request related to a problem? Please describe.**
|
|
11
|
+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
|
|
12
|
+
|
|
13
|
+
**Describe the solution you'd like**
|
|
14
|
+
A clear and concise description of what you want to happen.
|
|
15
|
+
|
|
16
|
+
**Describe alternatives you've considered**
|
|
17
|
+
A clear and concise description of any alternative solutions or features you've considered.
|
|
18
|
+
|
|
19
|
+
**Additional context**
|
|
20
|
+
Add any other context or screenshots about the feature request here.
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# To get started with Dependabot version updates, you'll need to specify which
|
|
2
|
+
# package ecosystems to update and where the package manifests are located.
|
|
3
|
+
# Please see the documentation for all configuration options:
|
|
4
|
+
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
|
|
5
|
+
|
|
6
|
+
version: 2
|
|
7
|
+
updates:
|
|
8
|
+
# Maintain dependencies for GitHub Actions
|
|
9
|
+
- package-ecosystem: "github-actions"
|
|
10
|
+
directory: "/"
|
|
11
|
+
schedule:
|
|
12
|
+
interval: "weekly"
|
|
13
|
+
|
|
14
|
+
# Keep submodules up to date
|
|
15
|
+
- package-ecosystem: "gitsubmodule"
|
|
16
|
+
directory: "/"
|
|
17
|
+
schedule:
|
|
18
|
+
interval: "weekly"
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
name: 'Build'
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches:
|
|
6
|
+
- '*'
|
|
7
|
+
pull_request:
|
|
8
|
+
workflow_dispatch:
|
|
9
|
+
|
|
10
|
+
jobs:
|
|
11
|
+
build:
|
|
12
|
+
runs-on: ${{ matrix.os }}
|
|
13
|
+
strategy:
|
|
14
|
+
fail-fast: false
|
|
15
|
+
matrix:
|
|
16
|
+
os: [ubuntu-latest, macos-latest, windows-latest]
|
|
17
|
+
steps:
|
|
18
|
+
- name: Checkout
|
|
19
|
+
uses: actions/checkout@v4
|
|
20
|
+
|
|
21
|
+
#
|
|
22
|
+
# Build using CMake
|
|
23
|
+
#
|
|
24
|
+
- name: Build using CMake
|
|
25
|
+
run: |
|
|
26
|
+
mkdir build && cd build
|
|
27
|
+
cmake ..
|
|
28
|
+
cmake --build . -j8
|
|
29
|
+
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
name: Create release and update assets
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
tags:
|
|
6
|
+
- 'v*'
|
|
7
|
+
workflow_dispatch:
|
|
8
|
+
|
|
9
|
+
jobs:
|
|
10
|
+
build:
|
|
11
|
+
name: Build and upload release assetes
|
|
12
|
+
runs-on: ${{ matrix.os }}
|
|
13
|
+
strategy:
|
|
14
|
+
fail-fast: false
|
|
15
|
+
matrix:
|
|
16
|
+
include:
|
|
17
|
+
- os: ubuntu-20.04
|
|
18
|
+
files: |
|
|
19
|
+
build/packages/html2md*.deb
|
|
20
|
+
build/packages/html2md*.tar.gz
|
|
21
|
+
- os: ubuntu-22.04
|
|
22
|
+
files: |
|
|
23
|
+
build/packages/html2md*.deb
|
|
24
|
+
- os: windows-latest
|
|
25
|
+
files: |
|
|
26
|
+
build/packages/html2md*.zip
|
|
27
|
+
steps:
|
|
28
|
+
- name: Checkout repo
|
|
29
|
+
uses: actions/checkout@v4
|
|
30
|
+
|
|
31
|
+
- name: Build and package
|
|
32
|
+
run: |
|
|
33
|
+
mkdir build && cd build
|
|
34
|
+
cmake -DBUILD_TEST=OFF -DBUILD_DOC=OFF -DCMAKE_BUILD_TYPE=Release ..
|
|
35
|
+
cmake --build . --config Release
|
|
36
|
+
cmake --build . --config Release --target package
|
|
37
|
+
shell: bash
|
|
38
|
+
|
|
39
|
+
- name: Upload package
|
|
40
|
+
uses: actions/upload-artifact@v4
|
|
41
|
+
with:
|
|
42
|
+
path: ${{ matrix.files }}
|
|
43
|
+
name: ${{ matrix.os }}
|
|
44
|
+
|
|
45
|
+
publish:
|
|
46
|
+
name: Create release and upload files
|
|
47
|
+
runs-on: ubuntu-22.04
|
|
48
|
+
needs: build
|
|
49
|
+
permissions:
|
|
50
|
+
contents: write
|
|
51
|
+
strategy:
|
|
52
|
+
fail-fast: false
|
|
53
|
+
steps:
|
|
54
|
+
- uses: actions/checkout@v4
|
|
55
|
+
with:
|
|
56
|
+
fetch-depth: 0
|
|
57
|
+
|
|
58
|
+
- name: Download release asstets
|
|
59
|
+
uses: actions/download-artifact@v4
|
|
60
|
+
with:
|
|
61
|
+
path: packages
|
|
62
|
+
|
|
63
|
+
- name: Find changes and release assets
|
|
64
|
+
id: files
|
|
65
|
+
run: |
|
|
66
|
+
PREVIOS="$(git tag --sort=creatordate | tail -n 2 | head -n1)"
|
|
67
|
+
wget https://raw.githubusercontent.com/tim-gromeyer/html2md/$PREVIOS/CHANGELOG.md -O OLD.md
|
|
68
|
+
echo "CHANGES<<EOF" >> $GITHUB_ENV
|
|
69
|
+
echo "$(grep -Fvxf OLD.md CHANGELOG.md | tail -n +2)" >> $GITHUB_ENV
|
|
70
|
+
echo "EOF" >> $GITHUB_ENV
|
|
71
|
+
|
|
72
|
+
echo "FILES<<EOF" >> $GITHUB_ENV
|
|
73
|
+
find packages/ -name "*" -type f >> $GITHUB_ENV
|
|
74
|
+
echo "EOF" >> $GITHUB_ENV
|
|
75
|
+
|
|
76
|
+
- name: Release
|
|
77
|
+
uses: softprops/action-gh-release@v2
|
|
78
|
+
if: startsWith(github.ref, 'refs/tags/')
|
|
79
|
+
with:
|
|
80
|
+
generate_release_notes: true
|
|
81
|
+
body: ${{ env.CHANGES }}
|
|
82
|
+
files: ${{ env.FILES }}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
name: Update website
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
tags:
|
|
6
|
+
- 'v*'
|
|
7
|
+
workflow_dispatch:
|
|
8
|
+
|
|
9
|
+
jobs:
|
|
10
|
+
website:
|
|
11
|
+
name: Build website and deploy to gh pages
|
|
12
|
+
runs-on: ubuntu-22.04
|
|
13
|
+
|
|
14
|
+
steps:
|
|
15
|
+
- uses: actions/checkout@v4
|
|
16
|
+
|
|
17
|
+
- name: Add version to Doxyfile
|
|
18
|
+
run: |
|
|
19
|
+
echo "PROJECT_NUMBER = ${{ github.ref_name }}" >> docs/Doxyfile
|
|
20
|
+
|
|
21
|
+
- name: Run Doxygen
|
|
22
|
+
uses: mattnotmitt/doxygen-action@edge
|
|
23
|
+
with:
|
|
24
|
+
doxyfile-path: 'docs/Doxyfile'
|
|
25
|
+
|
|
26
|
+
- name: Deploy
|
|
27
|
+
uses: peaceiris/actions-gh-pages@v4
|
|
28
|
+
with:
|
|
29
|
+
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
30
|
+
publish_dir: ./doc
|
|
31
|
+
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
name: Build Python wheels
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
tags:
|
|
6
|
+
- 'v*'
|
|
7
|
+
workflow_dispatch:
|
|
8
|
+
|
|
9
|
+
jobs:
|
|
10
|
+
build_sdist:
|
|
11
|
+
name: Build SDist
|
|
12
|
+
runs-on: ubuntu-latest
|
|
13
|
+
steps:
|
|
14
|
+
- uses: actions/checkout@v4
|
|
15
|
+
with:
|
|
16
|
+
submodules: true
|
|
17
|
+
|
|
18
|
+
- name: Build SDist
|
|
19
|
+
run: pipx run build --sdist
|
|
20
|
+
|
|
21
|
+
- name: Check metadata
|
|
22
|
+
run: pipx run twine check dist/*
|
|
23
|
+
|
|
24
|
+
- uses: actions/upload-artifact@v4
|
|
25
|
+
with:
|
|
26
|
+
path: dist/*.tar.gz
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
build_wheels:
|
|
30
|
+
name: Wheels on ${{ matrix.os }}
|
|
31
|
+
runs-on: ${{ matrix.os }}
|
|
32
|
+
strategy:
|
|
33
|
+
fail-fast: false
|
|
34
|
+
matrix:
|
|
35
|
+
os: [ubuntu-latest, windows-latest, macos-latest]
|
|
36
|
+
|
|
37
|
+
steps:
|
|
38
|
+
- uses: actions/checkout@v4
|
|
39
|
+
with:
|
|
40
|
+
submodules: true
|
|
41
|
+
|
|
42
|
+
- uses: pypa/cibuildwheel@v2.17.0
|
|
43
|
+
env:
|
|
44
|
+
CIBW_ARCHS_MACOS: auto universal2
|
|
45
|
+
|
|
46
|
+
- name: Verify clean directory
|
|
47
|
+
run: git diff --exit-code
|
|
48
|
+
shell: bash
|
|
49
|
+
|
|
50
|
+
- name: Upload wheels
|
|
51
|
+
uses: actions/upload-artifact@v4
|
|
52
|
+
with:
|
|
53
|
+
path: wheelhouse/*.whl
|
|
54
|
+
name: ${{ matrix.os }}
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
upload_all:
|
|
58
|
+
name: Upload wheels
|
|
59
|
+
needs: [build_wheels, build_sdist]
|
|
60
|
+
runs-on: ubuntu-latest
|
|
61
|
+
|
|
62
|
+
steps:
|
|
63
|
+
- uses: actions/download-artifact@v4
|
|
64
|
+
with:
|
|
65
|
+
name: artifact
|
|
66
|
+
path: dist
|
|
67
|
+
|
|
68
|
+
- uses: pypa/gh-action-pypi-publish@v1.8.14
|
|
69
|
+
with:
|
|
70
|
+
password: ${{ secrets.PYPI_API_TOKEN }}
|
|
71
|
+
|
|
@@ -0,0 +1,133 @@
|
|
|
1
|
+
# Change log
|
|
2
|
+
|
|
3
|
+
[TOC]
|
|
4
|
+
|
|
5
|
+
## 1.6.0
|
|
6
|
+
|
|
7
|
+
- Add option for soft line break
|
|
8
|
+
- Add option for hard line break
|
|
9
|
+
- Fix handling of self-closing tags
|
|
10
|
+
- Updated python package building (see #100)
|
|
11
|
+
|
|
12
|
+
## 1.5.4
|
|
13
|
+
|
|
14
|
+
- Fix crash (see #67)
|
|
15
|
+
- Add support for newer Python versions
|
|
16
|
+
|
|
17
|
+
## 1.5.3
|
|
18
|
+
|
|
19
|
+
- Make `blockquote` work correctly!
|
|
20
|
+
- Additional note for 1.5.2: Add Python 12 packages
|
|
21
|
+
|
|
22
|
+
## 1.5.2
|
|
23
|
+
|
|
24
|
+
- FIXED: Add `titile` support for images
|
|
25
|
+
- FIXED: Code got formatted (Spaces removed)
|
|
26
|
+
- Fixed some formatting issues (like a space infront of `!`)
|
|
27
|
+
- FIXED: Escaping of `*`, \`, and `\`
|
|
28
|
+
- Reduced memory usage
|
|
29
|
+
- Improved performance
|
|
30
|
+
|
|
31
|
+
## v1.5.1
|
|
32
|
+
|
|
33
|
+
- **~40% Performance Improvement**
|
|
34
|
+
|
|
35
|
+
## v1.5.0
|
|
36
|
+
|
|
37
|
+
- **Added a option to Format Markdown Tables**
|
|
38
|
+
- More tests
|
|
39
|
+
- Reworked cli program for better usability
|
|
40
|
+
|
|
41
|
+
## v1.4.4
|
|
42
|
+
|
|
43
|
+
- New release with Python 3.11 support/packages
|
|
44
|
+
- Updated internal dependencies
|
|
45
|
+
|
|
46
|
+
## v1.4.3
|
|
47
|
+
|
|
48
|
+
- Improved performance
|
|
49
|
+
- Updated 3rdparty tools (for creating python packages and creating releases)
|
|
50
|
+
- Fix code example
|
|
51
|
+
|
|
52
|
+
## v1.4.2
|
|
53
|
+
|
|
54
|
+
- Fixed windows release build are linked against debug libraries
|
|
55
|
+
|
|
56
|
+
## v1.4.1
|
|
57
|
+
|
|
58
|
+
- **Fixed <u>ALL</u> memory leaks**
|
|
59
|
+
- Fixed bugs(`html2md::Options::includeTitle` not working)
|
|
60
|
+
- Added more tests
|
|
61
|
+
- Documentation: Updated Doxygen to v1.9.6
|
|
62
|
+
- Include Windows to releases
|
|
63
|
+
|
|
64
|
+
## v1.4.0
|
|
65
|
+
|
|
66
|
+
- Improved CMake support massively!
|
|
67
|
+
- Fixed tests
|
|
68
|
+
- Added support for CMake 3.8
|
|
69
|
+
- Fix Python source package
|
|
70
|
+
|
|
71
|
+
## v1.3.0
|
|
72
|
+
|
|
73
|
+
**BREAKING CHANGES!**
|
|
74
|
+
|
|
75
|
+
- Renamed `Converter::Convert2Md` -> `Converter::convert()`
|
|
76
|
+
- Renamed `options` -> `Options`
|
|
77
|
+
|
|
78
|
+
## v1.2.2
|
|
79
|
+
|
|
80
|
+
- Fixed bug when calling `Convert2Md()` multiple times
|
|
81
|
+
- Corrected serval typos. Ignore the rest of the change log.
|
|
82
|
+
|
|
83
|
+
## v1.2.1
|
|
84
|
+
|
|
85
|
+
- Added missing python dependency
|
|
86
|
+
|
|
87
|
+
## v1.2.0
|
|
88
|
+
|
|
89
|
+
- **Added python bindings**
|
|
90
|
+
- Added new option: `includeTable`.
|
|
91
|
+
|
|
92
|
+
## v1.1.5
|
|
93
|
+
|
|
94
|
+
- Added more command line options to the executable
|
|
95
|
+
|
|
96
|
+
## v1.1.4
|
|
97
|
+
|
|
98
|
+
- Releases now include deb files
|
|
99
|
+
|
|
100
|
+
## v1.1.3
|
|
101
|
+
|
|
102
|
+
The user can now test his own Markdown files. Simply specify to the test program as argument.
|
|
103
|
+
|
|
104
|
+
## v1.1.2
|
|
105
|
+
|
|
106
|
+
- Add changes for v1.1.1
|
|
107
|
+
- Create releases when a new tag is added(automatically)
|
|
108
|
+
|
|
109
|
+
## v.1.1.1
|
|
110
|
+
|
|
111
|
+
- Fix windows build(by replacing get)
|
|
112
|
+
|
|
113
|
+
## v1.1.0
|
|
114
|
+
|
|
115
|
+
- Reworked command line program
|
|
116
|
+
- Renamed `AppendToMd` to `appendToMd`
|
|
117
|
+
- Renamed `AppendBlank` to `appendBlank`
|
|
118
|
+
- **Require *c++11* instead of *c++17*.** Only the tests require *c++17* now.
|
|
119
|
+
- Added more tests
|
|
120
|
+
- Fix typos in comments
|
|
121
|
+
- Improved documentation
|
|
122
|
+
|
|
123
|
+
## v1.0.1
|
|
124
|
+
|
|
125
|
+
- Fixed several bugs
|
|
126
|
+
- Added more tests: make test
|
|
127
|
+
- Updated documentation: make doc
|
|
128
|
+
- Added packaging: make package
|
|
129
|
+
|
|
130
|
+
## v1.0.0
|
|
131
|
+
|
|
132
|
+
Initial release. All basics work but `blockquote` needs a rework.
|
|
133
|
+
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
cmake_minimum_required(VERSION 3.8)
|
|
2
|
-
project(html2md VERSION 1.
|
|
2
|
+
project(html2md VERSION 1.6.0 LANGUAGES CXX)
|
|
3
3
|
|
|
4
4
|
set(PROJECT_HOMEPAGE_URL "https://tim-gromeyer.github.io/html2md/")
|
|
5
5
|
set(html2md_HOMEPAGE_URL "${PROJECT_HOMEPAGE_URL}")
|
|
@@ -57,6 +57,9 @@ if(PYTHON_BINDINGS)
|
|
|
57
57
|
)
|
|
58
58
|
target_compile_definitions(pyhtml2md PRIVATE PYTHON_BINDINGS)
|
|
59
59
|
target_include_directories(pyhtml2md PRIVATE include)
|
|
60
|
+
if (SKBUILD)
|
|
61
|
+
install(TARGETS pyhtml2md DESTINATION "${SKBUILD_PLATLIB_DIR}")
|
|
62
|
+
endif()
|
|
60
63
|
return()
|
|
61
64
|
endif()
|
|
62
65
|
|
|
@@ -1,14 +1,27 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: pyhtml2md
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.6.0
|
|
4
4
|
Summary: Transform your HTML into clean, easy-to-read markdown with pyhtml2md.
|
|
5
|
-
|
|
6
|
-
Author: Tim Gromeyer
|
|
7
|
-
|
|
5
|
+
Keywords: html,markdown,html-to-markdown,python3,cpp17,cpp-library,html2markdown,html2md
|
|
6
|
+
Author-Email: Tim Gromeyer <sakul8826@gmail.com>
|
|
7
|
+
License: MIT
|
|
8
|
+
Classifier: Intended Audience :: Developers
|
|
9
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
10
|
+
Classifier: Programming Language :: C++
|
|
11
|
+
Classifier: Programming Language :: Python
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.7
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
17
|
+
Classifier: Topic :: File Formats
|
|
18
|
+
Classifier: Topic :: Text Processing :: Markup :: Markdown
|
|
19
|
+
Classifier: Topic :: Text Processing :: Markup :: HTML
|
|
20
|
+
Project-URL: Repository, https://github.com/tim-gromeyer/html2md
|
|
8
21
|
Requires-Python: >=3.7
|
|
9
|
-
Description-Content-Type: text/markdown
|
|
10
22
|
Provides-Extra: test
|
|
11
|
-
|
|
23
|
+
Requires-Dist: pytest>=6.0; extra == "test"
|
|
24
|
+
Description-Content-Type: text/markdown
|
|
12
25
|
|
|
13
26
|
# pyhtml2md
|
|
14
27
|
|