1
0
mirror of https://github.com/oceanprotocol/docs.git synced 2024-11-26 19:49:26 +01:00

Improvement: Use self closing html tag

This commit is contained in:
Akshay 2021-04-16 17:07:58 +02:00
parent 2d5574e05e
commit 700ed1e5be

View File

@ -65,7 +65,7 @@ export default function MarkdownList({ pageContext }) {
cursor: 'pointer' cursor: 'pointer'
}} }}
> >
{node.frontmatter.title.replace(/_/g, ' ')} a {node.frontmatter.title.replace(/_/g, ' ')}
</a> </a>
</li> </li>
))} ))}
@ -89,7 +89,7 @@ export default function MarkdownList({ pageContext }) {
</nav> </nav>
</aside> </aside>
<article className={styles.main}> <article className={styles.main}>
<MarkdownTemplate data={elem}></MarkdownTemplate> <MarkdownTemplate data={elem} />
</article> </article>
</main> </main>
</Content> </Content>