]> source.dussan.org Git - gitea.git/commit
Editor preview support for external renderers (#23333)
authorBrecht Van Lommel <brecht@blender.org>
Fri, 24 Mar 2023 06:12:23 +0000 (07:12 +0100)
committerGitHub <noreply@github.com>
Fri, 24 Mar 2023 06:12:23 +0000 (14:12 +0800)
commit84daddc2fa74393cdc13371b0cc44f0444cfdae0
treeeaf75d3173ee67d65288accef86bbb7c6c08535e
parent9e04627acaaa853e5269f98f53f2615077cfb028
Editor preview support for external renderers (#23333)

Remove `[repository.editor] PREVIEWABLE_FILE_MODES` setting that seemed
like it was intended to support this but did not work. Instead, whenever
viewing a file shows a preview, also have a Preview tab in the file
editor.

Add new `/markup` web and API endpoints with `comment`, `gfm`,
`markdown` and new `file` mode that uses a file path to determine the
renderer.

Remove `/markdown` web endpoint but keep the API for backwards and
GitHub compatibility.

## ⚠️ BREAKING ⚠️

The `[repository.editor] PREVIEWABLE_FILE_MODES` setting was removed.
This setting served no practical purpose and was not working correctly.
Instead a preview tab is always shown in the file editor when supported.

---------

Co-authored-by: zeripath <art27@cantab.net>
Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
25 files changed:
custom/conf/app.example.ini
modules/markup/renderer.go
modules/setting/repository.go
modules/structs/miscellaneous.go
routers/api/v1/api.go
routers/api/v1/misc/markdown.go [deleted file]
routers/api/v1/misc/markdown_test.go [deleted file]
routers/api/v1/misc/markup.go [new file with mode: 0644]
routers/api/v1/misc/markup_test.go [new file with mode: 0644]
routers/api/v1/swagger/options.go
routers/common/markup.go [new file with mode: 0644]
routers/web/misc/markdown.go [deleted file]
routers/web/misc/markup.go [new file with mode: 0644]
routers/web/repo/editor.go
routers/web/web.go
templates/repo/diff/box.tmpl
templates/repo/diff/comment_form.tmpl
templates/repo/editor/edit.tmpl
templates/repo/issue/comment_tab.tmpl
templates/repo/issue/view_content.tmpl
templates/repo/release/new.tmpl
templates/repo/wiki/new.tmpl
templates/swagger/v1_json.tmpl
web_src/js/features/codeeditor.js
web_src/js/features/repo-editor.js