5.3.1 • Published 4 years ago

@milkdown/plugin-table v5.3.1

Weekly downloads
-
License
MIT
Repository
-
Last release
4 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

4 years ago

5.3.0

4 years ago

5.1.2

4 years ago

5.1.1

4 years ago

5.1.0

4 years ago

5.2.1

4 years ago

5.2.0

4 years ago

5.0.1

4 years ago

5.0.0

4 years ago

4.14.2

4 years ago

4.14.1

4 years ago

4.14.0

4 years ago

4.13.3

4 years ago

4.13.2

4 years ago

4.13.1

4 years ago

4.13.0

4 years ago

4.12.0

4 years ago

4.11.2

4 years ago

4.11.0

4 years ago

4.11.1

4 years ago

4.10.5

4 years ago

4.10.3

4 years ago

4.10.4

4 years ago

4.10.2

4 years ago

4.10.1

4 years ago

4.10.0

4 years ago

4.9.6

4 years ago

4.9.5

4 years ago

4.9.4

4 years ago

4.9.3

4 years ago

4.9.0

4 years ago

4.9.2

4 years ago

4.9.1

4 years ago

4.8.2

4 years ago

4.8.1

4 years ago

4.8.0

4 years ago

4.7.1

4 years ago

4.7.0

4 years ago

4.6.9

4 years ago

4.6.8

4 years ago

4.6.7

4 years ago

4.6.6

4 years ago

4.6.3

4 years ago

4.6.2

4 years ago

4.6.5

4 years ago

4.6.4

4 years ago

4.6.1

4 years ago

4.6.0

4 years ago

4.5.3

4 years ago

4.5.2

4 years ago

4.5.1

4 years ago

4.5.0

4 years ago

4.4.0

4 years ago

4.3.1

4 years ago

4.3.0

4 years ago

4.2.0

4 years ago

4.1.2

4 years ago

4.1.1

4 years ago

4.1.0

4 years ago

4.0.0

4 years ago

3.0.0

4 years ago