Skip to content

Commit 2e14bfe

Browse files
committed
rustdoc to accept # at the start of a markdown file #40560
1 parent 49c67bd commit 2e14bfe

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

src/librustdoc/markdown.rs

+7-5
Original file line numberDiff line numberDiff line change
@@ -28,20 +28,22 @@ use html::markdown;
2828
use html::markdown::{Markdown, MarkdownWithToc, find_testable_code};
2929
use test::{TestOptions, Collector};
3030

31-
/// Separate any lines at the start of the file that begin with `%`.
31+
/// Separate any lines at the start of the file that begin with `# ` or `%`.
3232
fn extract_leading_metadata<'a>(s: &'a str) -> (Vec<&'a str>, &'a str) {
3333
let mut metadata = Vec::new();
3434
let mut count = 0;
35+
3536
for line in s.lines() {
36-
if line.starts_with("%") {
37-
// remove %<whitespace>
37+
if line.starts_with("# ") || line.starts_with("%") {
38+
// trim the whitespace after the symbol
3839
metadata.push(line[1..].trim_left());
3940
count += line.len() + 1;
4041
} else {
4142
return (metadata, &s[count..]);
4243
}
4344
}
44-
// if we're here, then all lines were metadata % lines.
45+
46+
// if we're here, then all lines were metadata `# ` or `%` lines.
4547
(metadata, "")
4648
}
4749

@@ -83,7 +85,7 @@ pub fn render(input: &str, mut output: PathBuf, matches: &getopts::Matches,
8385
if metadata.is_empty() {
8486
let _ = writeln!(
8587
&mut io::stderr(),
86-
"rustdoc: invalid markdown file: expecting initial line with `% ...TITLE...`"
88+
"rustdoc: invalid markdown file: no initial lines starting with `# ` or `%`"
8789
);
8890
return 5;
8991
}

0 commit comments

Comments
 (0)