Skip to content
Merged
Show file tree
Hide file tree
Changes from 14 commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
c335e2f
CCM-11438 Update template guidance
nicki-nhs Aug 1, 2025
3f8a5bb
CCM-11438 Fix layout on create template pages
nicki-nhs Aug 1, 2025
38e8af6
CCM-11438 Add interpolate function
nicki-nhs Aug 1, 2025
db50605
CCM-11438 Markdown content supports interpolation
nicki-nhs Aug 1, 2025
6c502d8
CCM-11438 Update layout and add ID support
nicki-nhs Aug 4, 2025
97113fa
Merge branch 'main' of https://github.com/NHSDigital/nhs-notify-web-t…
nicki-nhs Aug 4, 2025
5400ab6
CCM-11438 Make urls relative
nicki-nhs Aug 4, 2025
e8a40dc
CCM-11438 Add kebab case unit tests
nicki-nhs Aug 4, 2025
9811ffa
CCM-11438 Lint fix
nicki-nhs Aug 4, 2025
3f81dea
CCM-11438 Update tests
nicki-nhs Aug 5, 2025
24e79aa
CCM-11438 Lint fix
nicki-nhs Aug 5, 2025
bc236b6
CCM-11438 Update snapshots
nicki-nhs Aug 5, 2025
f18ab9c
CCM-11438 Fix interpolate unit test
nicki-nhs Aug 5, 2025
2e3eb32
CCM-11438 Missing new line
nicki-nhs Aug 5, 2025
dd2a9e6
CCM-11438 Throw error for invalid block type in content renderer
nicki-nhs Aug 5, 2025
8e157f6
CCM-11438 Update IDs
nicki-nhs Aug 5, 2025
5bfaf45
CCM-11438 Throw error
nicki-nhs Aug 5, 2025
91dd3ec
CCM-11438 Fix interpolate tests
nicki-nhs Aug 5, 2025
2cb9498
CCM-11438 Lint fix
nicki-nhs Aug 6, 2025
fd0b96b
CCM-11438 Update interpolate and tests
nicki-nhs Aug 7, 2025
8311141
CCM-11438 Fix test IDs
nicki-nhs Aug 7, 2025
a660ef3
CCM-11438 Fix test IDs
nicki-nhs Aug 7, 2025
0e8cd23
CCM-11438 Update mesh url
nicki-nhs Aug 7, 2025
6aa8650
CCM-11438 Fix tests
nicki-nhs Aug 7, 2025
c58b33d
CCM-11438 Fix tests
nicki-nhs Aug 7, 2025
0fbdaf1
CCM-11438 Update name template test id
nicki-nhs Aug 7, 2025
96fa534
CCM-11438 lint fix
nicki-nhs Aug 7, 2025
565c324
CCM-11438 Update tests
nicki-nhs Aug 7, 2025
e9ac4c5
CCM-11438 Empty commit
nicki-nhs Aug 7, 2025
106403c
Merge branch 'main' of https://github.com/NHSDigital/nhs-notify-web-t…
nicki-nhs Aug 7, 2025
631f6c3
Merge branch 'main' of https://github.com/NHSDigital/nhs-notify-web-t…
nicki-nhs Aug 7, 2025
734af4c
CCM-11438 Fix test
nicki-nhs Aug 7, 2025
0725a5c
CCM-11438 Empty commit
nicki-nhs Aug 7, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,15 @@ exports[`CodeExample component renders component correctly 1`] = `
>
This is an example of markdown:
</span>
<code
aria-describedby="test-id"
<pre
class="nhsuk-code-block"
>
# A test example
</code>
<code
aria-describedby="test-id"
>
# A test example
</code>
</pre>
</DocumentFragment>
`;

Expand All @@ -24,11 +28,15 @@ exports[`CodeExample component renders component correctly when optional class i
>
This is an example of markdown:
</span>
<code
aria-describedby="test-id"
class="test-class"
<pre
class="nhsuk-code-block"
>
# A test example
</code>
<code
aria-describedby="test-id"
class="test-class"
>
# A test example
</code>
</pre>
</DocumentFragment>
`;
Loading
Loading