Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,11 @@ on:
paths-ignore:
- 'doc/**'
- 'img/**'
- 'api/**'
- 'changelog.md'
- 'readme.md'
- 'retype.json'
- '.github/workflows/retype.yml'
pull_request:

jobs:
Expand All @@ -27,7 +30,7 @@ jobs:

- name: Build (Release)
run: dotnet build src -c Release

- name: SpecFileGen
run: dotnet src/SpecFileGen/bin/Release/net5.0/SpecFileGen.dll

Expand Down Expand Up @@ -55,7 +58,7 @@ jobs:

- name: Publish
if: github.event_name == 'push'
run: |
run: |
if ( "${{github.ref}}" -match "^refs/tags/[0-9]+\.[0-9]+\.[0-9]+$" ) {
dotnet nuget push src\${{env.PROJECT_NAME}}\bin\Release\*.nupkg -s nuget.org -k ${{secrets.NUGET_TOKEN}}
dotnet nuget push src\${{env.PROJECT_NAME}}.Signed\bin\Release\*.nupkg -s nuget.org -k ${{secrets.NUGET_TOKEN}}
Expand Down
25 changes: 25 additions & 0 deletions .github/workflows/retype.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Retype publish to GitHub Pages
on:
workflow_dispatch:
push:
branches:
- master

jobs:
publish:
name: Publish to retype branch

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- uses: actions/setup-dotnet@v1
with:
dotnet-version: 5.0.x

- uses: retypeapp/action-build@v1

- uses: retypeapp/action-github@v1
with:
update-branch: true
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -239,3 +239,6 @@ _Pvt_Extensions
**/.idea/**/*.iml
**/.idea/**/contentModel.xml
**/.idea/**/modules.xml

# Custom
.retype/
2 changes: 2 additions & 0 deletions api/index.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
icon: gear
label: API Reference
15 changes: 9 additions & 6 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
---
icon: checklist
---
# Changelog

## 0.24.0 (20 Mar 2021)
Expand Down Expand Up @@ -36,11 +39,11 @@

## 0.20.0 (18 Apr 2020)
- Markdig is now compatible only with `NETStandard 2.0`, `NETStandard 2.1`, `NETCoreApp 2.1` and `NETCoreApp 3.1`.
- Many performance improvements from [PR #416](https://github.com/lunet-io/markdig/pull/416)
- Many performance improvements from [PR #416](https://github.com/lunet-io/markdig/pull/416)
[PR #417](https://github.com/lunet-io/markdig/pull/417)
[PR #418](https://github.com/lunet-io/markdig/pull/418)
[PR #421](https://github.com/lunet-io/markdig/pull/421)
[PR #422](https://github.com/lunet-io/markdig/pull/422)
[PR #418](https://github.com/lunet-io/markdig/pull/418)
[PR #421](https://github.com/lunet-io/markdig/pull/421)
[PR #422](https://github.com/lunet-io/markdig/pull/422)
[PR #410](https://github.com/lunet-io/markdig/pull/410)

## 0.18.3 (8 Mar 2020)
Expand Down Expand Up @@ -150,10 +153,10 @@
- Make EmojiExtension.EnableSmiley public
## 0.14.2
- Fix issue with emphasis preceded/followed by an HTML entity (#157)
- Add support for link reference definitions for Normalize renderer (#155)
- Add support for link reference definitions for Normalize renderer (#155)
- Add option to disable smiley parsing in EmojiAndSmiley extension
## 0.14.1
- Fix crash in Markdown.Normalize to handle HtmlBlock correctly
- Fix crash in Markdown.Normalize to handle HtmlBlock correctly
- Add better handling of bullet character for lists in Markdown.Normalize
## 0.14.0
- Add Markdown.ToPlainText, Add option HtmlRenderer.EnableHtmlForBlock.
Expand Down
6 changes: 6 additions & 0 deletions img/markdig-logo-dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions img/markdig-logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading