diff --git a/libs/design/article/README.md b/libs/design/article/README.md
index 667511ef78..c81c0f9060 100644
--- a/libs/design/article/README.md
+++ b/libs/design/article/README.md
@@ -4,7 +4,7 @@ Article provides styles to common element selectors to create an article in a co
## Overview
Article can be used on any content page that displays large blocks of text-driven information. It's meant to be used as a standalone element and should not be nested inside any other components that may change the background color from the anticipated one. In the event that you must nest an article inside another component, please ensure that you set the article's background color to the default body color.
-## Supported Elements
+## Supported elements
### Headings
@@ -24,10 +24,10 @@ The link style in an article uses the default browser link style.
### Lists
-#### Unordered List
+#### Unordered list
-#### Ordered List
+#### Ordered list
### Code
@@ -39,15 +39,14 @@ These are styles for inline and multiline blocks of code.
#### Code blocks
-### Horizontal Rules
+### Horizontal rules
### Blockquote
## Encapsulation
-
-Articles also support other custom "non-native" components like [accordions](../accordion/README.md), [media galleries](../media-gallery/README.md), and [lists](../list/README.md). Unlike typical HTML (
,
, , etc) content, these components must be style encaspulated to prevent article styles bleeding down from the article into their content. Many Daffodil components support this out of the box. If you have a custom component that you would like to place inside an article, you can use the `DaffArticleEncapsulatedDirective` on your component to prevent article styles bleeding into your component.
+Articles also support other custom "non-native" components like [accordions](/libs/design/accordion/README.md), [media galleries](/libs/design/media-gallery/README.md), and [lists](/libs/design/list/README.md). Unlike typical HTML (``, `
`, ``, etc) content, these components must be style encaspulated to prevent article styles bleeding down from the article into their content. Many Daffodil components support this out of the box. If you have a custom component that you would like to place inside an article, you can use the `DaffArticleEncapsulatedDirective` on your component to prevent article styles bleeding into your component.
## Usage