Add support for rendering math equations in the web view (#733)

- Add parsing logic for LaTeX-format math equations in the web chat
- Add placeholder delimiters when converting the markdown to HTML in order to avoid removing the escaped characters
- Add the `<!DOCTYPE html>` specification to the page
This commit is contained in:
sabaimran
2024-05-04 03:29:17 -07:00
committed by GitHub
parent d9b3482b1a
commit 7100614de5
3 changed files with 43 additions and 6 deletions

View File

@@ -22,7 +22,7 @@ on:
jobs:
test:
name: Run Tests
name: Setup Application and Lint
runs-on: ubuntu-latest
strategy:
fail-fast: false
@@ -42,7 +42,7 @@ jobs:
python -m pip install --upgrade pip
- name: ⬇️ Install Application
run: pip install --upgrade .[dev]
run: pip install --no-cache-dir --upgrade .[dev]
- name: 🌡️ Validate Application
run: pre-commit run --hook-stage manual --all