aboutsummaryrefslogtreecommitdiffstats
path: root/docs/content/administration/mail-templates.en-us.md
Commit message (Collapse)AuthorAgeFilesLines
* Remove docs sub folder since docs has been moved to ↵Lunny Xiao2024-07-101-278/+0
| | | | https://gitea.com/gitea/docs (#31536)
* remove repetitive words (#29695)pengqiseven2024-03-111-1/+1
| | | Signed-off-by: pengqiseven <912170095@qq.com>
* Remove unnecessary SanitizeHTML from code (#29575)wxiaoguang2024-03-041-1/+1
| | | | | | * "mail/issue/default.tmpl": the body is rendered by backend `markdown.RenderString() HTML`, it has been already sanitized * "repo/settings/webhook/base_list.tmpl": "Description" is prepared by backend `ctx.Tr`, it doesn't need to be sanitized
* Breaking summary for template refactoring (#29395)wxiaoguang2024-03-031-8/+8
| | | https://github.com/go-gitea/gitea/pull/29395
* Rename Str2html to SanitizeHTML and clarify its behavior (#29516)wxiaoguang2024-03-011-5/+5
| | | | | Str2html was abused a lot. So use a proper name for it: SanitizeHTML And add some tests to show its behavior.
* Refactor Safe modifier (#29392)wxiaoguang2024-02-251-1/+1
| | | | After this PR: no need to play with the Safe/Escape tricks anymore. See the changes for more details.
* Enable markdownlint `no-trailing-punctuation` and `no-blanks-blockquote` ↵silverwind2024-02-171-2/+2
| | | | | (#29214) Enable these two and fix issues.
* Update golang links to use https (#28980)Mike Cifelli2024-01-301-4/+4
| | | | | | | Many of the golang links point to the old site and don't use https. This pull request updates these outdated links to https://go.dev . https://github.com/go-gitea/gitea/issues/28979
* Use docs.gitea.com instead of docs.gitea.io (#26739)Lunny Xiao2023-08-271-2/+2
|
* Docusaurus-ify (#26051)John Olheiser2023-07-261-0/+278
This PR cleans up the docs in a way to make them simpler to ingest by our [docs repo](https://gitea.com/gitea/gitea-docusaurus). 1. It includes all of the sed invocations our ingestion did, removing the need to do it at build time. 2. It replaces the shortcode variable replacement method with `@variable@` style, simply for easier sed invocations when required. 3. It removes unused files and moves the docs up a level as cleanup. --------- Signed-off-by: jolheiser <john.olheiser@gmail.com>