diff options
author | Stephen Gregoratto <dev@sgregoratto.me> | 2019-01-14 14:04:59 +1100 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2019-01-14 07:53:30 -0500 |
commit | 7e055f2dd5256f0083ac446022ccc8328a5ad873 (patch) | |
tree | 8368e58653f7195df0a2988b4759350f058b176d /tutorials | |
parent | d70774ecb1add3929d0c8491a8d7d7c9021e99da (diff) | |
download | sr.ht-docs-7e055f2dd5256f0083ac446022ccc8328a5ad873.tar.gz |
Use fenced code blocks where applicable.
Diffstat (limited to 'tutorials')
-rw-r--r-- | tutorials/getting-started-with-builds.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tutorials/getting-started-with-builds.md b/tutorials/getting-started-with-builds.md index 7a0b29e..2604e4b 100644 --- a/tutorials/getting-started-with-builds.md +++ b/tutorials/getting-started-with-builds.md @@ -12,7 +12,7 @@ which can be submitted to builds.sr.ht for processing. Let's start with a basic manifest: -```yml +```yaml image: alpine/edge tasks: - example: | @@ -43,7 +43,7 @@ see "hello world" shown under the "example" task. Let's try a new build manifest. This one is going to compile and test the [scdoc](https://git.sr.ht/~sircmpwn/scdoc) project. -```yml +```yaml image: alpine/edge sources: - https://git.sr.ht/~sircmpwn/scdoc @@ -66,7 +66,7 @@ scdoc is a simple project with no dependencies. Let's try a slightly more complex one: [mrsh](https://git.sr.ht/~emersion/mrsh), which depends on [meson](https://mesonbuild.com/). Here's a build manifest for it: -```yml +```yaml image: alpine/edge packages: - meson @@ -94,7 +94,7 @@ images use different package managers. Portability is important - so let's try running the same manifest on another operating system. -```yml +```yaml image: freebsd packages: - meson |