Skip to content

Commit

Permalink
fix links with code with square-brackets
Browse files Browse the repository at this point in the history
There is a python-markdown bug that causes links containing code with
square brackets to malfunction in certain contexts. Work around the bug
by adding html " " at the end of the line to avoid the issue.

This can be reverted if Python-Markdown bug 1209 gets fixed upstream.
  • Loading branch information
ericseppanen committed Jan 9, 2022
1 parent b1df7ed commit ade6ded
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion content/2020-06-30-this-week-in-rust.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ If you are a Rust project owner and are looking for contributors, please submit
* [shortcuts for min/max on ordinary BTreeMap/BTreeSet iterators](https://github.com/rust-lang/rust/pull/73627)
* [add `TryFrom<{int}>` for `NonZero{int}`](https://github.com/rust-lang/rust/pull/72717)
* [add a fast path for `std::thread::panicking`.](https://github.com/rust-lang/rust/pull/72617)
* [add `[T]::partition_point`](https://github.com/rust-lang/rust/pull/73577)
* [add `[T]::partition_point`](https://github.com/rust-lang/rust/pull/73577) &nbsp;
* [add unstable `core::mem::variant_count` intrinsic](https://github.com/rust-lang/rust/pull/73418)
* [added io forwarding methods to the stdio structs](https://github.com/rust-lang/rust/pull/72705)
* [stabilize `leading_trailing_ones`](https://github.com/rust-lang/rust/pull/73032)
Expand Down
2 changes: 1 addition & 1 deletion content/2020-08-18-this-week-in-rust.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ If you are a Rust project owner and are looking for contributors, please submit
* [detect JS-style `===` and `!==` and recover](https://github.com/rust-lang/rust/pull/75321)
* [detect likely `for foo of bar` JS syntax](https://github.com/rust-lang/rust/pull/75320)
* [move stack size check to `const_eval` machine](https://github.com/rust-lang/rust/pull/75338)
* [add `array` lang item and `[T; N]::map(f: FnMut(T) -> S)`](https://github.com/rust-lang/rust/pull/75212)
* [add `array` lang item and `[T; N]::map(f: FnMut(T) -> S)`](https://github.com/rust-lang/rust/pull/75212) &nbsp;
* [remove branch in optimized `is_ascii`](https://github.com/rust-lang/rust/pull/74562)
* [constified `str::from_utf8_unchecked`](https://github.com/rust-lang/rust/pull/75157)
* [hard way to respect `BTreeMap`'s minimum node length](https://github.com/rust-lang/rust/pull/75105)
Expand Down
2 changes: 1 addition & 1 deletion content/2020-09-09-this-week-in-rust.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ If you are a Rust project owner and are looking for contributors, please submit
* [stabilize `deque_make_contiguous`](https://github.com/rust-lang/rust/pull/74559)
* [add `slice::check_range`](https://github.com/rust-lang/rust/pull/75207)
* [BTreeMap: introduce marker::ValMut and reserve Mut for unique access](https://github.com/rust-lang/rust/pull/75200)
* [add `[T; N]::as_[mut_]slice`](https://github.com/rust-lang/rust/pull/76120)
* [add `[T; N]::as_[mut_]slice`](https://github.com/rust-lang/rust/pull/76120) &nbsp;
* [implement `Seek::stream_position()` for `BufReader`](https://github.com/rust-lang/rust/pull/74366)
* [`impl Rc::new_cyclic`](https://github.com/rust-lang/rust/pull/75994)
* [make `cow_is_borrowed` methods const](https://github.com/rust-lang/rust/pull/76139)
Expand Down
2 changes: 1 addition & 1 deletion content/2020-09-23-this-week-in-rust.md
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ If you are a Rust project owner and are looking for contributors, please submit
* [miri: support non-rlib extern files](https://github.com/rust-lang/miri/pull/1557)
* [add `as_str()` to `string::Drain`](https://github.com/rust-lang/rust/pull/76525)
* [make all methods of `Duration` unstably const](https://github.com/rust-lang/rust/pull/76335)
* [add `[T; N]: TryFrom<Vec<T>>`](https://github.com/rust-lang/rust/pull/76310)
* [add `[T]: TryFrom<Vec<T>>`](https://github.com/rust-lang/rust/pull/76310) &nbsp;
* [stabilize some `Result` methods as const](https://github.com/rust-lang/rust/pull/76136)
* [stabilize some `Option` methods as const](https://github.com/rust-lang/rust/pull/76135)
* [avoid useless `sift_down` when `std::collections::binary_heap::PeekMut` is never mutably dereferenced](https://github.com/rust-lang/rust/pull/75974)
Expand Down
2 changes: 1 addition & 1 deletion content/2021-07-21-this-week-in-rust.md
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ If you are a Rust project owner and are looking for contributors, please submit
* [perf: noise and variance](https://github.com/rust-lang/rustc-perf/pull/902)
* [some perf optimizations and logging](https://github.com/rust-lang/rust/pull/87203)
* [update Rust Float-Parsing to use the Eisel-Lemire algorithm](https://github.com/rust-lang/rust/pull/86761)
* [stabilize `[T; N]::map(_)`](https://github.com/rust-lang/rust/pull/87174)
* [stabilize `[T; N]::map(_)`](https://github.com/rust-lang/rust/pull/87174) &nbsp;
* [split `MaybeUninit::write` into new feature gate and stabilize it](https://github.com/rust-lang/rust/pull/86344)
* [mark Option::insert as `must_use`](https://github.com/rust-lang/rust/pull/87196)
* [added `Arc::try_pin`](https://github.com/rust-lang/rust/pull/85579)
Expand Down
2 changes: 1 addition & 1 deletion content/2021-10-06-this-week-in-rust.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ If you are a Rust project owner and are looking for contributors, please submit

* [make *const (), *mut () okay for FFI](https://github.com/rust-lang/rust/pull/84267)
* [resolve: cache module loading for all foreign modules](https://github.com/rust-lang/rust/pull/89239)
* [improve error message for missing angle brackets in `[_]::method`](https://github.com/rust-lang/rust/pull/89447)
* [improve error message for missing angle brackets in `[_]::method`](https://github.com/rust-lang/rust/pull/89447) &nbsp;
* [avoid nondeterminism in `trimmed_def_paths`](https://github.com/rust-lang/rust/pull/89408)
* [improve error message for printf-style format strings](https://github.com/rust-lang/rust/pull/89340)
* [pick one possible lifetime in case there are multiple choices](https://github.com/rust-lang/rust/pull/89327)
Expand Down
2 changes: 1 addition & 1 deletion content/2021-12-22-this-week-in-rust.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ If you are a Rust project owner and are looking for contributors, please submit
* [perf: manually implement `Hash` for `DefId`](https://github.com/rust-lang/rust/pull/91660)
* [enable `#[thread_local]` for all windows-msvc targets](https://github.com/rust-lang/rust/pull/92042)
* [add entry_ref API to HashMap](https://github.com/rust-lang/hashbrown/pull/301)
* [add `[T]::as_simd(_mut)`](https://github.com/rust-lang/rust/pull/91479)
* [add `[T]::as_simd(_mut)`](https://github.com/rust-lang/rust/pull/91479) &nbsp;
* [add `BinaryHeap::try_reserve` and `BinaryHeap::try_reserve_exact`](https://github.com/rust-lang/rust/pull/91529)
* [add `io::Error::other`](https://github.com/rust-lang/rust/pull/91947)
* [avoid sorting in hash map stable hashing](https://github.com/rust-lang/rust/pull/91837)
Expand Down

0 comments on commit ade6ded

Please sign in to comment.