[PR #2525] [MERGED] Add init support of orgmode document type on file view and readme #16445

Closed
opened 2025-11-02 12:10:48 -06:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/go-gitea/gitea/pull/2525
Author: @lunny
Created: 9/17/2017
Status: Merged
Merged: 9/21/2017
Merged by: @lunny

Base: masterHead: lunny/org-mode-support2


📝 Commits (7)

  • a73058f add init support of orgmode document type on file view and readme
  • 2cafa3c fix imports
  • bb044eb fix imports and readmeExist
  • 378f34a fix imports order
  • c27558e fix format
  • f2eac3d remove unnecessary convert
  • f53ee7c Merge branch 'master' into lunny/org-mode-support2

📊 Changes

21 files changed (+1103 additions, -66 deletions)

View changed files

📝 main.go (+4 -0)
📝 models/mail.go (+1 -1)
📝 modules/markup/html_test.go (+1 -1)
📝 modules/markup/markdown/markdown.go (+9 -9)
📝 modules/markup/markdown/markdown_test.go (+1 -42)
📝 modules/markup/markup_test.go (+1 -1)
modules/markup/orgmode/orgmode.go (+56 -0)
modules/markup/orgmode/orgmode_test.go (+54 -0)
📝 routers/api/v1/misc/markdown.go (+1 -1)
📝 routers/repo/issue.go (+1 -1)
📝 routers/repo/release.go (+1 -1)
📝 routers/repo/view.go (+4 -6)
📝 routers/repo/wiki.go (+1 -1)
📝 templates/repo/view_file.tmpl (+2 -2)
vendor/github.com/chaseadamsio/goorgeous/LICENSE (+21 -0)
vendor/github.com/chaseadamsio/goorgeous/README.org (+66 -0)
vendor/github.com/chaseadamsio/goorgeous/goorgeous.go (+803 -0)
vendor/github.com/chaseadamsio/goorgeous/gopher.gif (+0 -0)
vendor/github.com/chaseadamsio/goorgeous/gopher_small.gif (+0 -0)
vendor/github.com/chaseadamsio/goorgeous/header.go (+70 -0)

...and 1 more files

📄 Description

will be part of #374 and replace #1527


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/go-gitea/gitea/pull/2525 **Author:** [@lunny](https://github.com/lunny) **Created:** 9/17/2017 **Status:** ✅ Merged **Merged:** 9/21/2017 **Merged by:** [@lunny](https://github.com/lunny) **Base:** `master` ← **Head:** `lunny/org-mode-support2` --- ### 📝 Commits (7) - [`a73058f`](https://github.com/go-gitea/gitea/commit/a73058fbdcfb7c029f992a54e1146af5ad0af20f) add init support of orgmode document type on file view and readme - [`2cafa3c`](https://github.com/go-gitea/gitea/commit/2cafa3c158e36c0fe6381c7730d1f663767f6609) fix imports - [`bb044eb`](https://github.com/go-gitea/gitea/commit/bb044ebb9cd461833d5c3b6f84509d55bd85653d) fix imports and readmeExist - [`378f34a`](https://github.com/go-gitea/gitea/commit/378f34a48acdc5a4f741af8939073ddd1d877b5c) fix imports order - [`c27558e`](https://github.com/go-gitea/gitea/commit/c27558e9c3fb2bf2e22d0e96adb981444ddc4af3) fix format - [`f2eac3d`](https://github.com/go-gitea/gitea/commit/f2eac3d55139a95e0a82a1217a9481e505df3c6f) remove unnecessary convert - [`f53ee7c`](https://github.com/go-gitea/gitea/commit/f53ee7c9fc2f5df9545cb1601cb8eca98925f0aa) Merge branch 'master' into lunny/org-mode-support2 ### 📊 Changes **21 files changed** (+1103 additions, -66 deletions) <details> <summary>View changed files</summary> 📝 `main.go` (+4 -0) 📝 `models/mail.go` (+1 -1) 📝 `modules/markup/html_test.go` (+1 -1) 📝 `modules/markup/markdown/markdown.go` (+9 -9) 📝 `modules/markup/markdown/markdown_test.go` (+1 -42) 📝 `modules/markup/markup_test.go` (+1 -1) ➕ `modules/markup/orgmode/orgmode.go` (+56 -0) ➕ `modules/markup/orgmode/orgmode_test.go` (+54 -0) 📝 `routers/api/v1/misc/markdown.go` (+1 -1) 📝 `routers/repo/issue.go` (+1 -1) 📝 `routers/repo/release.go` (+1 -1) 📝 `routers/repo/view.go` (+4 -6) 📝 `routers/repo/wiki.go` (+1 -1) 📝 `templates/repo/view_file.tmpl` (+2 -2) ➕ `vendor/github.com/chaseadamsio/goorgeous/LICENSE` (+21 -0) ➕ `vendor/github.com/chaseadamsio/goorgeous/README.org` (+66 -0) ➕ `vendor/github.com/chaseadamsio/goorgeous/goorgeous.go` (+803 -0) ➕ `vendor/github.com/chaseadamsio/goorgeous/gopher.gif` (+0 -0) ➕ `vendor/github.com/chaseadamsio/goorgeous/gopher_small.gif` (+0 -0) ➕ `vendor/github.com/chaseadamsio/goorgeous/header.go` (+70 -0) _...and 1 more files_ </details> ### 📄 Description will be part of #374 and replace #1527 --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2025-11-02 12:10:48 -06:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/gitea#16445