Releases: torchbox/wagtail-tinytableblock
v0.3.4 - pasting on pastel pastures
v0.3.3 - can't catch a (line) break
This release improves the handling of pasted content with new lines
v0.3.2 - breaking the lines
This release fixes line breaks being stripped out, and switches the new line behaviour from inserting paragraphs to new lines.
v0.3.1 - forgot to unlink?
This adds the missing "unlink" toolbar button
v0.3 - now with more style
TinyMCE sets the alignment and width via the style
attributes. This release, preserves them for th
/td
What's Changed
Full Changelog: v0.2.4...v0.3
v0.2.4 - cell/row props
This adds the missing cell and row properties buttons to the toolbar.
And removes the copy/paste ones
v0.2.3 - it is all contextual
This release disables the TinyMCE contextual menu by default to allow browser native functionality such as paste to work.
To enable the TinyMCE contextual menu, pass enable_context_menu=True
to your block definition: TinyTableBlock(enable_context_menu=True)
v0.2.2 - the copy/pasta incident
This tiny release adds the copy/paste buttons to the toolbar and contextual menu, following real user feedback
v0.2.1 - ruthless link stripper
This is a tidy up for v0.2 which ensures that links are only preserved if the block was defined with allow_links=True
. For example:
from wagtail.blocks import StreamBlock
from wagtail_tinytableblock.blocks import TinyTableBlock
class ContentBlocks(StreamBlock):
table_block = TinyTableBlock(allow_links=True)
It also improves the input sanitization
v0.2 - we live in a linked world (external for now)
This releases
- adds the TinyMCE link plugin and allows enabling it (e.g.
table_block = TinyTableBlock(allow_links=True)
) - improves the table header parsing (considers all cells in
thead
as header cells). - improves the README