From 74b6279f5fa2533fbc6e9462eaa9df2dad0bc9cc Mon Sep 17 00:00:00 2001 From: Eduard Laur Date: Wed, 21 Aug 2019 09:46:33 +0300 Subject: [PATCH] Fix wrongly displayed markdown Signed-off-by: Eduard Laur --- docs/chart_template_guide/accessing_files.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/chart_template_guide/accessing_files.md b/docs/chart_template_guide/accessing_files.md index 23bead122..e1a6932cc 100644 --- a/docs/chart_template_guide/accessing_files.md +++ b/docs/chart_template_guide/accessing_files.md @@ -30,19 +30,19 @@ With those caveats behind, let's write a template that reads three files into ou `config1.toml`: ```toml -message = Hello from config 1 +message = "Hello from config 1" ``` `config2.toml`: ```toml -message = This is config 2 +message = "This is config 2" ``` `config3.toml`: ```toml -message = Goodbye from config 3 +message = "Goodbye from config 3" ``` Each of these is a simple TOML file (think old-school Windows INI files). We know the names of these files, so we can use a `range` function to loop through them and inject their contents into our ConfigMap. @@ -72,13 +72,13 @@ metadata: name: quieting-giraf-configmap data: config1.toml: |- - message = Hello from config 1 + message = "Hello from config 1" config2.toml: |- - message = This is config 2 + message = "This is config 2" config3.toml: |- - message = Goodbye from config 3 + message = "Goodbye from config 3" ``` ## Path helpers