mirror of
https://github.com/xoofx/markdig.git
synced 2026-02-03 21:36:36 +00:00
Package ID Prefix Issue #492
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @wbaldoumas on GitHub (Jan 12, 2022).
I am currently working on a small Markdig extension that adds markdown syntax highlighting by leveraging ColorCode-Universal, which is an updated version of ColorCode.
Unfortunately, I am running into an issue when trying to publish the library as a NuGet package:
I believe the issue is that "Markdig" is a reserved package ID prefix. Removing "Markdig" from the extension name will obscure its purpose from potential users of the library. Is there a path forward to being unblocked and publishing this extension as
Markdig.ColorCode?@xoofx commented on GitHub (Jan 13, 2022):
No there is no path apart prefixing your package with your own name as everybody else is doing. There is one exception for
Markdig.Wpf, but this package existed before the Markdig prefix was locked. Having a package likeMarkdig.ColorCodeor any other packages would be very confusing as folks might think that it comes from this repo or it is supported in similar way.@wbaldoumas commented on GitHub (Jan 13, 2022):
Hey, thanks for your response and clarification. I'll find another package name that works and is still clear about what it does. I'll also be sure to adjust my repository name to match. 😄