├── $repo-contents.docx ├── .gitattributes ├── .gitignore ├── LICENSE.txt ├── README.md ├── assets ├── word_web_nav.css ├── word_web_nav.js └── word_web_nav_splitter_bar_icon.png ├── createwebpage ├── $package-contents.docx ├── __init__.py ├── construct_html_sections.py ├── copy_words_embedded_files.py ├── create_web_page.py ├── fix_word_html.py ├── input_parameter_file_keys.py ├── jinja_template.html ├── load_html_files.py ├── load_input_parameter_file.py └── yamllint_config_file.yml ├── docs ├── development-docs │ ├── WWN--input-parameter-file--YAML-use.docx │ ├── WWN--testing--regression-tests.docx │ ├── WWN--testing.docx │ ├── index.docx │ ├── web-page--construction--beautiful-soup--jinja.docx │ ├── web-page--html-tutorials.docx │ ├── web-page--structure--css--jquery.docx │ ├── web-page--structure--css-tutorials.docx │ ├── web-page--structure--design.vsd │ ├── word-html--bugs-and-fixes.docx │ ├── word-html--references-and-info.docx │ └── word-html--table-of-contents.docx ├── index.docx ├── installation.docx └── users-guide.docx ├── readme-figure-1.png ├── readme-figure-2.png ├── requirements.txt ├── templates ├── web_page_create--parameters--all.yml └── web_page_create--parameters--minimum.yml ├── tests └── tests-for-create_web_page_py │ ├── demo.docx │ └── included-photo.jpg └── tools ├── batch_create_web_page.py ├── batch_create_web_page.yml ├── create_web_page_for_all_yml_files.py └── generate_word_html.docm /$repo-contents.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimyuill/word-web-nav/HEAD/$repo-contents.docx -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimyuill/word-web-nav/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimyuill/word-web-nav/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimyuill/word-web-nav/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimyuill/word-web-nav/HEAD/README.md -------------------------------------------------------------------------------- /assets/word_web_nav.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimyuill/word-web-nav/HEAD/assets/word_web_nav.css -------------------------------------------------------------------------------- /assets/word_web_nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimyuill/word-web-nav/HEAD/assets/word_web_nav.js -------------------------------------------------------------------------------- /assets/word_web_nav_splitter_bar_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimyuill/word-web-nav/HEAD/assets/word_web_nav_splitter_bar_icon.png -------------------------------------------------------------------------------- /createwebpage/$package-contents.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimyuill/word-web-nav/HEAD/createwebpage/$package-contents.docx -------------------------------------------------------------------------------- /createwebpage/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimyuill/word-web-nav/HEAD/createwebpage/__init__.py -------------------------------------------------------------------------------- /createwebpage/construct_html_sections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimyuill/word-web-nav/HEAD/createwebpage/construct_html_sections.py -------------------------------------------------------------------------------- /createwebpage/copy_words_embedded_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimyuill/word-web-nav/HEAD/createwebpage/copy_words_embedded_files.py -------------------------------------------------------------------------------- /createwebpage/create_web_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimyuill/word-web-nav/HEAD/createwebpage/create_web_page.py -------------------------------------------------------------------------------- /createwebpage/fix_word_html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimyuill/word-web-nav/HEAD/createwebpage/fix_word_html.py -------------------------------------------------------------------------------- /createwebpage/input_parameter_file_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimyuill/word-web-nav/HEAD/createwebpage/input_parameter_file_keys.py -------------------------------------------------------------------------------- /createwebpage/jinja_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimyuill/word-web-nav/HEAD/createwebpage/jinja_template.html -------------------------------------------------------------------------------- /createwebpage/load_html_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimyuill/word-web-nav/HEAD/createwebpage/load_html_files.py -------------------------------------------------------------------------------- /createwebpage/load_input_parameter_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimyuill/word-web-nav/HEAD/createwebpage/load_input_parameter_file.py -------------------------------------------------------------------------------- /createwebpage/yamllint_config_file.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimyuill/word-web-nav/HEAD/createwebpage/yamllint_config_file.yml -------------------------------------------------------------------------------- /docs/development-docs/WWN--input-parameter-file--YAML-use.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimyuill/word-web-nav/HEAD/docs/development-docs/WWN--input-parameter-file--YAML-use.docx -------------------------------------------------------------------------------- /docs/development-docs/WWN--testing--regression-tests.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimyuill/word-web-nav/HEAD/docs/development-docs/WWN--testing--regression-tests.docx -------------------------------------------------------------------------------- /docs/development-docs/WWN--testing.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimyuill/word-web-nav/HEAD/docs/development-docs/WWN--testing.docx -------------------------------------------------------------------------------- /docs/development-docs/index.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimyuill/word-web-nav/HEAD/docs/development-docs/index.docx -------------------------------------------------------------------------------- /docs/development-docs/web-page--construction--beautiful-soup--jinja.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimyuill/word-web-nav/HEAD/docs/development-docs/web-page--construction--beautiful-soup--jinja.docx -------------------------------------------------------------------------------- /docs/development-docs/web-page--html-tutorials.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimyuill/word-web-nav/HEAD/docs/development-docs/web-page--html-tutorials.docx -------------------------------------------------------------------------------- /docs/development-docs/web-page--structure--css--jquery.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimyuill/word-web-nav/HEAD/docs/development-docs/web-page--structure--css--jquery.docx -------------------------------------------------------------------------------- /docs/development-docs/web-page--structure--css-tutorials.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimyuill/word-web-nav/HEAD/docs/development-docs/web-page--structure--css-tutorials.docx -------------------------------------------------------------------------------- /docs/development-docs/web-page--structure--design.vsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimyuill/word-web-nav/HEAD/docs/development-docs/web-page--structure--design.vsd -------------------------------------------------------------------------------- /docs/development-docs/word-html--bugs-and-fixes.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimyuill/word-web-nav/HEAD/docs/development-docs/word-html--bugs-and-fixes.docx -------------------------------------------------------------------------------- /docs/development-docs/word-html--references-and-info.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimyuill/word-web-nav/HEAD/docs/development-docs/word-html--references-and-info.docx -------------------------------------------------------------------------------- /docs/development-docs/word-html--table-of-contents.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimyuill/word-web-nav/HEAD/docs/development-docs/word-html--table-of-contents.docx -------------------------------------------------------------------------------- /docs/index.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimyuill/word-web-nav/HEAD/docs/index.docx -------------------------------------------------------------------------------- /docs/installation.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimyuill/word-web-nav/HEAD/docs/installation.docx -------------------------------------------------------------------------------- /docs/users-guide.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimyuill/word-web-nav/HEAD/docs/users-guide.docx -------------------------------------------------------------------------------- /readme-figure-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimyuill/word-web-nav/HEAD/readme-figure-1.png -------------------------------------------------------------------------------- /readme-figure-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimyuill/word-web-nav/HEAD/readme-figure-2.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimyuill/word-web-nav/HEAD/requirements.txt -------------------------------------------------------------------------------- /templates/web_page_create--parameters--all.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimyuill/word-web-nav/HEAD/templates/web_page_create--parameters--all.yml -------------------------------------------------------------------------------- /templates/web_page_create--parameters--minimum.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimyuill/word-web-nav/HEAD/templates/web_page_create--parameters--minimum.yml -------------------------------------------------------------------------------- /tests/tests-for-create_web_page_py/demo.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimyuill/word-web-nav/HEAD/tests/tests-for-create_web_page_py/demo.docx -------------------------------------------------------------------------------- /tests/tests-for-create_web_page_py/included-photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimyuill/word-web-nav/HEAD/tests/tests-for-create_web_page_py/included-photo.jpg -------------------------------------------------------------------------------- /tools/batch_create_web_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimyuill/word-web-nav/HEAD/tools/batch_create_web_page.py -------------------------------------------------------------------------------- /tools/batch_create_web_page.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimyuill/word-web-nav/HEAD/tools/batch_create_web_page.yml -------------------------------------------------------------------------------- /tools/create_web_page_for_all_yml_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimyuill/word-web-nav/HEAD/tools/create_web_page_for_all_yml_files.py -------------------------------------------------------------------------------- /tools/generate_word_html.docm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimyuill/word-web-nav/HEAD/tools/generate_word_html.docm --------------------------------------------------------------------------------