5.3.1 • Published 2 years ago

@milkdown/plugin-table v5.3.1

Weekly downloads
-
License
MIT
Repository
-
Last release
2 years ago

@milkdown/plugin-table

Table plugin for milkdown. Add support for table commands.

Example Usage

import { Editor } from '@milkdown/core';
import { commonmark } from '@milkdown/preset-commonmark';
import { nord } from '@milkdown/theme-nord';

import { table } from '@milkdown/plugin-table';

Editor.make().use(nord).use(commonmark).use(table).create();

Custom Keymap

import { tableNodes, tablePlugin, SupportedKeys, table } from '@milkdown/plugin-table';

Editor.make()
    .use(commonmark)
    .use(
        tableNodes.configure(table, {
            keymap: {
                [SupportedKeys.NextCell]: 'Enter',
                [SupportedKeys.PrevCell]: 'Alt-Enter',
            },
        }),
    )
    .use(tablePlugin)
    .create();

Keymap supported:

  • NextCell: go to next cell of table.
  • PrevCell: go to prev cell of table.
  • ExitTable: exist current table.

License

Milkdown is open sourced software licensed under MIT license.

5.3.1

2 years ago

5.3.0

2 years ago

5.1.2

2 years ago

5.1.1

3 years ago

5.1.0

3 years ago

5.2.1

2 years ago

5.2.0

2 years ago

5.0.1

3 years ago

5.0.0

3 years ago

4.14.2

3 years ago

4.14.1

3 years ago

4.14.0

3 years ago

4.13.3

3 years ago

4.13.2

3 years ago

4.13.1

3 years ago

4.13.0

3 years ago

4.12.0

3 years ago

4.11.2

3 years ago

4.11.0

3 years ago

4.11.1

3 years ago

4.10.5

3 years ago

4.10.3

3 years ago

4.10.4

3 years ago

4.10.2

3 years ago

4.10.1

3 years ago

4.10.0

3 years ago

4.9.6

3 years ago

4.9.5

3 years ago

4.9.4

3 years ago

4.9.3

3 years ago

4.9.0

3 years ago

4.9.2

3 years ago

4.9.1

3 years ago

4.8.2

3 years ago

4.8.1

3 years ago

4.8.0

3 years ago

4.7.1

3 years ago

4.7.0

3 years ago

4.6.9

3 years ago

4.6.8

3 years ago

4.6.7

3 years ago

4.6.6

3 years ago

4.6.3

3 years ago

4.6.2

3 years ago

4.6.5

3 years ago

4.6.4

3 years ago

4.6.1

3 years ago

4.6.0

3 years ago

4.5.3

3 years ago

4.5.2

3 years ago

4.5.1

3 years ago

4.5.0

3 years ago

4.4.0

3 years ago

4.3.1

3 years ago

4.3.0

3 years ago

4.2.0

3 years ago

4.1.2

3 years ago

4.1.1

3 years ago

4.1.0

3 years ago

4.0.0

3 years ago

3.0.0

3 years ago