├── ConvertFromMarkdown.psd1 ├── ConvertFromMarkdown.psm1 ├── DoTests.ps1 ├── Example ├── README.md ├── lintThis.ps1 └── manuscript │ ├── Book.txt │ ├── chapter00.md │ └── chapter01.md ├── InstallModule.ps1 ├── LICENSE ├── PublishToGallery.ps1 ├── README.md ├── TestPSCodeBlock.ps1 ├── TestREADME.md ├── __tests__ ├── ConvertFromReadmeMD.tests.ps1 ├── README.md ├── READMECodeThatErrors.md ├── READMEExcludeCode.md ├── READMEGoodCode.md ├── READMEOneChapterNoCode.md └── changelog.md ├── appveyor.yml ├── exportManuscript.ps1 └── images ├── Convert.png ├── ConvertExampleReadme.png └── manuscript.png /ConvertFromMarkdown.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/ConvertFromMarkdown/HEAD/ConvertFromMarkdown.psd1 -------------------------------------------------------------------------------- /ConvertFromMarkdown.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/ConvertFromMarkdown/HEAD/ConvertFromMarkdown.psm1 -------------------------------------------------------------------------------- /DoTests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/ConvertFromMarkdown/HEAD/DoTests.ps1 -------------------------------------------------------------------------------- /Example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/ConvertFromMarkdown/HEAD/Example/README.md -------------------------------------------------------------------------------- /Example/lintThis.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/ConvertFromMarkdown/HEAD/Example/lintThis.ps1 -------------------------------------------------------------------------------- /Example/manuscript/Book.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/ConvertFromMarkdown/HEAD/Example/manuscript/Book.txt -------------------------------------------------------------------------------- /Example/manuscript/chapter00.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/ConvertFromMarkdown/HEAD/Example/manuscript/chapter00.md -------------------------------------------------------------------------------- /Example/manuscript/chapter01.md: -------------------------------------------------------------------------------- 1 | # ARRAYS 2 | -------------------------------------------------------------------------------- /InstallModule.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/ConvertFromMarkdown/HEAD/InstallModule.ps1 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/ConvertFromMarkdown/HEAD/LICENSE -------------------------------------------------------------------------------- /PublishToGallery.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/ConvertFromMarkdown/HEAD/PublishToGallery.ps1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/ConvertFromMarkdown/HEAD/README.md -------------------------------------------------------------------------------- /TestPSCodeBlock.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/ConvertFromMarkdown/HEAD/TestPSCodeBlock.ps1 -------------------------------------------------------------------------------- /TestREADME.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/ConvertFromMarkdown/HEAD/TestREADME.md -------------------------------------------------------------------------------- /__tests__/ConvertFromReadmeMD.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/ConvertFromMarkdown/HEAD/__tests__/ConvertFromReadmeMD.tests.ps1 -------------------------------------------------------------------------------- /__tests__/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/ConvertFromMarkdown/HEAD/__tests__/README.md -------------------------------------------------------------------------------- /__tests__/READMECodeThatErrors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/ConvertFromMarkdown/HEAD/__tests__/READMECodeThatErrors.md -------------------------------------------------------------------------------- /__tests__/READMEExcludeCode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/ConvertFromMarkdown/HEAD/__tests__/READMEExcludeCode.md -------------------------------------------------------------------------------- /__tests__/READMEGoodCode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/ConvertFromMarkdown/HEAD/__tests__/READMEGoodCode.md -------------------------------------------------------------------------------- /__tests__/READMEOneChapterNoCode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/ConvertFromMarkdown/HEAD/__tests__/READMEOneChapterNoCode.md -------------------------------------------------------------------------------- /__tests__/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/ConvertFromMarkdown/HEAD/__tests__/changelog.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/ConvertFromMarkdown/HEAD/appveyor.yml -------------------------------------------------------------------------------- /exportManuscript.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/ConvertFromMarkdown/HEAD/exportManuscript.ps1 -------------------------------------------------------------------------------- /images/Convert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/ConvertFromMarkdown/HEAD/images/Convert.png -------------------------------------------------------------------------------- /images/ConvertExampleReadme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/ConvertFromMarkdown/HEAD/images/ConvertExampleReadme.png -------------------------------------------------------------------------------- /images/manuscript.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/ConvertFromMarkdown/HEAD/images/manuscript.png --------------------------------------------------------------------------------