Skip to content

Commit

Permalink
Merge pull request #95 from kaeladair/main
Browse files Browse the repository at this point in the history
Markdown & LaTeX rendering, code blocks w/ syntax highlighting, styled tables, headings, and lists.
  • Loading branch information
adamcohenhillel authored Mar 15, 2024
2 parents 2d6de63 + a879c60 commit e153279
Show file tree
Hide file tree
Showing 9 changed files with 330 additions and 28 deletions.
1 change: 0 additions & 1 deletion app/android/.idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

160 changes: 158 additions & 2 deletions app/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,14 @@
"@supabase/auth-helpers-react": "^0.4.2",
"@supabase/supabase-js": "^2.39.3",
"@tanstack/react-query": "^5.18.1",
"@types/katex": "^0.16.7",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"framer-motion": "^11.0.3",
"highlight.js": "^11.9.0",
"katex": "^0.16.9",
"lucide-react": "^0.321.0",
"markdown-it": "^14.0.0",
"next": "14.1.0",
"next-themes": "^0.2.1",
"react": "^18",
Expand All @@ -44,6 +48,8 @@
},
"devDependencies": {
"@capacitor/cli": "^5.6.0",
"@tailwindcss/typography": "^0.5.10",
"@types/markdown-it": "^13.0.7",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
Expand Down
2 changes: 1 addition & 1 deletion app/src/components/Chat.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ export default function Chat({
</NavMenu>
</div>

<div className="mb-32 mt-12 p-8">
<div className="mb-32 mt-12 p-4 md:p-8">
<ChatLog messages={messages} waitingForResponse={waitingForResponse} />
</div>

Expand Down
Loading

0 comments on commit e153279

Please sign in to comment.