diff options
| author | Aleksey Filippov <alekseyf@google.com> | 2018-02-04 22:11:13 +0000 |
|---|---|---|
| committer | Aleksey Filippov <alekseyf@google.com> | 2018-02-05 01:28:07 +0000 |
| commit | f5917d261cb8ca60b8e2988b4c1350a8d955f190 (patch) | |
| tree | 412b5d7bdb5eeb3130ca9e758b77101666d65570 | |
| parent | 65afa967d087b41d7020dfd6465a573c5469f61f (diff) | |
| download | meson-f5917d261cb8ca60b8e2988b4c1350a8d955f190.tar.gz | |
Use text keyword for directory example code blocks
| -rw-r--r-- | docs/markdown/Reference-manual.md | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/markdown/Reference-manual.md b/docs/markdown/Reference-manual.md index 4b0390e15..ca2864327 100644 --- a/docs/markdown/Reference-manual.md +++ b/docs/markdown/Reference-manual.md @@ -791,14 +791,14 @@ The following keyword arguments are supported: Since 0.45.0 For a given directory `foo`: -``` +```text foo/ bar/ file1 file2 ``` `install_subdir('foo', install_dir : 'share', strip_directory : false)` creates -``` +```text share/ foo/ bar/ @@ -807,7 +807,7 @@ share/ ``` `install_subdir('foo', install_dir : 'share', strip_directory : true)` creates -``` +```text share/ bar/ file1 @@ -815,14 +815,14 @@ share/ ``` `install_subdir('foo/bar', install_dir : 'share', strip_directory : false)` creates -``` +```text share/ bar/ file1 ``` `install_subdir('foo/bar', install_dir : 'share', strip_directory : true)` creates -``` +```text share/ file1 ``` |
