1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
use crate::docs::markdown::tera::TERA;
use crate::docs::models::Spec;
use crate::error::UsageErr;
use itertools::Itertools;
use regex::Regex;
use std::sync::LazyLock;
/// An ANSI escape sequence: what `color_print::cstr!` leaves in help text.
static SGR: LazyLock<Regex> = LazyLock::new(|| Regex::new(r"\x1b\[[0-?]*[ -/]*[@-~]").unwrap());
/// A backtick span, or a bare `<` outside one.
static CODE_SPAN_OR_LT: LazyLock<Regex> = LazyLock::new(|| Regex::new(r"(`[^`]*`)|(<)").unwrap());
fn escape_md(value: &str, html_encode: bool) -> String {
let mut in_fenced_code_block = false;
// Help text is allowed to contain terminal styling. clap-era applications commonly build
// their examples with `color_print::cstr!`, which embeds SGR sequences even when color is
// disabled at runtime. Terminal styling has no meaning in generated Markdown, and leaving
// it here publishes literal escape bytes in docs and downstream static sites.
let value = SGR.replace_all(value, "");
value
.lines()
.map(|line| {
if !html_encode {
return line.to_string();
}
// Indented code is handled before fence state. This is safe because
// `replace_code_fences` always emits closing fences at column zero.
if line.starts_with(" ") {
return line.to_string();
}
if in_fenced_code_block {
if line.trim_end() == "```" {
in_fenced_code_block = false;
}
return line.to_string();
}
// Support the conventional fence shape emitted by `replace_code_fences`
// without attempting to parse the full Markdown specification.
if line
.strip_prefix("```")
.is_some_and(|suffix| !suffix.starts_with('`'))
{
in_fenced_code_block = true;
return line.to_string();
}
// replace '<' with '<' but not inside code blocks
CODE_SPAN_OR_LT
.replace_all(line, |caps: ®ex::Captures| {
if caps.get(1).is_some() {
caps.get(1).unwrap().as_str().to_string()
} else {
"<".to_string()
}
})
.to_string()
})
.join("\n")
}
#[derive(Debug, Clone)]
pub struct MarkdownRenderer {
pub(crate) spec: Spec,
/// The config block as the spec wrote it, before any rendering.
///
/// `new` renders the whole docs model eagerly, which happens *before* the builder methods
/// that set `replace_pre_with_code_fences` and friends — and rendering marks each item
/// done, so a later pass no-ops. `render_cmd` avoids this by re-deriving from the raw
/// command its caller hands it; config has no such argument, so the raw form is kept here
/// instead. Without it, `--replace-pre-with-code-fences` silently did nothing to a
/// setting's long help.
pub(crate) raw_config: crate::spec::config::SpecConfig,
pub(crate) header_level: usize,
pub(crate) multi: bool,
url_prefix: Option<String>,
html_encode: bool,
replace_pre_with_code_fences: bool,
}
impl MarkdownRenderer {
pub fn new(spec: crate::Spec) -> Self {
let mut renderer = Self {
raw_config: spec.config.clone(),
spec: spec.into(),
header_level: 1,
multi: false,
url_prefix: None,
html_encode: true,
replace_pre_with_code_fences: false,
};
let mut spec = renderer.spec.clone();
spec.render_md(&renderer);
renderer.spec = spec;
renderer
}
/// The file name the settings page gets in `--multi` mode.
///
/// One name, always. `settings.md` was the obvious choice and the wrong one: mise has a
/// `settings` command, whose own page lands there, and config is written second — so for
/// the very CLI this feature is aimed at, the command's page was silently replaced and the
/// index linked both entries to the same file.
///
/// Choosing between two names by whether a command is in the way would fix that and
/// introduce something worse: the name would move when a command is added or removed
/// between runs, leaving the abandoned one behind as a stale page nothing links but the
/// docs site still serves. A fixed name cannot do that, and `configuration` is a name CLIs
/// give to a *file*, not to a command — the command is called `config`.
pub fn config_page(&self) -> &'static str {
"configuration.md"
}
/// A visible top-level command whose own page would be written to [`Self::config_page`].
///
/// Vanishingly unlikely, and silence is what made the `settings.md` collision hard to see,
/// so the one case left is reported rather than guessed at.
pub fn config_page_collision(&self) -> Option<&str> {
let stem = self.config_page().trim_end_matches(".md");
self.spec
.cmd
.subcommands
.values()
.find(|cmd| !cmd.hide && cmd.full_cmd == [stem])
.map(|cmd| cmd.name.as_str())
}
pub fn with_header_level(mut self, header_level: usize) -> Self {
self.header_level = header_level;
self
}
pub fn with_multi(mut self, index: bool) -> Self {
self.multi = index;
self
}
pub fn with_url_prefix<S: Into<String>>(mut self, url_prefix: S) -> Self {
self.url_prefix = Some(url_prefix.into());
self
}
pub fn with_html_encode(mut self, html_encode: bool) -> Self {
self.html_encode = html_encode;
self
}
pub fn with_replace_pre_with_code_fences(mut self, replace_pre_with_code_fences: bool) -> Self {
self.replace_pre_with_code_fences = replace_pre_with_code_fences;
self
}
fn tera_ctx(&self) -> tera::Context {
let mut ctx = tera::Context::new();
ctx.insert("spec", &self.spec);
ctx.insert("header_level", &self.header_level);
ctx.insert("multi", &self.multi);
ctx.insert("url_prefix", &self.url_prefix);
ctx.insert("html_encode", &self.html_encode);
ctx
}
/// Render with values that belong only to this page.
///
/// A page used to clone the whole renderer — including the complete command tree — merely
/// to insert one local into its stored context. Multi-page output paid that deep clone once
/// per command. The context already has to be materialized for Tera, so enrich that directly.
pub(crate) fn render_with(
&self,
template_name: &str,
enrich: impl FnOnce(&mut tera::Context),
) -> Result<String, UsageErr> {
let mut tera = TERA.clone();
let html_encode = self.html_encode;
tera.register_filter(
"escape_md",
move |value: &tera::Value,
_: tera::Kwargs,
_: &tera::State|
-> tera::TeraResult<String> {
let value = value.as_str().unwrap();
let value = escape_md(value, html_encode);
Ok(value)
},
);
let mut ctx = self.tera_ctx();
enrich(&mut ctx);
Ok(tera.render(template_name, &ctx)?)
}
pub(crate) fn replace_code_fences(&self, md: String) -> String {
if !self.replace_pre_with_code_fences {
return md;
}
// TODO: handle fences inside of <pre> or <code>
let mut in_code_block = false;
let mut new_md = String::new();
for line in md.lines() {
if let Some(line) = line.strip_prefix(" ") {
if in_code_block {
new_md.push_str(&format!("{line}\n"));
} else {
new_md.push_str(&format!("```\n{line}\n"));
in_code_block = true;
}
} else {
if in_code_block {
new_md.push_str("```\n");
in_code_block = false;
}
new_md.push_str(&format!("{line}\n"));
}
}
if in_code_block {
new_md.push_str("```\n");
}
new_md.replace("```\n\n```\n", "\n")
}
}
#[cfg(test)]
mod tests {
use super::escape_md;
use pretty_assertions::assert_eq;
#[test]
fn escapes_html_around_fenced_code_blocks() {
let input = "before <\n```\ninside <\n``` \nafter <";
let expected = "before <\n```\ninside <\n``` \nafter <";
assert_eq!(escape_md(input, true), expected);
}
#[test]
fn supports_fence_info_strings() {
let input = "```bash\necho <value>\n```\nafter <";
let expected = "```bash\necho <value>\n```\nafter <";
assert_eq!(escape_md(input, true), expected);
}
#[test]
fn leaves_unclosed_fences_unescaped() {
let input = "```\necho <value>";
assert_eq!(escape_md(input, true), input);
}
#[test]
fn ignores_indented_and_longer_fences() {
let input = " ```\nindented <\n````\nlonger <";
let expected = " ```\nindented <\n````\nlonger <";
assert_eq!(escape_md(input, true), expected);
}
#[test]
fn leaves_markdown_unchanged_when_html_encoding_is_disabled() {
let input = "before <\n```\ninside <\n```\nafter <";
assert_eq!(escape_md(input, false), input);
}
#[test]
fn strips_terminal_styling_from_generated_markdown() {
let input =
"\u{1b}[1m\u{1b}[4mExamples:\u{1b}[22m\u{1b}[24m\n\n \u{1b}[1mmise run\u{1b}[22m";
let expected = "Examples:\n\n mise run";
assert_eq!(escape_md(input, true), expected);
assert_eq!(escape_md(input, false), expected);
}
}