Skip to content

Commit

Permalink
experiment with making our own markdown editor
Browse files Browse the repository at this point in the history
  • Loading branch information
invisal committed Jul 21, 2024
1 parent 3736a1f commit dcdc192
Show file tree
Hide file tree
Showing 7 changed files with 537 additions and 1 deletion.
264 changes: 264 additions & 0 deletions package-lock.json

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

3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/sortable": "^8.0.0",
"@justmiracle/result": "^1.2.0",
"@lexical/markdown": "^0.16.1",
"@lexical/react": "^0.16.1",
"@lezer/common": "^1.2.1",
"@lezer/lr": "^1.4.0",
"@libsql/client": "^0.5.3",
Expand Down Expand Up @@ -81,6 +83,7 @@
"drizzle-orm": "^0.30.1",
"eslint-plugin-jest": "^27.6.3",
"file-saver": "^2.0.5",
"lexical": "^0.16.1",
"libsql-stateless-easy": "^1.6.11",
"lucia": "^3.2.0",
"lucide-react": "^0.309.0",
Expand Down
9 changes: 9 additions & 0 deletions src/app/testing/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import MarkdownEditor from "@/components/markdown-editor";

export default function TestingPage() {
return (
<div className="w-screen h-screen">
<MarkdownEditor />
</div>
);
}
Loading

0 comments on commit dcdc192

Please sign in to comment.