From 8753cda12fe76bea28dbab215b64c3a3f1b8a610 Mon Sep 17 00:00:00 2001 From: Shia Date: Fri, 8 Jul 2016 07:56:58 +0900 Subject: [PATCH] Proposal to highlight indented code Hi, I'm shia, This is updated the indented, not syntax highlighted code to be applied syntax highlight. meaning to say, indent will not be applied syntax highlight, so it look like blocked, strange T-T how about give him to be more beautiful? I can't find the reason why this snippet only indented, not highlighted. Thanks to read this. :) --- getting-started/meta/macros.markdown | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/getting-started/meta/macros.markdown b/getting-started/meta/macros.markdown index d66c83c78..ec903331e 100644 --- a/getting-started/meta/macros.markdown +++ b/getting-started/meta/macros.markdown @@ -156,7 +156,9 @@ HygieneTest.go Variable hygiene only works because Elixir annotates variables with their context. For example, a variable `x` defined on line 3 of a module would be represented as: - {:x, [line: 3], nil} +```elixir +{:x, [line: 3], nil} +``` However, a quoted variable is represented as: