# -*- coding: utf-8 -*- from __future__ import unicode_literals from markdown.test_tools import TestCase class TestTableBlocks(TestCase): def test_empty_cells(self): """Empty cells (nbsp).""" text = """ | Second Header ------------- | ------------- | Content Cell Content Cell | """ self.assertMarkdownRenders( text, self.dedent( """
Second Header | |
---|---|
Content Cell | |
Content Cell |