AsciiDoc-Gitea article: Updated Gitea-patch to 1.10.0.

This commit is contained in:
tastytea 2019-11-14 14:32:54 +01:00
parent d3bfd509b9
commit c9b084cf74
Signed by: tastytea
GPG Key ID: CFC39497F1B26E07
1 changed files with 29 additions and 17 deletions

View File

@ -10,7 +10,7 @@ tags:
In this blogpost I describe what I did to get AsciiDoc support into In this blogpost I describe what I did to get AsciiDoc support into
https://gitea.io/[Gitea]. If you want more than syntax highlighting and basic https://gitea.io/[Gitea]. If you want more than syntax highlighting and basic
formatting, Gitea has to be patched unfortunately(this formatting, Gitea has to be patched unfortunately(this
https://github.com/go-gitea/gitea/issues/4935[issue] has already been reported). https://github.com/go-gitea/gitea/issues/4935[issue] has already been reported).
But I think most people will only need to edit 1 configuration file and are But I think most people will only need to edit 1 configuration file and are
done. done.
@ -67,25 +67,29 @@ and the `class` exception is only useful if you add custom CSS to use them.
Apply the patch with `patch -p1 < gitea_relax-sanitizer.patch`. Apply the patch with `patch -p1 < gitea_relax-sanitizer.patch`.
---- ----
{{< highlight diff >}}diff -ur a/modules/markup/sanitizer.go b/modules/markup/sanitizer.go {{< highlight diff >}}
--- a/modules/markup/sanitizer.go 2019-01-26 16:04:56.014108339 +0100 diff --git a/modules/markup/sanitizer.go b/modules/markup/sanitizer.go
+++ b/modules/markup/sanitizer.go 2019-01-26 16:03:21.776401012 +0100 index fd6f90b2a..ae11811b6 100644
@@ -38,6 +38,16 @@ --- a/modules/markup/sanitizer.go
+++ b/modules/markup/sanitizer.go
@@ -41,5 +41,16 @@ func NewSanitizer() {
// Custom URL-Schemes // Allow keyword markup
sanitizer.policy.AllowURLSchemes(setting.Markdown.CustomURLSchemes...) sanitizer.policy.AllowAttrs("class").Matching(regexp.MustCompile(`^` + keywordClass + `$`)).OnElements("span")
+ // Allow style on span tags
+ sanitizer.policy.AllowAttrs("style").Matching(regexp.MustCompile(`^(background-)?color:[^;]+(; ?font[^;]+)?;?$`)).OnElements("span")
+ +
+ // Allow class attribute + // Allow style on span tags
+ sanitizer.policy.AllowAttrs("class").OnElements("code", "pre", "span", "div", "p", "table", "td") + sanitizer.policy.AllowAttrs("style").Matching(regexp.MustCompile(`^(background-)?color:[^;]+(; ?font[^;]+)?;?$`)).OnElements("span")
+ +
+ // Allow table attributes + // Allow class attribute
+ sanitizer.policy.AllowAttrs("width", "frame", "rules", "cellspacing", "cellpadding").OnElements("table") + sanitizer.policy.AllowAttrs("class").OnElements("code", "pre", "span", "div", "p", "table", "td")
+ sanitizer.policy.AllowAttrs("width").OnElements("col") +
+ sanitizer.policy.AllowAttrs("align", "valign").OnElements("td") + // Allow table attributes
}) + sanitizer.policy.AllowAttrs("width", "frame", "rules", "cellspacing", "cellpadding").OnElements("table")
}{{< / highlight >}} + sanitizer.policy.AllowAttrs("width").OnElements("col")
+ sanitizer.policy.AllowAttrs("align", "valign").OnElements("td")
})
}
{{< / highlight >}}
---- ----
== Tables without borders == Tables without borders
@ -109,3 +113,11 @@ In your Gitea directory, create `custom/templates/custom/header.tmpl`.
} }
</style>{{< / highlight >}} </style>{{< / highlight >}}
---- ----
== Updates
* 2019-11-14: Updated Gitea patch for 1.10.0.
// Local Variables:
// no-ws-cleanup: t
// End: