Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cleanup of terms, links etc. #13

Merged
merged 4 commits into from
Nov 29, 2024
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
fix space issues; fix all broken links
squdgy committed Nov 29, 2024
commit 7211201bb7009036a249acff5a15fafb07a9d4e1
13 changes: 8 additions & 5 deletions lychee.toml
Original file line number Diff line number Diff line change
@@ -11,12 +11,13 @@ no_progress = true
# URL remapping rules.
remap = [
"file:///(.*?)/pages/img/(.*) file:///$1/public/img/$2",
"file:///(.*?)/pages/resources/(.*) file:///$1/public/resources/$2",
"file:///([^#.?]+)(#.*)?$ file:///$1.mdx$2",
"\\\\& &"
]

# Base URL or website root directory to check relative URLs.
base = "./pages"
# base = "./pages"

############################# Exclusions ##########################

@@ -28,12 +29,14 @@ exclude_mail = true

# Exclude RPC URLs from checking.
exclude = [
'https://mainnet.optimism.io',
'https://mainnet-sequencer.optimism.io',
'https://sepolia.optimism.io',
'https://sepolia-sequencer.optimism.io',
'https://rpc.metall2.com/',
'https://testnet.rpc.metall2.com/',
'https://mainnet-sequencer.metall2.com/',
'https://testnet-sequencer.metall2.com/',
'https://archive.org',
'https://web.archive.org',
'https://mainnet.optimism.io',
'https://sepolia.optimism.io',
'https://mainnet.base.org',
'https://sepolia.base.org'
]
8 changes: 4 additions & 4 deletions notes/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Metal L2 DocsDocs
# Metal L2 Docs

The Metal L2 DocsDocs are internal docs to help you understand how the Metal L2 Docsare built and maintained.
The Metal L2 Docs are internal docs to help you understand how the Metal L2 Docs are built and maintained.

- [How the Metal L2 DocsUse Nextra](./nextra.md)
- [How the Metal L2 DocsUse Remark](./remark.md)
- [How the Metal L2 Docs Use Nextra](./nextra.md)
- [How the Metal L2 Docs Use Remark](./remark.md)
- [GitHub Actions](./actions.md)
4 changes: 2 additions & 2 deletions notes/nextra.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# How the Metal L2 DocsUse Nextra
# How the Metal L2 Docs Use Nextra

The Metal L2 Docsuse the [Nextra](https://nextra.site/) documentation framework.
The Metal L2 Docs use the [Nextra](https://nextra.site/) documentation framework.
Nextra is essentially a combination of [Next.js](https://nextjs.org/) + [MDX](https://mdxjs.com/) and allows you to write React components that can be used within Markdown pages.
Nextra documentation is decent and can explain the basics of how to do most of the things you might want to do.
This page documents all of the things that we do that are currently not made obvious by Nextra's docs.
Loading