From c0cb444f8ba29ec8b2b4f155804f0d6785a3cd57 Mon Sep 17 00:00:00 2001 From: Yaroslav Bolyukin Date: Mon, 25 Oct 2021 19:07:17 +0000 Subject: [PATCH] doc: wrap examples in code fences --- --- a/crates/jrsonnet-evaluator/src/builtin/manifest.rs +++ b/crates/jrsonnet-evaluator/src/builtin/manifest.rs @@ -159,14 +159,18 @@ pub struct ManifestYamlOptions<'s> { /// Padding before fields, i.e + /// ```yaml /// a: /// b: - /// ^^ this + /// ## <- this + /// ``` pub padding: &'s str, /// Padding before array elements in objects + /// ```yaml /// a: /// - 1 - /// ^^ this + /// ## <- this + /// ``` pub arr_element_padding: &'s str, } -- gitstuff