Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(v3): documentation including all of the changes made for version 3 #95

Open
wants to merge 41 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
8aec0ac
docs: update imports for table extension
nperez0111 Jan 20, 2025
22768ea
feat: add docs for the static renderer
nperez0111 Jan 20, 2025
6fa9fa3
feat: add accessibility docs (#65)
nperez0111 Jan 20, 2025
01958bd
Add new FloatingUI based API for BubbleMenu and FloatingMenu (#16)
bdbch Jan 20, 2025
ccfb669
feat: add delete event docs
nperez0111 Jan 24, 2025
2699c1c
fix: add new mount api
nperez0111 Jan 24, 2025
6704da4
feat: update docs to reference new import path
nperez0111 Jan 24, 2025
4514b86
feat: rough draft of a migration guide to v3
nperez0111 Jan 24, 2025
eca5889
chore: update migration guide docs
nperez0111 Jan 27, 2025
686b5df
fix: update docs for json import & export
nperez0111 Jan 28, 2025
5975f92
feat: docs for new extensions
nperez0111 Jan 28, 2025
b84c8ff
feat: update install path for `@tiptap/extensions`
nperez0111 Jan 28, 2025
2a030ab
fix: update set content signature
nperez0111 Jan 28, 2025
75b8901
fix: update clear content docs
nperez0111 Jan 28, 2025
cf9bd75
fix: update starter-kit's included extensions
nperez0111 Jan 28, 2025
0a7208e
fix: add a demo to starter-kit
nperez0111 Jan 28, 2025
2ec136f
added y-tiptap to docs (#96)
bdbch Jan 28, 2025
b874421
feat: add faq
nperez0111 Jan 29, 2025
d85a543
chore: add links
nperez0111 Jan 29, 2025
85d088f
fix: update the typescript guide for new storage types
nperez0111 Jan 29, 2025
be22939
chore: reformat
nperez0111 Jan 29, 2025
072fb20
chore: make url accessible
nperez0111 Jan 29, 2025
f77940e
feat: add minimal installs and promote kits wherever possible
nperez0111 Jan 29, 2025
2ad8274
build: use shiki for highlighting instead
nperez0111 Jan 29, 2025
04d57b8
feat: add codemod callout
nperez0111 Jan 29, 2025
96cee63
feat: add docs for mark views, and revamp extensions, nodes, marks docs
nperez0111 Jan 31, 2025
c3140c3
chore: minor change
nperez0111 Feb 5, 2025
8255e81
switch from npm to pnpm
bdbch Feb 20, 2025
514f217
install fast-glob as dev dependency
bdbch Feb 20, 2025
4e46777
update AI extension docs removing mentions of the advanced AI extensi…
bdbch Feb 24, 2025
797a9e6
update docs to include new installation and usage guides for the new …
bdbch Feb 24, 2025
0324712
get rid of useLegacyWrapping information
bdbch Feb 24, 2025
8f1ef5e
Update undo-redo docs to reflect updated extension names (#108)
bdbch Mar 12, 2025
cc5f055
Rename CollaboationCursor docs to Caret (#109)
bdbch Mar 12, 2025
19df353
rename Collaboration/Document history to Snapshot/s (#106)
bdbch Mar 12, 2025
03c4272
sync with main
bdbch Mar 24, 2025
b5d6e46
Merge branch 'next' of github.com:ueberdosis/tiptap-docs into next
bdbch Mar 24, 2025
7bbfbda
merge main
bdbch Mar 27, 2025
ecb8631
sync next with main
bdbch Mar 27, 2025
70a54ea
Merge branch 'main' of github.com:ueberdosis/tiptap-docs into next
bdbch Mar 27, 2025
3899b5e
docs: update `mount` and `unmount` docs (#126)
nperez0111 Mar 28, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/gold-dodos-deny.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'tiptap-docs': major
---

Update docs for undo-redo extension to reflect the renaming changes
5 changes: 5 additions & 0 deletions .changeset/happy-shoes-sip.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'tiptap-docs': major
---

Updated docs to reflect package name changes for collaboration cursor
5 changes: 5 additions & 0 deletions .changeset/neat-donuts-notice.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'tiptap-docs': major
---

Add new API for FloatingUI based BubbleMenu and FloatingMenu extensions
5 changes: 5 additions & 0 deletions .changeset/shiny-cobras-marry.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'tiptap-docs': minor
---

Changed the docs for the AI extension and removed the AI Advanced documentation
11 changes: 9 additions & 2 deletions next.config.mjs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import createMdx from '@next/mdx'
import remarkFrontmatter from 'remark-frontmatter'
import remarkMdxFrontmatter from 'remark-mdx-frontmatter'
import rehypeHighlight from 'rehype-highlight'
import rehypeShiki from '@shikijs/rehype'
import remarkGfm from 'remark-gfm'

/** @type {import('next').NextConfig} */
Expand Down Expand Up @@ -99,7 +99,14 @@ const nextConfig = {
const withMDX = createMdx({
options: {
remarkPlugins: [remarkFrontmatter, remarkMdxFrontmatter, remarkGfm],
rehypePlugins: [rehypeHighlight],
rehypePlugins: [
[
rehypeShiki,
{
theme: 'github-dark-high-contrast',
},
],
],
},
})

Expand Down
Loading