-
Notifications
You must be signed in to change notification settings - Fork 867
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: Add feature to reset markdig extension settings that are added by default #9780
Closed
Closed
Changes from all commits
Commits
Show all changes
31 commits
Select commit
Hold shift + click to select a range
46268af
feat: add markdig extension override with default settings
filzrev 5f1442c
build(deps): bump the xunit group with 1 update (#9778)
dependabot[bot] 0a86a0f
fix: Broken examples problems when using inheritdoc tag (#9754)
filzrev 174f052
build(deps): bump PdfPig from 0.1.9-alpha-20240307-ac027 to 0.1.9-alp…
dependabot[bot] 5038d8e
build(deps-dev): bump the typescript-eslint group in /templates with …
dependabot[bot] 3e06043
build(deps): bump the xunit group with 1 update (#9785)
dependabot[bot] d19f0de
chore: Disable parallel tests for target frameworks that introduced a…
filzrev fecd104
fix: NullReferenceException occurred when both include and exclude ar…
filzrev 73f7a71
feat: publish nightly pre-release packages (#9788)
yufeih fb8e408
build(deps-dev): bump esbuild-sass-plugin from 3.1.0 to 3.2.0 in /tem…
dependabot[bot] be16f69
build(deps): bump paulhatch/semantic-version from 5.3.0 to 5.4.0 (#9789)
dependabot[bot] 347e350
build(deps-dev): bump esbuild from 0.20.1 to 0.20.2 in /templates (#9…
dependabot[bot] 0010c66
build(deps-dev): bump follow-redirects from 1.15.4 to 1.15.6 in /temp…
dependabot[bot] 214d72f
build(deps): bump Markdig from 0.35.0 to 0.36.2 (#9794)
dependabot[bot] 2866d45
build(deps): bump the xunit group with 1 update (#9799)
dependabot[bot] bd8c1a4
build(deps): bump JsonSchema.Net from 6.0.4 to 6.0.5 (#9801)
dependabot[bot] 20790fd
build(deps-dev): bump the typescript-eslint group in /templates with …
dependabot[bot] 130c45c
chore: Add detailed error message for specific exceptions (#9746)
filzrev 431d692
chore: update pdfpig nuget package version (#9803)
filzrev 8a7a95a
build(deps-dev): bump typescript from 5.4.2 to 5.4.3 in /templates (#…
dependabot[bot] 2c0d733
chore: Change JsonSchema EvaluationOptions instance to shared object …
filzrev 14df1ea
fix: Invalid documentation on type parameter #9755 (#9806)
soniyaprasad77 2012329
Update markdown documentation regarding MarkDig extension (#9810)
tbolon fe240c7
build(deps): bump PdfPig from 0.1.9-alpha-20240318-69e2b to 0.1.9-alp…
dependabot[bot] bd87bd2
build(deps): bump JsonSchema.Net from 6.0.5 to 6.0.6 (#9814)
dependabot[bot] e301880
build(deps): bump katex from 0.16.9 to 0.16.10 in /templates (#9816)
dependabot[bot] d8e4aa6
build(deps-dev): bump the typescript-eslint group in /templates with …
dependabot[bot] 3542b48
build(deps): bump JsonSchema.Net from 6.0.6 to 6.0.7 (#9818)
dependabot[bot] b3ec103
chore: Update `docfx.json` config reference document (#9813)
filzrev 7126223
chore: Correct `docfx template` page title (#9812)
peitschie a6c4c83
feat: add markdig extension override with default settings
filzrev File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: nightly | ||
on: | ||
schedule: | ||
- cron: '0 0 * * *' | ||
|
||
jobs: | ||
publish-github-packages: | ||
if: github.ref == 'refs/heads/main' | ||
runs-on: ubuntu-latest | ||
permissions: | ||
packages: write | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- id: version | ||
uses: paulhatch/[email protected] | ||
with: | ||
version_format: ${major}.${minor}.${patch}-preview.${increment} | ||
|
||
- uses: ./.github/actions/build | ||
|
||
- name: dotnet pack | ||
run: dotnet pack -c Release /p:Version=${{ steps.version.outputs.version }} -o drop/nuget | ||
|
||
- name: dotnet nuget push | ||
run: | | ||
dotnet nuget push drop/nuget/*.nupkg --api-key "${{ secrets.GITHUB_TOKEN }}" --skip-duplicate --source https://nuget.pkg.github.com/dotnet/index.json | ||
|
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
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 @@ | ||
# docfx build | ||
# docfx template | ||
|
||
## Name | ||
|
||
|
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
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
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
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
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These feel like configuration of existing extensions, it might be more future proof if we configure it such as:
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I've added commented features to override extension properties by PR #9820.
Example configs
Note: I've added
options
key. Because it might required to support additional propertywhen implementing
remove
markdig extensions that are enabled by default feature.(Discussed at #7833)