[PR #4478] [MERGED] Render html optional #4644

Closed
opened 2026-02-22 18:36:15 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/Mintplex-Labs/anything-llm/pull/4478
Author: @timothycarambat
Created: 10/2/2025
Status: Merged
Merged: 10/2/2025
Merged by: @timothycarambat

Base: masterHead: 4476-render-html-optional


📝 Commits (3)

  • c1d1f39 allow user to render HTML in chat responses
  • 52958ed add file
  • b0136a3 Add translation for all non-en

📊 Changes

26 files changed (+153 additions, -3 deletions)

View changed files

📝 frontend/src/locales/ar/common.js (+4 -0)
📝 frontend/src/locales/da/common.js (+4 -0)
📝 frontend/src/locales/de/common.js (+4 -0)
📝 frontend/src/locales/en/common.js (+5 -0)
📝 frontend/src/locales/es/common.js (+4 -0)
📝 frontend/src/locales/et/common.js (+4 -0)
📝 frontend/src/locales/fa/common.js (+4 -0)
📝 frontend/src/locales/fr/common.js (+4 -0)
📝 frontend/src/locales/he/common.js (+4 -0)
📝 frontend/src/locales/it/common.js (+4 -0)
📝 frontend/src/locales/ja/common.js (+4 -0)
📝 frontend/src/locales/ko/common.js (+4 -0)
📝 frontend/src/locales/lv/common.js (+4 -0)
📝 frontend/src/locales/nl/common.js (+4 -0)
📝 frontend/src/locales/pl/common.js (+4 -0)
📝 frontend/src/locales/pt_BR/common.js (+4 -0)
📝 frontend/src/locales/ro/common.js (+4 -0)
📝 frontend/src/locales/ru/common.js (+4 -0)
📝 frontend/src/locales/tr/common.js (+4 -0)
📝 frontend/src/locales/vn/common.js (+4 -0)

...and 6 more files

📄 Description

Pull Request Type

  • feat
  • 🐛 fix
  • ♻️ refactor
  • 💄 style
  • 🔨 chore
  • 📝 docs

Relevant Issues

resolves #4476

What is in this change?

  • User-specific config to allow rendering of raw HTML in the markdown viewer

Additional Information

Developer Validations

  • I ran yarn lint from the root of the repo & committed changes
  • Relevant documentation has been updated
  • I have tested my code functionality
  • Docker build succeeds locally

🔄 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/Mintplex-Labs/anything-llm/pull/4478 **Author:** [@timothycarambat](https://github.com/timothycarambat) **Created:** 10/2/2025 **Status:** ✅ Merged **Merged:** 10/2/2025 **Merged by:** [@timothycarambat](https://github.com/timothycarambat) **Base:** `master` ← **Head:** `4476-render-html-optional` --- ### 📝 Commits (3) - [`c1d1f39`](https://github.com/Mintplex-Labs/anything-llm/commit/c1d1f39e74ffad0a3a26c9bea69becefbf7c680c) allow user to render HTML in chat responses - [`52958ed`](https://github.com/Mintplex-Labs/anything-llm/commit/52958ed81a35659a05e492e419ab6e3c14d2f417) add file - [`b0136a3`](https://github.com/Mintplex-Labs/anything-llm/commit/b0136a33e6d87bb4b726809ec4e121001bd08e47) Add translation for all non-en ### 📊 Changes **26 files changed** (+153 additions, -3 deletions) <details> <summary>View changed files</summary> 📝 `frontend/src/locales/ar/common.js` (+4 -0) 📝 `frontend/src/locales/da/common.js` (+4 -0) 📝 `frontend/src/locales/de/common.js` (+4 -0) 📝 `frontend/src/locales/en/common.js` (+5 -0) 📝 `frontend/src/locales/es/common.js` (+4 -0) 📝 `frontend/src/locales/et/common.js` (+4 -0) 📝 `frontend/src/locales/fa/common.js` (+4 -0) 📝 `frontend/src/locales/fr/common.js` (+4 -0) 📝 `frontend/src/locales/he/common.js` (+4 -0) 📝 `frontend/src/locales/it/common.js` (+4 -0) 📝 `frontend/src/locales/ja/common.js` (+4 -0) 📝 `frontend/src/locales/ko/common.js` (+4 -0) 📝 `frontend/src/locales/lv/common.js` (+4 -0) 📝 `frontend/src/locales/nl/common.js` (+4 -0) 📝 `frontend/src/locales/pl/common.js` (+4 -0) 📝 `frontend/src/locales/pt_BR/common.js` (+4 -0) 📝 `frontend/src/locales/ro/common.js` (+4 -0) 📝 `frontend/src/locales/ru/common.js` (+4 -0) 📝 `frontend/src/locales/tr/common.js` (+4 -0) 📝 `frontend/src/locales/vn/common.js` (+4 -0) _...and 6 more files_ </details> ### 📄 Description ### Pull Request Type <!-- For change type, change [ ] to [x]. --> - [x] ✨ feat - [ ] 🐛 fix - [ ] ♻️ refactor - [x] 💄 style - [ ] 🔨 chore - [ ] 📝 docs ### Relevant Issues <!-- Use "resolves #xxx" to auto resolve on merge. Otherwise, please use "connect #xxx" --> resolves #4476 ### What is in this change? - User-specific config to allow rendering of raw HTML in the markdown viewer <!-- Describe the changes in this PR that are impactful to the repo. --> ### Additional Information <!-- Add any other context about the Pull Request here that was not captured above. --> ### Developer Validations <!-- All of the applicable items should be checked. --> - [ ] I ran `yarn lint` from the root of the repo & committed changes - [ ] Relevant documentation has been updated - [ ] I have tested my code functionality - [ ] Docker build succeeds locally --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-22 18:36:15 -05:00
yindo closed this issue 2026-02-22 18:36:15 -05:00
yindo changed title from [PR #4478] Render html optional to [PR #4478] [MERGED] Render html optional 2026-06-05 15:19:35 -04:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: Mintplex-Labs/anything-llm#4644