[PR #1527] [CLOSED] init suport for org mode #15944

Closed
opened 2025-11-02 11:58:36 -06:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/go-gitea/gitea/pull/1527
Author: @lunny
Created: 4/21/2017
Status: Closed

Base: masterHead: lunny/org-mode-support


📝 Commits (1)

📊 Changes

33 files changed (+1831 additions, -803 deletions)

View changed files

📝 main.go (+3 -0)
📝 models/issue_comment.go (+2 -2)
📝 models/issue_mail.go (+2 -2)
📝 models/mail.go (+1 -1)
📝 models/migrations/v16.go (+2 -2)
📝 models/repo.go (+5 -5)
📝 models/repo_test.go (+6 -6)
📝 models/user.go (+3 -3)
📝 modules/markup/html.go (+162 -453)
📝 modules/markup/html_test.go (+16 -303)
modules/markup/markdown/markdown.go (+100 -0)
modules/markup/markdown/markdown_test.go (+308 -0)
modules/markup/markdown/renderer.go (+120 -0)
📝 modules/markup/markup.go (+124 -10)
modules/markup/orgmode/orgmode.go (+44 -0)
modules/markup/orgmode/orgmode_test.go (+5 -0)
📝 modules/markup/sanitizer.go (+1 -1)
📝 modules/markup/sanitizer_test.go (+1 -1)
📝 modules/templates/helper.go (+3 -3)
📝 routers/api/v1/misc/markdown.go (+3 -2)

...and 13 more files

📄 Description

will resolve #1272


🔄 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/1527 **Author:** [@lunny](https://github.com/lunny) **Created:** 4/21/2017 **Status:** ❌ Closed **Base:** `master` ← **Head:** `lunny/org-mode-support` --- ### 📝 Commits (1) - [`9744bca`](https://github.com/go-gitea/gitea/commit/9744bca6b9887ead7c3177cb0537982e9c24177a) init suport for org mode ### 📊 Changes **33 files changed** (+1831 additions, -803 deletions) <details> <summary>View changed files</summary> 📝 `main.go` (+3 -0) 📝 `models/issue_comment.go` (+2 -2) 📝 `models/issue_mail.go` (+2 -2) 📝 `models/mail.go` (+1 -1) 📝 `models/migrations/v16.go` (+2 -2) 📝 `models/repo.go` (+5 -5) 📝 `models/repo_test.go` (+6 -6) 📝 `models/user.go` (+3 -3) 📝 `modules/markup/html.go` (+162 -453) 📝 `modules/markup/html_test.go` (+16 -303) ➕ `modules/markup/markdown/markdown.go` (+100 -0) ➕ `modules/markup/markdown/markdown_test.go` (+308 -0) ➕ `modules/markup/markdown/renderer.go` (+120 -0) 📝 `modules/markup/markup.go` (+124 -10) ➕ `modules/markup/orgmode/orgmode.go` (+44 -0) ➕ `modules/markup/orgmode/orgmode_test.go` (+5 -0) 📝 `modules/markup/sanitizer.go` (+1 -1) 📝 `modules/markup/sanitizer_test.go` (+1 -1) 📝 `modules/templates/helper.go` (+3 -3) 📝 `routers/api/v1/misc/markdown.go` (+3 -2) _...and 13 more files_ </details> ### 📄 Description will resolve #1272 --- <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 11:58:36 -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#15944