Apply some code style changes.

This commit is contained in:
Eric Huss 2023-05-28 13:51:30 -07:00
parent 5572d3d4de
commit c9cfe22fd6
1 changed files with 10 additions and 13 deletions

View File

@ -892,15 +892,15 @@ fn fix_code_blocks(html: &str) -> String {
.into_owned() .into_owned()
} }
static CODE_BLOCK_RE: Lazy<Regex> =
Lazy::new(|| Regex::new(r##"((?s)<code[^>]?class="([^"]+)".*?>(.*?)</code>)"##).unwrap());
fn add_playground_pre( fn add_playground_pre(
html: &str, html: &str,
playground_config: &Playground, playground_config: &Playground,
edition: Option<RustEdition>, edition: Option<RustEdition>,
) -> String { ) -> String {
static ADD_PLAYGROUND_PRE: Lazy<Regex> = CODE_BLOCK_RE
Lazy::new(|| Regex::new(r##"((?s)<code[^>]?class="([^"]+)".*?>(.*?)</code>)"##).unwrap());
ADD_PLAYGROUND_PRE
.replace_all(html, |caps: &Captures<'_>| { .replace_all(html, |caps: &Captures<'_>| {
let text = &caps[1]; let text = &caps[1];
let classes = &caps[2]; let classes = &caps[2];
@ -958,11 +958,12 @@ fn add_playground_pre(
.into_owned() .into_owned()
} }
/// Modifies all `<code>` blocks to convert "hidden" lines and to wrap them in
/// a `<span class="boring">`.
fn hide_lines(html: &str, code_config: &Code) -> String { fn hide_lines(html: &str, code_config: &Code) -> String {
let regex = Regex::new(r##"((?s)<code[^>]?class="([^"]+)".*?>(.*?)</code>)"##).unwrap();
let language_regex = Regex::new(r"\blanguage-(\w+)\b").unwrap(); let language_regex = Regex::new(r"\blanguage-(\w+)\b").unwrap();
let hidelines_regex = Regex::new(r"\bhidelines=(\S+)").unwrap(); let hidelines_regex = Regex::new(r"\bhidelines=(\S+)").unwrap();
regex CODE_BLOCK_RE
.replace_all(html, |caps: &Captures<'_>| { .replace_all(html, |caps: &Captures<'_>| {
let text = &caps[1]; let text = &caps[1];
let classes = &caps[2]; let classes = &caps[2];
@ -981,13 +982,9 @@ fn hide_lines(html: &str, code_config: &Code) -> String {
Some(capture) => Some(&capture[1]), Some(capture) => Some(&capture[1]),
None => { None => {
// Then look up the prefix by language // Then look up the prefix by language
let language_capture = language_regex.captures(classes); language_regex.captures(classes).and_then(|capture| {
match &language_capture {
Some(capture) => {
code_config.hidelines.get(&capture[1]).map(|p| p.as_str()) code_config.hidelines.get(&capture[1]).map(|p| p.as_str())
} })
None => None,
}
} }
}; };