Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
W
wax-prosemirror
Manage
Activity
Members
Labels
Plan
Issues
34
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
2
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
wax
wax-prosemirror
Commits
23d61793
Commit
23d61793
authored
1 year ago
by
chris
Browse files
Options
Downloads
Plain Diff
Merge branch 'master' of gitlab.coko.foundation:wax/wax-prosemirror
parents
3ea6f9c1
26e97a34
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
wax-questions-service/README.md
+7
-0
7 additions, 0 deletions
wax-questions-service/README.md
wax-table-service/README.md
+53
-1
53 additions, 1 deletion
wax-table-service/README.md
with
60 additions
and
1 deletion
wax-questions-service/README.md
+
7
−
0
View file @
23d61793
...
@@ -20,6 +20,13 @@
...
@@ -20,6 +20,13 @@
import { QuestionsService } from 'wax-questions-service';
import { QuestionsService } from 'wax-questions-service';
```
```
### Styles(preferably in your layout)
```
import 'wax-questions-service/dist/index.css'
```
### Tools
### Tools
```
```
...
...
This diff is collapsed.
Click to expand it.
wax-table-service/README.md
+
53
−
1
View file @
23d61793
## Wax table package
## Wax Table package
Wax Table Package is a fork of
[
prosemirror-tables
](
https://github.com/ProseMirror/prosemirror-tables
)
with added Table Caption
funcionality
## How to use
### Editor's config
```
import { TablesService, tableEditing, columnResizing } from 'wax-table-service';
```
### Styles(preferably in your layout)
```
import 'wax-table-service/dist/index.css'
```
### Tools
```
MenuService: [
{
templateArea: 'mainMenuToolBar',
toolGroups: [
'Tables',
],
},
],
```
### ProseMirror Plugins
In case you need tableEditing or columnResizing plugins add the to the array of
`PmPlugins`
in your editor's config
```
PmPlugins: [
tableEditing(),
columnResizing(),
],
```
### Start the Service
```
services: [
new TablesService(),
]
```
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment