summaryrefslogtreecommitdiffstats
path: root/content/2015-08-10-this-week-in-rust.md
diff options
context:
space:
mode:
authorSimon Sapin <simon.sapin@exyr.org>2015-08-11 08:11:55 +0100
committerSimon Sapin <simon.sapin@exyr.org>2015-08-11 08:11:55 +0100
commit1e87d55d1027e98418bc1ebe3f7786ba50a776d0 (patch)
tree5aed5b6660fd41dabcb085b94e9d7b9cf6f47fcc /content/2015-08-10-this-week-in-rust.md
parent005ea6a91475f2265737696752ee390818d9987f (diff)
Pelican might not support fenced code blocks?
The quote of the week is formatted on http://this-week-in-rust.org/blog/2015/08/10/this-week-in-rust-91/ as inline code without line breaks. Maybe the flavor of Markdown used by Pelican does not support fenced (triple backticks) code blocks? Try the indented syntax instead.
Diffstat (limited to 'content/2015-08-10-this-week-in-rust.md')
-rw-r--r--content/2015-08-10-this-week-in-rust.md8
1 files changed, 3 insertions, 5 deletions
diff --git a/content/2015-08-10-this-week-in-rust.md b/content/2015-08-10-this-week-in-rust.md
index 7883cb4..9fdfc63 100644
--- a/content/2015-08-10-this-week-in-rust.md
+++ b/content/2015-08-10-this-week-in-rust.md
@@ -190,11 +190,9 @@ There are some jobs writing Rust! This week's listings:
# Quote of the Week
-```
-<bluss> I've tried using unchecked indexing in non-trivial code now a couple of times. It never makes a big difference
-<bluss> Profiling shows like 1-2% improvement if that
-<bluss> so it's the tightest loops you should worry about, not much more
-```
+ <bluss> I've tried using unchecked indexing in non-trivial code now a couple of times. It never makes a big difference
+ <bluss> Profiling shows like 1-2% improvement if that
+ <bluss> so it's the tightest loops you should worry about, not much more
@bluss knows a few things about micro-optimization.