govspeak 8.3.3 → 8.3.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 13c63623d2836910a9a3e9c634059dfece9e7eca7a889d142ba006a8b74443db
4
- data.tar.gz: 3235a49df7e6860a9f2a20b0e55eb92e771df6a5f16bac6ad61776e28494111a
3
+ metadata.gz: 474078f8179d567c75b47f781c5d567072a6889a79554fefb81172316828f5fc
4
+ data.tar.gz: aa5a44c15285543a1749b3cf129c66eeea2cb6b58d0b98c9970bc5130320c8fb
5
5
  SHA512:
6
- metadata.gz: 29f02ae12fd4b8388990109ba3c2fec681d85286bcf352fff8d571dd2918343410b1ca1df518a35dd8e9ef3e886e3a306ee185e619d0435b3670c57091da7bbd
7
- data.tar.gz: 52094b3250537544d50761204701cb2ba5f32c94fd2bd2b32c81eb6ef5fbcfee1812f432f62133afcce2c02730401fd06db9e492ab67c2fea69680eaf525dfd2
6
+ metadata.gz: 210b4b75330ff66604483b61e0c2f5c78292ab7e3a957839af6f4fb7e5123b8649366945b01a4a03841f0924166475e28751e4e2531cfe10a125ba506b3f9ec6
7
+ data.tar.gz: 5c164df64fa4ba9c0bdba31d55644550267543e2549e764cab614db0bf2a2e07cd602d571c51ecad4ec9f402e0d76be5052cb21195616be98aba8c99a843d3c7
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## 8.3.4
2
+
3
+ * Fix tables within call to action component ([#306](https://github.com/alphagov/govspeak/pull/306))
4
+
1
5
  ## 8.3.3
2
6
 
3
7
  * Fix single line formatting of call to action component ([#302](https://github.com/alphagov/govspeak/pull/302))
@@ -1,3 +1,3 @@
1
1
  module Govspeak
2
- VERSION = "8.3.3".freeze
2
+ VERSION = "8.3.4".freeze
3
3
  end
data/lib/govspeak.rb CHANGED
@@ -278,7 +278,7 @@ module Govspeak
278
278
  extension("call-to-action", surrounded_by("$CTA")) do |body|
279
279
  <<~BODY
280
280
  <div class="call-to-action" markdown="1">
281
- #{body.strip}
281
+ #{body.strip.gsub(/\A^\|/, "\n|").gsub(/\|$\Z/, "|\n")}
282
282
  </div>
283
283
  BODY
284
284
  end
@@ -467,6 +467,65 @@ Teston
467
467
  <p>Here is some text</p>)
468
468
  end
469
469
 
470
+ test_given_govspeak "
471
+ $CTA
472
+ |Heading 1|Heading 2|
473
+ |-|-|
474
+ |information|more information|
475
+ $CTA" do
476
+ assert_html_output %(
477
+ <div class="call-to-action">
478
+
479
+ <table>
480
+ <thead>
481
+ <tr>
482
+ <th scope="col">Heading 1</th>
483
+ <th scope="col">Heading 2</th>
484
+ </tr>
485
+ </thead>
486
+ <tbody>
487
+ <tr>
488
+ <td>information</td>
489
+ <td>more information</td>
490
+ </tr>
491
+ </tbody>
492
+ </table>
493
+
494
+ </div>)
495
+ end
496
+
497
+ test_given_govspeak "
498
+ $CTA
499
+
500
+ ### A heading within the CTA
501
+
502
+ |Heading 1|Heading 2|
503
+ |-|-|
504
+ |information|more information|
505
+
506
+ $CTA" do
507
+ assert_html_output %(
508
+ <div class="call-to-action">
509
+ <h3 id="a-heading-within-the-cta">A heading within the CTA</h3>
510
+
511
+ <table>
512
+ <thead>
513
+ <tr>
514
+ <th scope="col">Heading 1</th>
515
+ <th scope="col">Heading 2</th>
516
+ </tr>
517
+ </thead>
518
+ <tbody>
519
+ <tr>
520
+ <td>information</td>
521
+ <td>more information</td>
522
+ </tr>
523
+ </tbody>
524
+ </table>
525
+
526
+ </div>)
527
+ end
528
+
470
529
  test_given_govspeak "
471
530
  Here is some text\n
472
531
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: govspeak
3
3
  version: !ruby/object:Gem::Version
4
- version: 8.3.3
4
+ version: 8.3.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - GOV.UK Dev
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-01-24 00:00:00.000000000 Z
11
+ date: 2024-01-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: actionview
@@ -190,14 +190,14 @@ dependencies:
190
190
  requirements:
191
191
  - - '='
192
192
  - !ruby/object:Gem::Version
193
- version: 4.13.0
193
+ version: 4.14.0
194
194
  type: :development
195
195
  prerelease: false
196
196
  version_requirements: !ruby/object:Gem::Requirement
197
197
  requirements:
198
198
  - - '='
199
199
  - !ruby/object:Gem::Version
200
- version: 4.13.0
200
+ version: 4.14.0
201
201
  - !ruby/object:Gem::Dependency
202
202
  name: simplecov
203
203
  requirement: !ruby/object:Gem::Requirement