DatoCMS HTML Table Editor
Simple table plugin for DatoCMS
Preview
Features
- Title
- Add/remove column
- Add/remove row
- Define main column/row
- Formatting
- Images
Output
type Table = {title: string | undefinedoptions: {mainColumn: numbermainRow: number}data: Array<Array<Cell>>}
Types
import { StructuredTextDocument } from 'react-datocms'import { Upload } from 'datocms-plugin-sdk'enum CellType {StructuredText = 'structuredText',Image = 'image'}type CellStructuredText = {id: stringtype: CellType.StructuredTextvalue: StructuredTextDocument}type CellImage = {id: stringtype: CellType.Imagevalue: Upload}type Cell = CellStructuredText | CellImage
[!NOTE] Plugin not actively maintained. If you want to contribute, please open an issue or a pull request.