aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2022-03-21 12:22:02 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2022-03-21 12:22:02 +0300
commit27ff3ffbfc39231d20082903d969e2ead48a6221 (patch)
tree9ccaea47c829fd63e8ff89ca776b342305d869a2
parentnotes: add makefile.md (diff)
downloadblog-27ff3ffbfc39231d20082903d969e2ead48a6221.tar.gz
blog-27ff3ffbfc39231d20082903d969e2ead48a6221.zip
makefile_escaping: fix markdown
-rw-r--r--_posts/2020-05-20-makefile-escaping.md4
1 files changed, 3 insertions, 1 deletions
diff --git a/_posts/2020-05-20-makefile-escaping.md b/_posts/2020-05-20-makefile-escaping.md
index bf29657..90acf85 100644
--- a/_posts/2020-05-20-makefile-escaping.md
+++ b/_posts/2020-05-20-makefile-escaping.md
@@ -35,9 +35,11 @@ variable, but the same rules should apply for all similar `sh`-like shells.
TL;DR
-----
-Visit [this page]({{ site.baseurl }}{% link _notes/makefile.md %}) for an all-in-one Makefile.
+Visit [this page] for an all-in-one Makefile.
{: .alert .alert-info }
+[this page]: {{ site.baseurl }}{% link _notes/makefile.md %}
+
* Put the prologue above at the top of your Makefile.
* Quote command arguments in Makefiles using single quotes `'`.
* Don't use `'` and `$` in stuff like file paths/environment variable values,