Skip to content

Commit 6a23521

Browse files
committed
post: fix a bunch of anchor links
Surprise surprise, at some point, Hugo decided to change how anchor names were generated. So many of my carefully crafted links broke.
1 parent 8d084ad commit 6a23521

File tree

3 files changed

+20
-21
lines changed

3 files changed

+20
-21
lines changed

content/post/csv.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ in the API documentation, and is more likely to be updated as time passes.
3535

3636
## Table of contents
3737

38-
* [csv 1.0 release](#csv-1-0-release)
38+
* [csv 1.0 release](#csv-10-release)
3939
* [Setup](#setup)
4040
* [Basic error handling](#basic-error-handling)
4141
* [Switch to recoverable errors](#switch-to-recoverable-errors)

content/post/ripgrep.md

Lines changed: 17 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -73,25 +73,24 @@ with something I can reproduce, I'd be happy to try and explain it.
7373
* [Benchmark runner](#benchmark-runner)
7474
* [Environment](#environment)
7575
* [Code search benchmarks](#code-search-benchmarks)
76-
* [`linux_literal_default`](#linux-literal-default)
77-
* [`linux_literal`](#linux-literal)
78-
* [`linux_literal_casei`](#linux-literal-casei)
79-
* [`linux_word`](#linux-word)
80-
* [`linux_unicode_word`](#linux-unicode-word)
81-
* [`linux_re_literal_suffix`](#linux-re-literal-suffix)
82-
* [`linux_alternates`](#linux-alternates)
83-
* [`linux_alternates_casei`](#linux-alternates-casei)
84-
* [`linux_unicode_greek`](#linux-unicode-greek)
85-
* [`linux_unicode_greek_casei`](#linux-unicode-greek-casei)
86-
* [`linux_no_literal`](#linux-no-literal)
76+
* [`linux_literal_default`](#linux_literal_default)
77+
* [`linux_literal`](#linux_literal)
78+
* [`linux_literal_casei`](#linux_literal_casei)
79+
* [`linux_word`](#linux_word)
80+
* [`linux_unicode_word`](#linux_unicode_word)
81+
* [`linux_re_literal_suffix`](#linux_re_literal_suffix)
82+
* [`linux_alternates`](#linux_alternates)
83+
* [`linux_alternates_casei`](#linux_alternates_casei)
84+
* [`linux_unicode_greek`](#linux_unicode_greek)
85+
* [`linux_unicode_greek_casei`](#linux_unicode_greek_casei)
86+
* [`linux_no_literal`](#linux_no_literal)
8787
* [Single file benchmarks](#single-file-benchmarks)
88-
* [`subtitles_literal`](#subtitles-literal)
89-
* [`subtitles_literal_casei`](#subtitles-literal-casei)
90-
* [`subtitles_literal_word`](#subtitles-literal-word)
91-
* [`subtitles_alternate`](#subtitles-alternate)
92-
* [`subtitles_alternate_casei`](#subtitles-alternate-casei)
93-
* [`subtitles_surrounding_words`](#subtitles-surrounding-words)
94-
* [`subtitles_no_literal`](#subtitles-no-literal)
88+
* [`subtitles_literal`](#subtitles_literal)
89+
* [`subtitles_literal_casei`](#subtitles_literal_casei)
90+
* [`subtitles_alternate`](#subtitles_alternate)
91+
* [`subtitles_alternate_casei`](#subtitles_alternate_casei)
92+
* [`subtitles_surrounding_words`](#subtitles_surrounding_words)
93+
* [`subtitles_no_literal`](#subtitles_no_literal)
9594
* [Bonus benchmarks](#bonus-benchmarks)
9695
* [`everything`](#everything)
9796
* [`nothing`](#nothing)

content/post/rust-error-handling.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ systems may want to jump around. Here's my very brief guide:
106106
* [The `Result` type](#the-result-type)
107107
* [Parsing integers](#parsing-integers)
108108
* [The `Result` type alias idiom](#the-result-type-alias-idiom)
109-
* [A brief interlude: unwrapping isn't evil](#a-brief-interlude-unwrapping-isn-t-evil)
109+
* [A brief interlude: unwrapping isn't evil](#a-brief-interlude-unwrapping-isnt-evil)
110110
* [Working with multiple error types](#working-with-multiple-error-types)
111111
* [Composing `Option` and `Result`](#composing-option-and-result)
112112
* [The limits of combinators](#the-limits-of-combinators)
@@ -120,7 +120,7 @@ systems may want to jump around. Here's my very brief guide:
120120
* [Composing custom error types](#composing-custom-error-types)
121121
* [Advice for library writers](#advice-for-library-writers)
122122
* [Case study: A program to read population data](#case-study-a-program-to-read-population-data)
123-
* [It's on Github](#it-s-on-github)
123+
* [It's on Github](#its-on-github)
124124
* [Initial setup](#initial-setup)
125125
* [Argument parsing](#argument-parsing)
126126
* [Writing the logic](#writing-the-logic)

0 commit comments

Comments
 (0)