[PR #152] [CLOSED] Normalize Bugfixes and extension of Unit Tests #837

Closed
opened 2026-01-29 14:46:15 +00:00 by claunia · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/xoofx/markdig/pull/152
Author: @tthiery
Created: 10/24/2017
Status: Closed

Base: normalizeHead: normalize


📝 Commits (10+)

  • 9a98fb9 Fix issue InvalidCastException with SmartyPants extension when using both a mdash with quotes.
  • 2c10ac5 Update to latest specs
  • 4a146f0 Bump to 0.7.1
  • c6c2f58 Add support for diagrams extension. wip with mermaid (issue #34)
  • 354f31b Fix calculation of span for HTML entities
  • 9a18ca2 Update readme.md
  • 26c6b12 Merge pull request #35 from ChrisMissal/readme-changes
  • 05a2764 Adding support for rel=nofollow in links
  • 673f4a4 Avoid adding rel to images
  • 5400b30 Fixing for renderer.EnableHtmlForInline case

📊 Changes

166 files changed (+9970 additions, -3402 deletions)

View changed files

.editorconfig (+38 -0)
appveyor.yml (+46 -0)
📝 readme.md (+40 -26)
📝 src/Markdig.Benchmarks/Markdig.Benchmarks.csproj (+1 -1)
src/Markdig.Benchmarks/Markdig.Benchmarks.nuget.targets (+0 -9)
📝 src/Markdig.Benchmarks/Program.cs (+1 -1)
📝 src/Markdig.Benchmarks/app.config (+1 -1)
📝 src/Markdig.Benchmarks/project.json (+4 -4)
📝 src/Markdig.Tests/Markdig.Tests.csproj (+15 -4)
📝 src/Markdig.Tests/Specs/AbbreviationSpecs.md (+53 -0)
src/Markdig.Tests/Specs/AutoLinks.md (+78 -0)
📝 src/Markdig.Tests/Specs/DefinitionListSpecs.md (+25 -0)
src/Markdig.Tests/Specs/DiagramsSpecs.md (+26 -0)
📝 src/Markdig.Tests/Specs/EmojiSpecs.md (+21 -3)
📝 src/Markdig.Tests/Specs/EmphasisExtraSpecs.md (+24 -0)
📝 src/Markdig.Tests/Specs/GenericAttributesSpecs.md (+2 -2)
📝 src/Markdig.Tests/Specs/GridTableSpecs.md (+105 -5)
src/Markdig.Tests/Specs/JiraLinks.md (+77 -0)
📝 src/Markdig.Tests/Specs/ListExtraSpecs.md (+20 -2)
📝 src/Markdig.Tests/Specs/MathSpecs.md (+52 -3)

...and 80 more files

📄 Description

See attached the unit tests and bugfixes for the normalization renderer.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/xoofx/markdig/pull/152 **Author:** [@tthiery](https://github.com/tthiery) **Created:** 10/24/2017 **Status:** ❌ Closed **Base:** `normalize` ← **Head:** `normalize` --- ### 📝 Commits (10+) - [`9a98fb9`](https://github.com/xoofx/markdig/commit/9a98fb94531df8070fb30d5bee605eac9799065d) Fix issue InvalidCastException with SmartyPants extension when using both a mdash with quotes. - [`2c10ac5`](https://github.com/xoofx/markdig/commit/2c10ac59d3efb9a7821565100e35956767faf0a3) Update to latest specs - [`4a146f0`](https://github.com/xoofx/markdig/commit/4a146f00f659a040a13daad0d22318d8ba2f45a4) Bump to 0.7.1 - [`c6c2f58`](https://github.com/xoofx/markdig/commit/c6c2f58ec0b02829625462d909f6d0f40f2258a4) Add support for diagrams extension. wip with mermaid (issue #34) - [`354f31b`](https://github.com/xoofx/markdig/commit/354f31b870d60db189bafe26534eb089cffaf3ff) Fix calculation of span for HTML entities - [`9a18ca2`](https://github.com/xoofx/markdig/commit/9a18ca222f66a89eb00ef3ab3ea06cbf5574a6a7) Update readme.md - [`26c6b12`](https://github.com/xoofx/markdig/commit/26c6b12dea254d79751631f1a8dbcd49b49fed84) Merge pull request #35 from ChrisMissal/readme-changes - [`05a2764`](https://github.com/xoofx/markdig/commit/05a27649aaf5ca9f927aa715ea49b6e9d541c833) Adding support for rel=nofollow in links - [`673f4a4`](https://github.com/xoofx/markdig/commit/673f4a4beb71821db74f3057f196820b526b0a9f) Avoid adding rel to images - [`5400b30`](https://github.com/xoofx/markdig/commit/5400b30a90e6857080f6a6463a21fc14d9f9a880) Fixing for renderer.EnableHtmlForInline case ### 📊 Changes **166 files changed** (+9970 additions, -3402 deletions) <details> <summary>View changed files</summary> ➕ `.editorconfig` (+38 -0) ➕ `appveyor.yml` (+46 -0) 📝 `readme.md` (+40 -26) 📝 `src/Markdig.Benchmarks/Markdig.Benchmarks.csproj` (+1 -1) ➖ `src/Markdig.Benchmarks/Markdig.Benchmarks.nuget.targets` (+0 -9) 📝 `src/Markdig.Benchmarks/Program.cs` (+1 -1) 📝 `src/Markdig.Benchmarks/app.config` (+1 -1) 📝 `src/Markdig.Benchmarks/project.json` (+4 -4) 📝 `src/Markdig.Tests/Markdig.Tests.csproj` (+15 -4) 📝 `src/Markdig.Tests/Specs/AbbreviationSpecs.md` (+53 -0) ➕ `src/Markdig.Tests/Specs/AutoLinks.md` (+78 -0) 📝 `src/Markdig.Tests/Specs/DefinitionListSpecs.md` (+25 -0) ➕ `src/Markdig.Tests/Specs/DiagramsSpecs.md` (+26 -0) 📝 `src/Markdig.Tests/Specs/EmojiSpecs.md` (+21 -3) 📝 `src/Markdig.Tests/Specs/EmphasisExtraSpecs.md` (+24 -0) 📝 `src/Markdig.Tests/Specs/GenericAttributesSpecs.md` (+2 -2) 📝 `src/Markdig.Tests/Specs/GridTableSpecs.md` (+105 -5) ➕ `src/Markdig.Tests/Specs/JiraLinks.md` (+77 -0) 📝 `src/Markdig.Tests/Specs/ListExtraSpecs.md` (+20 -2) 📝 `src/Markdig.Tests/Specs/MathSpecs.md` (+52 -3) _...and 80 more files_ </details> ### 📄 Description See attached the unit tests and bugfixes for the normalization renderer. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
claunia added the pull-request label 2026-01-29 14:46:15 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/markdig#837