Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
5 changes: 4 additions & 1 deletion docs/.pa11y-ci.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,10 @@ function getUrlsFromSiteMap() {

const sitemap = new XMLParser().parse(file);

return sitemap.urlset.url.map(r => r.loc);
// Filter out PDF files from accessibility testing
return sitemap.urlset.url
.map(r => r.loc)
.filter(url => !url.endsWith('.pdf'));
}

module.exports = {
Expand Down
2 changes: 1 addition & 1 deletion docs/pages/using-nhs-notify/upload-a-letter.md
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ The address is a personalisation field and is set automatically.

The recipient's name is always included as the first line of the address.

If your letter is about a child, use the [parent or guardian letter template](#download-our-blank-letter-template). This template includes 'Parent or guardian of' in the first line of the address.
If your letter is about a child, use the [parent or guardian letter template](#download-a-blank-word-letter-template). This template includes 'Parent or guardian of' in the first line of the address.

### NHS logo

Expand Down
Loading