From: Tom Hughes Date: Wed, 22 Feb 2023 18:17:51 +0000 (+0000) Subject: Merge remote-tracking branch 'upstream/pull/3936' X-Git-Tag: live~1864 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/721d33033cbd729ab9e2d0220ead22fb3f7f1065?hp=8df3c7b12a0530a315e2b95ba67221c20fbffaef Merge remote-tracking branch 'upstream/pull/3936' --- diff --git a/config/locales/en.yml b/config/locales/en.yml index 8996b1114..fc01c22ae 100644 --- a/config/locales/en.yml +++ b/config/locales/en.yml @@ -976,7 +976,7 @@ en: fitness_station: "Fitness Station" garden: "Garden" golf_course: "Golf Course" - horse_riding: "Horse Riding" + horse_riding: "Horse Riding Centre" ice_rink: "Ice Rink" marina: "Marina" miniature_golf: "Miniature Golf" 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