-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Added vscode task for code coverage reporting * Updated CI metadata * Added vscode settings to exclude paths * Documentation updates * Updated Yaml processing to keep header order and allow header merging * Quality updates for unit testing * Added message strings * Fix to prevent Yaml block from being processed when not explictly used * Updated Title keyword processing to handle multiple definitions * Added SharePoint documentation example * Documentation updates * Minor documentation updates * Updated tasks.json to use new schema * Moved cmdlet help docs * Reorgansed docs for scaffolding with platyPS * Added documentation updates * Fix documentation links on readme * Minor update to error handling in BuildDocumentation * Dependency and version update preparing for next release * Update documentation build tasks * Update tests and error handling * Documentation updates * Correction to change log grammer * Updates to link external help * Added launch file for debugging * Further documentation updates * Updated change log and readme * Updates to help and remove -Path parameter which is for a future use case * Updates for cmdlet help * Improved code block handling * Updated documentation links * Updates to include about topics in document build process * Updated script to clean up old docs * Added cleanup of docs build path * Added common parameters * Added keyword about help * Merged into keywords document * Removed configuration data parameter for Invoke-PSDocument * Fix up build task to prevent matcher prompt * Updated documentation * Automatically create OutputPath if it doesn't exist * Added PSDocs.Dsc to build task * Preparing for v0.3.0
- Loading branch information
1 parent
2e1857f
commit 93cc913
Showing
46 changed files
with
1,859 additions
and
453 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,4 +6,5 @@ | |
/build/ | ||
/reports/ | ||
/**/*.user | ||
/.vscode/settings.json | ||
/src/**/*-help.xml | ||
/src/**/*.help.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
{ | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"type": "PowerShell", | ||
"request": "launch", | ||
"name": "PowerShell Launch Current File", | ||
"script": "${file}", | ||
"args": [], | ||
"cwd": "${file}" | ||
}, | ||
{ | ||
"type": "PowerShell", | ||
"request": "launch", | ||
"name": "PowerShell Launch Current File in Temporary Console", | ||
"script": "${file}", | ||
"args": [], | ||
"cwd": "${file}", | ||
"createTemporaryIntegratedConsole": true | ||
}, | ||
{ | ||
"type": "PowerShell", | ||
"request": "launch", | ||
"name": "PowerShell Launch Current File w/Args Prompt", | ||
"script": "${file}", | ||
"args": [ | ||
"${command:SpecifyScriptArgs}" | ||
], | ||
"cwd": "${file}" | ||
}, | ||
{ | ||
"type": "PowerShell", | ||
"request": "attach", | ||
"name": "PowerShell Attach to Host Process", | ||
"processId": "${command:PickPSHostProcess}", | ||
"runspaceId": 1 | ||
}, | ||
{ | ||
"type": "PowerShell", | ||
"request": "launch", | ||
"name": "PowerShell Interactive Session", | ||
"cwd": "${workspaceRoot}" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"files.exclude": { | ||
".vs": true, | ||
"artifacts": true, | ||
"reports": true | ||
}, | ||
"search.exclude": { | ||
"build": true | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
|
||
## Unreleased | ||
|
||
## v0.3.0 | ||
|
||
- Improved `Yaml` block handling to allow yaml header to be defined throughout the document and merged when multiple blocks are defined | ||
- Improved cmdlet help | ||
- Output path is automatically created by `Invoke-PSDocument` if it doesn't exist | ||
- Fix to improve handling when `Title` block is used multiple times | ||
- Fix to prevent yaml header being created when `Yaml` block is not used | ||
- Code blocks now generate fenced sections instead of indented sections | ||
- [Breaking change] The body of Code blocks are now no longer evaluated as an expression | ||
- This change improves editing of document templates, allowing editors to complete valid PowerShell syntax | ||
- Define an expression and the pipe the results to the Code keyword to dynamically generate the contents of a code block | ||
- [Breaking change] `-ConfigurationData` parameter of `Invoke-PSDocument` has been removed while purpose and future use of the parameter is reconsidered | ||
|
||
## v0.2.0 | ||
|
||
- Added Desired State Configuration (DSC) extension module PSDocs.Dsc to generate markdown from DSC .mof files | ||
- Moved markdown processor to a seperate module | ||
- Fix handling of multi-line notes and warnings | ||
- Added support to include documentation from external script file | ||
|
||
## v0.1.0 | ||
|
||
- Initial release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
version: 0.1.0.{build} | ||
version: 0.3.0.{build} | ||
image: Visual Studio 2017 | ||
build: off | ||
test_script: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"first-line-h1": false, | ||
"line-length": false, | ||
"no-bare-urls": false | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.