Skip to content

Commit ade6ded

Browse files
committed
fix links with code with square-brackets
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.
1 parent b1df7ed commit ade6ded

7 files changed

+7
-7
lines changed

content/2020-06-30-this-week-in-rust.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ If you are a Rust project owner and are looking for contributors, please submit
112112
* [shortcuts for min/max on ordinary BTreeMap/BTreeSet iterators](https://github.com/rust-lang/rust/pull/73627)
113113
* [add `TryFrom<{int}>` for `NonZero{int}`](https://github.com/rust-lang/rust/pull/72717)
114114
* [add a fast path for `std::thread::panicking`.](https://github.com/rust-lang/rust/pull/72617)
115-
* [add `[T]::partition_point`](https://github.com/rust-lang/rust/pull/73577)
115+
* [add `[T]::partition_point`](https://github.com/rust-lang/rust/pull/73577) &nbsp;
116116
* [add unstable `core::mem::variant_count` intrinsic](https://github.com/rust-lang/rust/pull/73418)
117117
* [added io forwarding methods to the stdio structs](https://github.com/rust-lang/rust/pull/72705)
118118
* [stabilize `leading_trailing_ones`](https://github.com/rust-lang/rust/pull/73032)

content/2020-08-18-this-week-in-rust.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ If you are a Rust project owner and are looking for contributors, please submit
119119
* [detect JS-style `===` and `!==` and recover](https://github.com/rust-lang/rust/pull/75321)
120120
* [detect likely `for foo of bar` JS syntax](https://github.com/rust-lang/rust/pull/75320)
121121
* [move stack size check to `const_eval` machine](https://github.com/rust-lang/rust/pull/75338)
122-
* [add `array` lang item and `[T; N]::map(f: FnMut(T) -> S)`](https://github.com/rust-lang/rust/pull/75212)
122+
* [add `array` lang item and `[T; N]::map(f: FnMut(T) -> S)`](https://github.com/rust-lang/rust/pull/75212) &nbsp;
123123
* [remove branch in optimized `is_ascii`](https://github.com/rust-lang/rust/pull/74562)
124124
* [constified `str::from_utf8_unchecked`](https://github.com/rust-lang/rust/pull/75157)
125125
* [hard way to respect `BTreeMap`'s minimum node length](https://github.com/rust-lang/rust/pull/75105)

content/2020-09-09-this-week-in-rust.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ If you are a Rust project owner and are looking for contributors, please submit
115115
* [stabilize `deque_make_contiguous`](https://github.com/rust-lang/rust/pull/74559)
116116
* [add `slice::check_range`](https://github.com/rust-lang/rust/pull/75207)
117117
* [BTreeMap: introduce marker::ValMut and reserve Mut for unique access](https://github.com/rust-lang/rust/pull/75200)
118-
* [add `[T; N]::as_[mut_]slice`](https://github.com/rust-lang/rust/pull/76120)
118+
* [add `[T; N]::as_[mut_]slice`](https://github.com/rust-lang/rust/pull/76120) &nbsp;
119119
* [implement `Seek::stream_position()` for `BufReader`](https://github.com/rust-lang/rust/pull/74366)
120120
* [`impl Rc::new_cyclic`](https://github.com/rust-lang/rust/pull/75994)
121121
* [make `cow_is_borrowed` methods const](https://github.com/rust-lang/rust/pull/76139)

content/2020-09-23-this-week-in-rust.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ If you are a Rust project owner and are looking for contributors, please submit
141141
* [miri: support non-rlib extern files](https://github.com/rust-lang/miri/pull/1557)
142142
* [add `as_str()` to `string::Drain`](https://github.com/rust-lang/rust/pull/76525)
143143
* [make all methods of `Duration` unstably const](https://github.com/rust-lang/rust/pull/76335)
144-
* [add `[T; N]: TryFrom<Vec<T>>`](https://github.com/rust-lang/rust/pull/76310)
144+
* [add `[T]: TryFrom<Vec<T>>`](https://github.com/rust-lang/rust/pull/76310) &nbsp;
145145
* [stabilize some `Result` methods as const](https://github.com/rust-lang/rust/pull/76136)
146146
* [stabilize some `Option` methods as const](https://github.com/rust-lang/rust/pull/76135)
147147
* [avoid useless `sift_down` when `std::collections::binary_heap::PeekMut` is never mutably dereferenced](https://github.com/rust-lang/rust/pull/75974)

content/2021-07-21-this-week-in-rust.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ If you are a Rust project owner and are looking for contributors, please submit
143143
* [perf: noise and variance](https://github.com/rust-lang/rustc-perf/pull/902)
144144
* [some perf optimizations and logging](https://github.com/rust-lang/rust/pull/87203)
145145
* [update Rust Float-Parsing to use the Eisel-Lemire algorithm](https://github.com/rust-lang/rust/pull/86761)
146-
* [stabilize `[T; N]::map(_)`](https://github.com/rust-lang/rust/pull/87174)
146+
* [stabilize `[T; N]::map(_)`](https://github.com/rust-lang/rust/pull/87174) &nbsp;
147147
* [split `MaybeUninit::write` into new feature gate and stabilize it](https://github.com/rust-lang/rust/pull/86344)
148148
* [mark Option::insert as `must_use`](https://github.com/rust-lang/rust/pull/87196)
149149
* [added `Arc::try_pin`](https://github.com/rust-lang/rust/pull/85579)

content/2021-10-06-this-week-in-rust.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ If you are a Rust project owner and are looking for contributors, please submit
106106

107107
* [make *const (), *mut () okay for FFI](https://github.com/rust-lang/rust/pull/84267)
108108
* [resolve: cache module loading for all foreign modules](https://github.com/rust-lang/rust/pull/89239)
109-
* [improve error message for missing angle brackets in `[_]::method`](https://github.com/rust-lang/rust/pull/89447)
109+
* [improve error message for missing angle brackets in `[_]::method`](https://github.com/rust-lang/rust/pull/89447) &nbsp;
110110
* [avoid nondeterminism in `trimmed_def_paths`](https://github.com/rust-lang/rust/pull/89408)
111111
* [improve error message for printf-style format strings](https://github.com/rust-lang/rust/pull/89340)
112112
* [pick one possible lifetime in case there are multiple choices](https://github.com/rust-lang/rust/pull/89327)

content/2021-12-22-this-week-in-rust.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ If you are a Rust project owner and are looking for contributors, please submit
9292
* [perf: manually implement `Hash` for `DefId`](https://github.com/rust-lang/rust/pull/91660)
9393
* [enable `#[thread_local]` for all windows-msvc targets](https://github.com/rust-lang/rust/pull/92042)
9494
* [add entry_ref API to HashMap](https://github.com/rust-lang/hashbrown/pull/301)
95-
* [add `[T]::as_simd(_mut)`](https://github.com/rust-lang/rust/pull/91479)
95+
* [add `[T]::as_simd(_mut)`](https://github.com/rust-lang/rust/pull/91479) &nbsp;
9696
* [add `BinaryHeap::try_reserve` and `BinaryHeap::try_reserve_exact`](https://github.com/rust-lang/rust/pull/91529)
9797
* [add `io::Error::other`](https://github.com/rust-lang/rust/pull/91947)
9898
* [avoid sorting in hash map stable hashing](https://github.com/rust-lang/rust/pull/91837)

0 commit comments

Comments
 (0)