From: Andy Allan Date: Wed, 22 Feb 2023 09:46:48 +0000 (+0000) Subject: Ensure kramdown table alignment styles are converted to bootstrap classes X-Git-Tag: live~836^2 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/4af923dbf9e78addb8df78f6516dc55e7859ac82 Ensure kramdown table alignment styles are converted to bootstrap classes Adds tests for commit f42a7a2d8dd507a3746a1e2de91deda9614cf807 --- diff --git a/test/lib/rich_text_test.rb b/test/lib/rich_text_test.rb index aa99e2a4d..033a221d4 100644 --- a/test/lib/rich_text_test.rb +++ b/test/lib/rich_text_test.rb @@ -195,6 +195,22 @@ class RichTextTest < ActiveSupport::TestCase end end + def test_markdown_table_alignment + # Ensure that kramdown table alignment styles are converted to bootstrap classes + markdown_table = <<~MARKDOWN + | foo | bar | + |:----:|----:| + |center|right| + MARKDOWN + r = RichText.new("markdown", markdown_table) + assert_html r do + assert_select "td[style='text-align:center']", false + assert_select "td[class='text-center']", true + assert_select "td[style='text-align:right']", false + assert_select "td[class='text-end']", true + end + end + def test_markdown_to_text r = RichText.new("markdown", "foo [bar](http://example.com/) baz") assert_equal "foo [bar](http://example.com/) baz", r.to_text