diff --git a/docs/src/demos/GettingStarted/index.vue b/docs/src/demos/Guide/GettingStarted/index.vue
similarity index 100%
rename from docs/src/demos/GettingStarted/index.vue
rename to docs/src/demos/Guide/GettingStarted/index.vue
diff --git a/docs/src/docPages/api/commands.md b/docs/src/docPages/api/commands.md
index 56e5b6fd..bfe76122 100644
--- a/docs/src/docPages/api/commands.md
+++ b/docs/src/docPages/api/commands.md
@@ -1,10 +1,13 @@
# Commands
+:::warning Out of date
+This content is written for tiptap 1 and needs an update.
+:::
+
- menus
- buttons
- commands
-
## .clearContent()
Clear the whole document.
diff --git a/docs/src/docPages/api/editor.md b/docs/src/docPages/api/editor.md
index 0c320aad..35ca120e 100644
--- a/docs/src/docPages/api/editor.md
+++ b/docs/src/docPages/api/editor.md
@@ -1,3 +1,7 @@
# Editor
+:::warning Out of date
+This content is written for tiptap 1 and needs an update.
+:::
+
This class is a central building block of tiptap. It does most of the heavy lifting of creating a working [ProseMirror](https://ProseMirror.net/) editor such as creating the [`EditorView`](https://ProseMirror.net/docs/ref/#view.EditorView), setting the initial [`EditorState`](https://ProseMirror.net/docs/ref/#state.Editor_State) and so on.
\ No newline at end of file
diff --git a/docs/src/docPages/api/schema.md b/docs/src/docPages/api/schema.md
index 98fa3c0e..5776e9c1 100644
--- a/docs/src/docPages/api/schema.md
+++ b/docs/src/docPages/api/schema.md
@@ -1,5 +1,9 @@
# Schema
+:::warning Out of date
+This content is written for tiptap 1 and needs an update.
+:::
+
Unlike many other editors, tiptap is based on a [schema](https://prosemirror.net/docs/guide/#schema) that defines how your content is structured. This enables you to define the kind of nodes that may occur in the document, its attributes and the way they can be nested.
This schema is *very* strict. You can’t use any HTML-element or attribute that is not defined in your schema.
diff --git a/docs/src/layouts/App/index.vue b/docs/src/layouts/App/index.vue
index d7278c34..6919d0fa 100644
--- a/docs/src/layouts/App/index.vue
+++ b/docs/src/layouts/App/index.vue
@@ -45,13 +45,13 @@
-
-
+
{{ item.title }}
-
-
+
{{ item.title }}
diff --git a/docs/src/layouts/App/style.scss b/docs/src/layouts/App/style.scss
index 6511dfae..333e8ae4 100644
--- a/docs/src/layouts/App/style.scss
+++ b/docs/src/layouts/App/style.scss
@@ -53,6 +53,10 @@ $menuBreakPoint: 750px;
color: $colorBlack;
background-color: rgba($colorBlack, 0.05);
}
+
+ &--draft {
+ color: rgba($colorBlack, 0.2);
+ }
}
&__header {
diff --git a/docs/src/links.yaml b/docs/src/links.yaml
index 249d8f28..739036e4 100644
--- a/docs/src/links.yaml
+++ b/docs/src/links.yaml
@@ -6,8 +6,10 @@
link: /general/installation
- title: Upgrade Guide
link: /general/upgrade-guide
+ draft: true
- title: Roadmap
link: /general/roadmap
+ draft: true
- title: Guide
items:
@@ -15,16 +17,22 @@
link: /guide/getting-started
- title: Configuration
link: /guide/configuration
+ draft: true
- title: Build your editor
link: /guide/build-your-editor
+ draft: true
- title: Custom styling
link: /guide/custom-styling
+ draft: true
- title: Get content
link: /guide/get-content
+ draft: true
- title: Custom extensions
link: /guide/custom-extensions
+ draft: true
- title: Use Vue Components
link: /guide/use-vue-components
+ draft: true
- title: Examples
items:
@@ -34,44 +42,62 @@
link: /examples/simple
- title: Menu Bubble
link: /examples/menu-bubble
+ draft: true
- title: Floating Menu
link: /examples/floating-menu
+ draft: true
- title: Links
link: /examples/links
+ draft: true
- title: Images
link: /examples/images
+ draft: true
- title: Hiding Menu Bar
link: /examples/hiding-menu-bar
+ draft: true
- title: Todo List
link: /examples/todo-list
+ draft: true
- title: Tables
link: /examples/tables
+ draft: true
- title: Search and Replace
link: /examples/search-and-replace
+ draft: true
- title: Suggestions
link: /examples/suggestions
+ draft: true
- title: Markdown Shortcuts
link: /examples/markdown-shortcuts
+ draft: true
- title: Code Highlighting
link: /examples/code-highlighting
+ draft: true
- title: History
link: /examples/history
+ draft: true
- title: Read-Only
link: /examples/read-only
- title: Embeds
link: /examples/embeds
+ draft: true
- title: Placeholder
link: /examples/placeholder
+ draft: true
- title: Focus
link: /examples/focus
- title: Collaboration
link: /examples/collaboration
+ draft: true
- title: Title
link: /examples/title
+ draft: true
- title: Trailing Paragraph
link: /examples/trailing-paragraph
+ draft: true
- title: Drag Handle
link: /examples/drag-handle
+ draft: true
- title: Export HTML or JSON
link: /examples/export-html-or-json
@@ -79,66 +105,95 @@
items:
- title: Editor
link: /api/editor/
+ draft: true
- title: Extensions
link: /api/extensions/
items:
- title: Blockquote
link: /api/extensions/blockquote
+ draft: true
- title: Bold
link: /api/extensions/bold
- title: BulletList
link: /api/extensions/bullet-list
+ draft: true
- title: Code
link: /api/extensions/code
+ draft: true
- title: CodeBlock
link: /api/extensions/code-block
+ draft: true
- title: CodeBlockHighlight
link: /api/extensions/code-block-highlight
+ draft: true
- title: Collaboration
link: /api/extensions/collaboration
+ draft: true
- title: Document
link: /api/extensions/document
+ draft: true
- title: Hardbreak
link: /api/extensions/hard-break
+ draft: true
- title: Heading
link: /api/extensions/heading
+ draft: true
- title: History
link: /api/extensions/history
+ draft: true
- title: HorizontalRule
link: /api/extensions/horizontal-rule
+ draft: true
- title: Italic
link: /api/extensions/italic
- title: Link
link: /api/extensions/link
+ draft: true
- title: ListItem
link: /api/extensions/list-item
+ draft: true
- title: Mention
link: /api/extensions/mention
+ draft: true
- title: OrderedList
link: /api/extensions/ordered-list
+ draft: true
- title: Paragraph
link: /api/extensions/paragraph
+ draft: true
- title: Placeholder
link: /api/extensions/placeholder
+ draft: true
- title: Strike
link: /api/extensions/strike
+ draft: true
- title: Text
link: /api/extensions/text
+ draft: true
- title: TableCell
link: /api/extensions/table-cell
+ draft: true
- title: TableHeader
link: /api/extensions/table-header
+ draft: true
- title: TableRow
link: /api/extensions/table-row
+ draft: true
- title: TodoItem
link: /api/extensions/todo-item
+ draft: true
- title: TodoList
link: /api/extensions/todo-list
+ draft: true
- title: Underline
link: /api/extensions/underline
+ draft: true
- title: Commands
link: /api/commands/
+ draft: true
- title: Events
link: /api/events/
+ draft: true
- title: Schema
- link: /api/schema/
\ No newline at end of file
+ link: /api/schema/
+ draft: true
\ No newline at end of file