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

@ -67,13 +67,16 @@ 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`.
----
{{< highlight diff >}}diff -ur a/modules/markup/sanitizer.go b/modules/markup/sanitizer.go
--- a/modules/markup/sanitizer.go 2019-01-26 16:04:56.014108339 +0100
+++ b/modules/markup/sanitizer.go 2019-01-26 16:03:21.776401012 +0100
@@ -38,6 +38,16 @@
{{< highlight diff >}}
diff --git a/modules/markup/sanitizer.go b/modules/markup/sanitizer.go
index fd6f90b2a..ae11811b6 100644
--- a/modules/markup/sanitizer.go
+++ b/modules/markup/sanitizer.go
@@ -41,5 +41,16 @@ func NewSanitizer() {
// Custom URL-Schemes
sanitizer.policy.AllowURLSchemes(setting.Markdown.CustomURLSchemes...)
// Allow keyword markup
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")
+
@ -85,7 +88,8 @@ Apply the patch with `patch -p1 < gitea_relax-sanitizer.patch`.
+ sanitizer.policy.AllowAttrs("width").OnElements("col")
+ sanitizer.policy.AllowAttrs("align", "valign").OnElements("td")
})
}{{< / highlight >}}
}
{{< / highlight >}}
----
== Tables without borders
@ -109,3 +113,11 @@ In your Gitea directory, create `custom/templates/custom/header.tmpl`.
}
</style>{{< / highlight >}}
----
== Updates
* 2019-11-14: Updated Gitea patch for 1.10.0.
// Local Variables:
// no-ws-cleanup: t
// End: