Skip to content

Commit 72efa73

Browse files
committed
LG-12800 address code review, WIP
1 parent 20fa1e9 commit 72efa73

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

README.md

+2-5
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,9 @@ Run the tests:
2828
make test
2929
```
3030

31-
This site uses the [U.S. Web Design System](https://designsystem.digital.gov/). To update them:
31+
This site uses the anchor.js. To update it:
3232

33-
1. Download the [latest release](https://designsystem.digital.gov/download)
34-
2. Copy contents to `assets/`
35-
3. Rename directory to `uswds`
36-
4. Download latest [anchor.js](https://github.com/bryanbraun/anchorjs) and put in `assets/js/`
33+
- Download latest [anchor.js](https://github.com/bryanbraun/anchorjs) and put in `assets/js/`
3734

3835
#### YAML files
3936

_pages/support.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -376,7 +376,7 @@ https://idp.int.identitysandbox.gov/openid_connect/authorize?
376376
<div id="supportedbrowsers" class="usa-accordion__container">
377377
<div class="usa-accordion__content">
378378
<p>
379-
Login.gov uses the <a class="usa-link" href="https://designsystem.digital.gov/">a US Web Design System (USWDS) </a> components on our websites. The current version (USWDS 3.0.0) supports the newest versions of Chrome, Firefox, and Safari. Internet Explorer 11 (IE11) is no longer officially supported and therefore is not recommended for use with Login.gov. If you experience issues connecting with Login.gov, try using one of the recommended browsers before contacting technical support.
379+
Login.gov uses the <a class="usa-link" href="https://designsystem.digital.gov/">US Web Design System (USWDS) </a> components on our websites. The current version (USWDS 3) supports the newest versions of Chrome, Firefox, and Safari. Internet Explorer 11 (IE11) is no longer officially supported and therefore is not recommended for use with Login.gov. If you experience issues connecting with Login.gov, try using one of the recommended browsers before contacting technical support.
380380
</p>
381381
</div>
382382
</div>

_plugins/content_code.rb

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
require 'rouge'
22

33
# Include tabindex for accessibility reasons
4+
# See: https://github.com/rouge-ruby/rouge?tab=readme-ov-file#formatters
45
class Rouge::Formatters::HTMLPygmentsA11y < Rouge::Formatters::HTMLPygments
56
def stream(tokens, &b)
67
yield %(<div class="highlight"><pre class="#{@css_class}"><code tabindex="0">)

assets/scss/main.css.scss

+4
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,10 @@ main.usa-layout-docs {
4242
margin-bottom: 0px;
4343
}
4444

45+
code {
46+
display: inline-block;
47+
}
48+
4549
.code-button {
4650
color: #205493;
4751
padding-bottom: 0.5rem;

spec/e2e/accessibility.test.js

+2-4
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,8 @@ import getPort from 'get-port';
1010
// only test canonical paths
1111
const paths = (() => {
1212
const file = readFileSync('./_site/sitemap.xml', { encoding: 'utf8' });
13-
const pathMatch = file.matchAll(/[.gov|:4000](\/[A-Za-z-]+\/?[A-Za-z-]*\/)<\/loc/g);
14-
const foundPaths = Array.from(pathMatch).map((a) => a[1]);
15-
foundPaths.unshift('/');
16-
return foundPaths;
13+
const pathMatch = file.matchAll(/<loc>(.+?)<\/loc>/g);
14+
return Array.from(pathMatch).map(([, url]) => new URL(url).pathname);
1715
})();
1816

1917
describe('accessibility', () => {

0 commit comments

Comments
 (0)