editor-js / table

Table constructor for Editor.js
MIT License
123 stars 136 forks source link

Table rowspan and colspan #49

Open aayush722 opened 4 years ago

aayush722 commented 4 years ago

Need property for rowspan and colspan in tables.

HoangKimDuc commented 4 years ago

+1

qqqays commented 4 years ago

The structure of table blocks is very hard to support rowspan and colspan because it is just a simple two dimension array.

mhmttosun commented 3 years ago

Table is commonly used blocks. Full featured table support can make good first impression for new comers.

Intaria commented 1 year ago

++

pimjansen commented 1 year ago

+1

andreehultgren commented 1 year ago

+1

Intaria commented 1 year ago

The structure of table blocks is very hard to support rowspan and colspan because it is just a simple two dimension array.

{
  "type" : "table",
  "data" : {
    "withHeadings": true,
    "rows" : [ 
      [
        {
          "colspan": 2,
          "content": "text",
        }, 
        {
          "content": "text",
        }
      ],
      [
        {
          "content": "text",
        },
        {
          "content": "text",
        },
        {
          "content": "text",
        }
      ],
    ]
  }
}
andoro commented 1 year ago

Dear developers,

is there any chance for a solution to edit and render merged cells in a table, so called rowspan or colspan?

I like editor-js very much, but this feature is really missing.

Thank you!

Timur00Kh commented 1 year ago

+1

kobi-s commented 8 months ago

+1

Screamson commented 7 months ago

+1

skiryuk commented 2 months ago

+1

aarong1 commented 1 month ago

+1