Skip to content

Commit 91ce4b1

Browse files
michaelmcneesclaude
andcommitted
fix: README links to mantle.dvflw.co, GitHub target="_blank", deprecated CSS
- README doc links now point to https://mantle.dvflw.co/docs/* - GitHub external links get target="_blank" rel="noopener" - word-break: break-word → overflow-wrap: anywhere (deprecated property) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent e952982 commit 91ce4b1

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ steps:
5050
- **Checkpoint and Resume** -- Steps checkpoint to Postgres after completion. Crash mid-workflow? Restart picks up from the last completed step.
5151
- **Secrets as Opaque Handles** -- Credentials are AES-256-GCM encrypted at rest and resolved at connector invocation time. Never exposed in expressions, logs, or step outputs.
5252

53-
[How Mantle compares to Temporal, n8n, LangChain, Airflow, and others.](/docs/comparison)
53+
[How Mantle compares to Temporal, n8n, LangChain, Airflow, and others.](https://mantle.dvflw.co/docs/comparison)
5454

5555
## Quick Start
5656

@@ -69,7 +69,7 @@ mantle apply examples/hello-world.yaml
6969
mantle run hello-world
7070
```
7171

72-
17 example workflows are included in [`examples/`](examples/). See the [Getting Started guide](/docs/getting-started) for a full walkthrough.
72+
17 example workflows are included in [`examples/`](examples/). See the [Getting Started guide](https://mantle.dvflw.co/docs/getting-started) for a full walkthrough.
7373

7474
## Connectors
7575

@@ -85,7 +85,7 @@ mantle run hello-world
8585
| Postgres | `postgres/query` | Parameterized SQL against external databases |
8686
| S3 | `s3/put`, `s3/get`, `s3/list` | Put, get, list objects (S3-compatible) |
8787

88-
Need something else? Write a [plugin](/docs/plugins). Any executable that reads JSON from stdin and writes JSON to stdout -- Python, Rust, Node, Bash.
88+
Need something else? Write a [plugin](https://mantle.dvflw.co/docs/plugins). Any executable that reads JSON from stdin and writes JSON to stdout -- Python, Rust, Node, Bash.
8989

9090
## CLI Reference
9191

@@ -132,7 +132,7 @@ Need something else? Write a [plugin](/docs/plugins). Any executable that reads
132132
| `mantle cleanup` | Clean up old executions and artifacts |
133133
| `mantle version` | Print version info |
134134

135-
See the [CLI Reference](/docs/cli-reference) for full usage and flags.
135+
See the [CLI Reference](https://mantle.dvflw.co/docs/cli-reference) for full usage and flags.
136136

137137
## Configuration
138138

@@ -204,7 +204,7 @@ make clean # Remove built binary
204204

205205
## Contributing
206206

207-
Contributions are welcome. Please open an issue first to discuss what you want to change. See the [Contributing guide](/docs/contributing) for details.
207+
Contributions are welcome. Please open an issue first to discuss what you want to change. See the [Contributing guide](https://mantle.dvflw.co/docs/contributing) for details.
208208

209209
## License
210210

site/src/components/Nav.astro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ const isDocs = Astro.url.pathname.startsWith('/docs');
2323

2424
<!-- Right side -->
2525
<div class="flex items-center gap-4">
26-
<a href="https://github.com/dvflw/mantle" class="text-on-surface-variant hover:text-on-surface transition-colors" aria-label="GitHub">
26+
<a href="https://github.com/dvflw/mantle" target="_blank" rel="noopener" class="text-on-surface-variant hover:text-on-surface transition-colors" aria-label="GitHub">
2727
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 24 24"><path d="M12 0C5.37 0 0 5.37 0 12c0 5.31 3.435 9.795 8.205 11.385.6.105.825-.255.825-.57 0-.285-.015-1.23-.015-2.235-3.015.555-3.795-.735-4.035-1.41-.135-.345-.72-1.41-1.23-1.695-.42-.225-1.02-.78-.015-.795.945-.015 1.62.87 1.845 1.23 1.08 1.815 2.805 1.305 3.495.99.105-.78.42-1.305.765-1.605-2.67-.3-5.46-1.335-5.46-5.925 0-1.305.465-2.385 1.23-3.225-.12-.3-.54-1.53.12-3.18 0 0 1.005-.315 3.3 1.23.96-.27 1.98-.405 3-.405s2.04.135 3 .405c2.295-1.56 3.3-1.23 3.3-1.23.66 1.65.24 2.88.12 3.18.765.84 1.23 1.905 1.23 3.225 0 4.605-2.805 5.625-5.475 5.925.435.375.81 1.095.81 2.22 0 1.605-.015 2.895-.015 3.3 0 .315.225.69.825.57A12.02 12.02 0 0024 12c0-6.63-5.37-12-12-12z"/></svg>
2828
</a>
2929
<a href={`${prefix}#get-started`} class="hidden sm:inline-flex px-4 py-2 bg-primary text-on-primary text-sm font-medium hover:bg-primary-dim transition-colors">
@@ -51,7 +51,7 @@ const isDocs = Astro.url.pathname.startsWith('/docs');
5151
<svg class="w-5 h-5" fill="none" stroke="currentColor" stroke-width="1.5" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" d="M12 6.042A8.967 8.967 0 006 3.75c-1.052 0-2.062.18-3 .512v14.25A8.987 8.987 0 016 18c2.305 0 4.408.867 6 2.292m0-14.25a8.966 8.966 0 016-2.292c1.052 0 2.062.18 3 .512v14.25A8.987 8.987 0 0018 18a8.967 8.967 0 00-6 2.292m0-14.25v14.25"/></svg>
5252
<span>Docs</span>
5353
</a>
54-
<a href="https://github.com/dvflw/mantle" class="bottom-nav-item flex flex-col items-center gap-0.5 px-3 py-1 text-[11px] text-on-surface-variant hover:text-on-surface transition-colors" aria-label="GitHub">
54+
<a href="https://github.com/dvflw/mantle" target="_blank" rel="noopener" class="bottom-nav-item flex flex-col items-center gap-0.5 px-3 py-1 text-[11px] text-on-surface-variant hover:text-on-surface transition-colors" aria-label="GitHub">
5555
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 24 24"><path d="M12 0C5.37 0 0 5.37 0 12c0 5.31 3.435 9.795 8.205 11.385.6.105.825-.255.825-.57 0-.285-.015-1.23-.015-2.235-3.015.555-3.795-.735-4.035-1.41-.135-.345-.72-1.41-1.23-1.695-.42-.225-1.02-.78-.015-.795.945-.015 1.62.87 1.845 1.23 1.08 1.815 2.805 1.305 3.495.99.105-.78.42-1.305.765-1.605-2.67-.3-5.46-1.335-5.46-5.925 0-1.305.465-2.385 1.23-3.225-.12-.3-.54-1.53.12-3.18 0 0 1.005-.315 3.3 1.23.96-.27 1.98-.405 3-.405s2.04.135 3 .405c2.295-1.56 3.3-1.23 3.3-1.23.66 1.65.24 2.88.12 3.18.765.84 1.23 1.905 1.23 3.225 0 4.605-2.805 5.625-5.475 5.925.435.375.81 1.095.81 2.22 0 1.605-.015 2.895-.015 3.3 0 .315.225.69.825.57A12.02 12.02 0 0024 12c0-6.63-5.37-12-12-12z"/></svg>
5656
<span>GitHub</span>
5757
</a>

0 commit comments

Comments
 (0)