-
-
Notifications
You must be signed in to change notification settings - Fork 5.7k
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
Don't transform quotes in Markdown #11001
Labels
type/proposal
The new feature has not been accepted yet but needs to be discussed first.
Comments
@silverwind keep the quotes as-is? |
@bagasme yes that would be my preference. The less "magic" the better. |
I agree, but maybe make it optional for wikis. |
Changing the default now is difficult to necessarily sign off. However, #11047 shows the way to do it. Add a new frontmatter part:
|
silverwind
added a commit
to silverwind/gitea
that referenced
this issue
Jun 12, 2020
Previously we only disabled some of them. This disables all the default replacements that goldmark's typographer extension offers, matching GitHub's renderer. Ref: https://github.com/yuin/goldmark#typographer-extension Fixes: go-gitea#11001
techknowlogick
added a commit
that referenced
this issue
Jun 13, 2020
* Disable all typographic replacements in markdown renderer Previously we only disabled some of them. This disables all the default replacements that goldmark's typographer extension offers, matching GitHub's renderer. Ref: https://github.com/yuin/goldmark#typographer-extension Fixes: #11001 * remove typographer extension completely * fix test * really fix test Co-authored-by: Lauris BH <lauris@nix.lv> Co-authored-by: techknowlogick <techknowlogick@gitea.io>
ydelafollye
pushed a commit
to ydelafollye/gitea
that referenced
this issue
Jul 31, 2020
…1871) * Disable all typographic replacements in markdown renderer Previously we only disabled some of them. This disables all the default replacements that goldmark's typographer extension offers, matching GitHub's renderer. Ref: https://github.com/yuin/goldmark#typographer-extension Fixes: go-gitea#11001 * remove typographer extension completely * fix test * really fix test Co-authored-by: Lauris BH <lauris@nix.lv> Co-authored-by: techknowlogick <techknowlogick@gitea.io>
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Quotes outside of code blocks (example) are currently transformed to U+201C Left Double Quotation Mark and U+201D Right Double Quotation Mark. I think this transformation is generally unwanted and confusing because it alters the original content, so I'd like to see it removed. GitHub also does not do this.
The text was updated successfully, but these errors were encountered: