krz/orgo

Lightning fast org-mode static site generator.

clone: git clone https://gitbay.org/krz/orgo.git

8f2e5195bcf60534297dc7ef8c789557bec66a31

unsigned

author: Christian Cleberg <hello@cleberg.net> · 2026-08-11T22:47:55Z

Point every URL at krazywarez

The repository moved orgs, which took the documentation site with it:
ccleberg.github.io/orgo now 404s and krazywarez.github.io/orgo serves. Every
link in the README and the install page followed it, along with `repository` and
`homepage` in Cargo.toml.

CODEOWNERS and FUNDING.yml keep the personal handle on purpose — those name a
person, not a location.
 Cargo.toml       |  4 ++--
 README.md        | 48 ++++++++++++++++++++++++------------------------
 docs/install.org |  2 +-
 3 files changed, 27 insertions(+), 27 deletions(-)

diff --git a/Cargo.toml b/Cargo.toml
index d243106..33f5801 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -7,8 +7,8 @@ license = "0BSD"
 readme = "README.md"
 keywords = ["org-mode", "static-site-generator", "emacs", "html", "blog"]
 categories = ["command-line-utilities", "text-processing"]
-repository = "https://github.com/ccleberg/orgo"
-homepage = "https://ccleberg.github.io/orgo/"
+repository = "https://github.com/krazywarez/orgo"
+homepage = "https://krazywarez.github.io/orgo/"
 
 # The compiler floor, checked in CI rather than assumed. orgo's own code needs 1.82
 # (`Option::is_none_or`); the floor is 1.88 because dependencies in Cargo.lock declare it
diff --git a/README.md b/README.md
index 7822ba3..40cd3b2 100644
--- a/README.md
+++ b/README.md
@@ -14,7 +14,7 @@ heading's TODO state and tags, `#+` keywords, ID links, captions on images. orgo
 of it, and its output is checked page by page against what Emacs' own exporter produces
 from the same file.
 
-**Documentation: <https://ccleberg.github.io/orgo/>** — that site is written in org and
+**Documentation: <https://krazywarez.github.io/orgo/>** — that site is written in org and
 built by orgo, so it doubles as the longest worked example available.
 
 ## Install
@@ -23,13 +23,13 @@ You need [Rust](https://rustup.rs) (1.88 or newer). Nothing else — syntax high
 its themes are compiled in.
 
 ```sh
-git clone https://github.com/ccleberg/orgo
+git clone https://github.com/krazywarez/orgo
 cd orgo
 cargo install --path .
 ```
 
 That puts an `orgo` command on your `PATH`. Full notes, including how to run it without
-installing anything: <https://ccleberg.github.io/orgo/install.html>
+installing anything: <https://krazywarez.github.io/orgo/install.html>
 
 ## Your first site
 
@@ -68,36 +68,36 @@ Each of these is a few lines of config, and each has a page in the guide:
 
 | Add | Documented in |
 |---|---|
-| A blog index, newest first | [Collections](https://ccleberg.github.io/orgo/guide/03-collections.html) |
-| Tag pages, and an index of tags | [Collections](https://ccleberg.github.io/orgo/guide/03-collections.html) |
-| An RSS feed | [Collections](https://ccleberg.github.io/orgo/guide/03-collections.html) |
-| Numbered pages when a list gets long | [Collections](https://ccleberg.github.io/orgo/guide/03-collections.html) |
-| Your own design, in ordinary HTML templates | [Templates](https://ccleberg.github.io/orgo/guide/04-templates.html) |
-| Drafts that stay unpublished until you say so | [Authoring](https://ccleberg.github.io/orgo/guide/06-authoring.html) |
-| A table of contents on long posts | [Authoring](https://ccleberg.github.io/orgo/guide/06-authoring.html) |
-| Clean URLs that survive a renamed file | [Authoring](https://ccleberg.github.io/orgo/guide/06-authoring.html) |
+| A blog index, newest first | [Collections](https://krazywarez.github.io/orgo/guide/03-collections.html) |
+| Tag pages, and an index of tags | [Collections](https://krazywarez.github.io/orgo/guide/03-collections.html) |
+| An RSS feed | [Collections](https://krazywarez.github.io/orgo/guide/03-collections.html) |
+| Numbered pages when a list gets long | [Collections](https://krazywarez.github.io/orgo/guide/03-collections.html) |
+| Your own design, in ordinary HTML templates | [Templates](https://krazywarez.github.io/orgo/guide/04-templates.html) |
+| Drafts that stay unpublished until you say so | [Authoring](https://krazywarez.github.io/orgo/guide/06-authoring.html) |
+| A table of contents on long posts | [Authoring](https://krazywarez.github.io/orgo/guide/06-authoring.html) |
+| Clean URLs that survive a renamed file | [Authoring](https://krazywarez.github.io/orgo/guide/06-authoring.html) |
 
 Rebuilds only touch the pages that actually changed, so saving a post on a site with
 hundreds of them stays instant.
 
 ## The documentation
 
-<https://ccleberg.github.io/orgo/>
+<https://krazywarez.github.io/orgo/>
 
 | Page | What is in it |
 |---|---|
-| [Quick start](https://ccleberg.github.io/orgo/quickstart.html) | A working site in two commands, then your own writing, then your own design. |
-| [Install](https://ccleberg.github.io/orgo/install.html) | Getting the binary, and running it without installing anything. |
-| [Commands](https://ccleberg.github.io/orgo/guide/01-cli.html) | Every command and flag, and what each is for. |
-| [Configuration](https://ccleberg.github.io/orgo/guide/02-configuration.html) | Every setting in `orgo.toml`, what it changes, and what it costs. |
-| [Collections](https://ccleberg.github.io/orgo/guide/03-collections.html) | Blog indexes, tag pages, pagination and RSS feeds. |
-| [Templates](https://ccleberg.github.io/orgo/guide/04-templates.html) | Layouts, and every variable a template can use. |
-| [Org support](https://ccleberg.github.io/orgo/guide/05-org-support.html) | Which org syntax is handled, which is not, and how the rest degrades. |
-| [Authoring](https://ccleberg.github.io/orgo/guide/06-authoring.html) | URLs, drafts, excerpts, tables of contents. |
-| [Incremental builds](https://ccleberg.github.io/orgo/guide/07-incremental.html) | How it decides what to rebuild. |
-| [Watching and serving](https://ccleberg.github.io/orgo/guide/08-workflow.html) | The write-save-see loop. |
-| [Auditing](https://ccleberg.github.io/orgo/guide/09-auditing.html) | Reading a corpus before trusting a tool with it. |
-| [Deploying](https://ccleberg.github.io/orgo/guide/10-deploying.html) | Producing a production build, and putting it somewhere. |
+| [Quick start](https://krazywarez.github.io/orgo/quickstart.html) | A working site in two commands, then your own writing, then your own design. |
+| [Install](https://krazywarez.github.io/orgo/install.html) | Getting the binary, and running it without installing anything. |
+| [Commands](https://krazywarez.github.io/orgo/guide/01-cli.html) | Every command and flag, and what each is for. |
+| [Configuration](https://krazywarez.github.io/orgo/guide/02-configuration.html) | Every setting in `orgo.toml`, what it changes, and what it costs. |
+| [Collections](https://krazywarez.github.io/orgo/guide/03-collections.html) | Blog indexes, tag pages, pagination and RSS feeds. |
+| [Templates](https://krazywarez.github.io/orgo/guide/04-templates.html) | Layouts, and every variable a template can use. |
+| [Org support](https://krazywarez.github.io/orgo/guide/05-org-support.html) | Which org syntax is handled, which is not, and how the rest degrades. |
+| [Authoring](https://krazywarez.github.io/orgo/guide/06-authoring.html) | URLs, drafts, excerpts, tables of contents. |
+| [Incremental builds](https://krazywarez.github.io/orgo/guide/07-incremental.html) | How it decides what to rebuild. |
+| [Watching and serving](https://krazywarez.github.io/orgo/guide/08-workflow.html) | The write-save-see loop. |
+| [Auditing](https://krazywarez.github.io/orgo/guide/09-auditing.html) | Reading a corpus before trusting a tool with it. |
+| [Deploying](https://krazywarez.github.io/orgo/guide/10-deploying.html) | Producing a production build, and putting it somewhere. |
 
 ## Building from a checkout
 
diff --git a/docs/install.org b/docs/install.org
index 06c9860..10bdcc3 100644
--- a/docs/install.org
+++ b/docs/install.org
@@ -13,7 +13,7 @@
 * From source
 
 #+BEGIN_SRC sh
-git clone https://github.com/ccleberg/orgo
+git clone https://github.com/krazywarez/orgo
 cd orgo
 cargo build --release
 #+END_SRC