├── .github └── workflows │ ├── test-docker-ci-debian.yml │ └── test-docker-ci-fedora.yml ├── .gitignore ├── .tidyallrc ├── CI-testing ├── docker-ci-run.pl └── generate_gh_actions.py ├── FAQ.docbook5.xml.tt2 ├── FAQ.mdwn ├── FAQ_with_ToC__generated-before-docbook5-transiton.md ├── FAQ_with_ToC__generated.md ├── LICENSE.mdwn ├── Makefile ├── README.mdwn ├── Tests └── data │ └── cache │ └── PLACEHOLDER ├── bin ├── fix-docbook5.pl └── my-cookiecutter.pl ├── gen-toc-based-on-docbook5.py ├── index.mdwn ├── lib └── Shlomif │ └── MySystem.pm ├── rejects.mkdn ├── t ├── lib │ └── html_unit_test.py ├── validate-html-using-vnu.py └── verify-docbook5-transition.py ├── template-toolkit-render.pl ├── topic.py └── xhtml-faq └── PLACEHOLDER /.github/workflows/test-docker-ci-debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shlomif/Freenode-programming-channel-FAQ/HEAD/.github/workflows/test-docker-ci-debian.yml -------------------------------------------------------------------------------- /.github/workflows/test-docker-ci-fedora.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shlomif/Freenode-programming-channel-FAQ/HEAD/.github/workflows/test-docker-ci-fedora.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shlomif/Freenode-programming-channel-FAQ/HEAD/.gitignore -------------------------------------------------------------------------------- /.tidyallrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shlomif/Freenode-programming-channel-FAQ/HEAD/.tidyallrc -------------------------------------------------------------------------------- /CI-testing/docker-ci-run.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shlomif/Freenode-programming-channel-FAQ/HEAD/CI-testing/docker-ci-run.pl -------------------------------------------------------------------------------- /CI-testing/generate_gh_actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shlomif/Freenode-programming-channel-FAQ/HEAD/CI-testing/generate_gh_actions.py -------------------------------------------------------------------------------- /FAQ.docbook5.xml.tt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shlomif/Freenode-programming-channel-FAQ/HEAD/FAQ.docbook5.xml.tt2 -------------------------------------------------------------------------------- /FAQ.mdwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shlomif/Freenode-programming-channel-FAQ/HEAD/FAQ.mdwn -------------------------------------------------------------------------------- /FAQ_with_ToC__generated-before-docbook5-transiton.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shlomif/Freenode-programming-channel-FAQ/HEAD/FAQ_with_ToC__generated-before-docbook5-transiton.md -------------------------------------------------------------------------------- /FAQ_with_ToC__generated.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shlomif/Freenode-programming-channel-FAQ/HEAD/FAQ_with_ToC__generated.md -------------------------------------------------------------------------------- /LICENSE.mdwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shlomif/Freenode-programming-channel-FAQ/HEAD/LICENSE.mdwn -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shlomif/Freenode-programming-channel-FAQ/HEAD/Makefile -------------------------------------------------------------------------------- /README.mdwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shlomif/Freenode-programming-channel-FAQ/HEAD/README.mdwn -------------------------------------------------------------------------------- /Tests/data/cache/PLACEHOLDER: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/fix-docbook5.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shlomif/Freenode-programming-channel-FAQ/HEAD/bin/fix-docbook5.pl -------------------------------------------------------------------------------- /bin/my-cookiecutter.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shlomif/Freenode-programming-channel-FAQ/HEAD/bin/my-cookiecutter.pl -------------------------------------------------------------------------------- /gen-toc-based-on-docbook5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shlomif/Freenode-programming-channel-FAQ/HEAD/gen-toc-based-on-docbook5.py -------------------------------------------------------------------------------- /index.mdwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shlomif/Freenode-programming-channel-FAQ/HEAD/index.mdwn -------------------------------------------------------------------------------- /lib/Shlomif/MySystem.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shlomif/Freenode-programming-channel-FAQ/HEAD/lib/Shlomif/MySystem.pm -------------------------------------------------------------------------------- /rejects.mkdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shlomif/Freenode-programming-channel-FAQ/HEAD/rejects.mkdn -------------------------------------------------------------------------------- /t/lib/html_unit_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shlomif/Freenode-programming-channel-FAQ/HEAD/t/lib/html_unit_test.py -------------------------------------------------------------------------------- /t/validate-html-using-vnu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shlomif/Freenode-programming-channel-FAQ/HEAD/t/validate-html-using-vnu.py -------------------------------------------------------------------------------- /t/verify-docbook5-transition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shlomif/Freenode-programming-channel-FAQ/HEAD/t/verify-docbook5-transition.py -------------------------------------------------------------------------------- /template-toolkit-render.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shlomif/Freenode-programming-channel-FAQ/HEAD/template-toolkit-render.pl -------------------------------------------------------------------------------- /topic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shlomif/Freenode-programming-channel-FAQ/HEAD/topic.py -------------------------------------------------------------------------------- /xhtml-faq/PLACEHOLDER: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------