Merge pull request #419 from behnam/nested

Fix heading links in nested pages
This commit is contained in:
Mathieu David 2017-09-07 22:39:51 +02:00 committed by GitHub
commit f4513d3b5c
12 changed files with 164 additions and 102 deletions

View File

@ -63,14 +63,16 @@ impl HtmlHandlebars {
debug!("[*]: Render template"); debug!("[*]: Render template");
let rendered = ctx.handlebars.render("index", &ctx.data)?; let rendered = ctx.handlebars.render("index", &ctx.data)?;
let filename = Path::new(&ch.path).with_extension("html"); let filepath = Path::new(&ch.path).with_extension("html");
let rendered = self.post_process(rendered, let rendered = self.post_process(rendered,
filename.file_name().unwrap().to_str().unwrap_or(""), &normalize_path(filepath.to_str()
ctx.book.get_html_config().get_playpen_config()); .ok_or(Error::from(format!("Bad file name: {}", filepath.display())))?),
ctx.book.get_html_config().get_playpen_config()
);
// Write to file // Write to file
info!("[*] Creating {:?} ✓", filename.display()); info!("[*] Creating {:?} ✓", filepath.display());
ctx.book.write_file(filename, &rendered.into_bytes())?; ctx.book.write_file(filepath, &rendered.into_bytes())?;
if ctx.is_index { if ctx.is_index {
self.render_index(ctx.book, ch, &ctx.destination)?; self.render_index(ctx.book, ch, &ctx.destination)?;
@ -111,9 +113,9 @@ impl HtmlHandlebars {
Ok(()) Ok(())
} }
fn post_process(&self, rendered: String, filename: &str, playpen_config: &PlaypenConfig) -> String { fn post_process(&self, rendered: String, filepath: &str, playpen_config: &PlaypenConfig) -> String {
let rendered = build_header_links(&rendered, filename); let rendered = build_header_links(&rendered, &filepath);
let rendered = fix_anchor_links(&rendered, filename); let rendered = fix_anchor_links(&rendered, &filepath);
let rendered = fix_code_blocks(&rendered); let rendered = fix_code_blocks(&rendered);
let rendered = add_playpen_pre(&rendered, playpen_config); let rendered = add_playpen_pre(&rendered, playpen_config);
@ -412,7 +414,7 @@ fn make_data(book: &MDBook) -> Result<serde_json::Map<String, serde_json::Value>
/// Goes through the rendered HTML, making sure all header tags are wrapped in /// Goes through the rendered HTML, making sure all header tags are wrapped in
/// an anchor so people can link to sections directly. /// an anchor so people can link to sections directly.
fn build_header_links(html: &str, filename: &str) -> String { fn build_header_links(html: &str, filepath: &str) -> String {
let regex = Regex::new(r"<h(\d)>(.*?)</h\d>").unwrap(); let regex = Regex::new(r"<h(\d)>(.*?)</h\d>").unwrap();
let mut id_counter = HashMap::new(); let mut id_counter = HashMap::new();
@ -422,14 +424,14 @@ fn build_header_links(html: &str, filename: &str) -> String {
"Regex should ensure we only ever get numbers here", "Regex should ensure we only ever get numbers here",
); );
wrap_header_with_link(level, &caps[2], &mut id_counter, filename) wrap_header_with_link(level, &caps[2], &mut id_counter, filepath)
}) })
.into_owned() .into_owned()
} }
/// Wraps a single header tag with a link, making sure each tag gets its own /// Wraps a single header tag with a link, making sure each tag gets its own
/// unique ID by appending an auto-incremented number (if necessary). /// unique ID by appending an auto-incremented number (if necessary).
fn wrap_header_with_link(level: usize, content: &str, id_counter: &mut HashMap<String, usize>, filename: &str) fn wrap_header_with_link(level: usize, content: &str, id_counter: &mut HashMap<String, usize>, filepath: &str)
-> String { -> String {
let raw_id = id_from_content(content); let raw_id = id_from_content(content);
@ -443,11 +445,11 @@ fn wrap_header_with_link(level: usize, content: &str, id_counter: &mut HashMap<S
*id_count += 1; *id_count += 1;
format!( format!(
r#"<a class="header" href="{filename}#{id}" id="{id}"><h{level}>{text}</h{level}></a>"#, r##"<a class="header" href="{filepath}#{id}" id="{id}"><h{level}>{text}</h{level}></a>"##,
level = level, level = level,
id = id, id = id,
text = content, text = content,
filename = filename filepath = filepath
) )
} }
@ -457,7 +459,7 @@ fn id_from_content(content: &str) -> String {
let mut content = content.to_string(); let mut content = content.to_string();
// Skip any tags or html-encoded stuff // Skip any tags or html-encoded stuff
let repl_sub = vec![ const REPL_SUB: &[&str] = &[
"<em>", "<em>",
"</em>", "</em>",
"<code>", "<code>",
@ -470,27 +472,17 @@ fn id_from_content(content: &str) -> String {
"&#39;", "&#39;",
"&quot;", "&quot;",
]; ];
for sub in repl_sub { for sub in REPL_SUB {
content = content.replace(sub, ""); content = content.replace(sub, "");
} }
let mut id = String::new(); normalize_id(&content)
for c in content.chars() {
if c.is_alphanumeric() || c == '-' || c == '_' {
id.push(c.to_ascii_lowercase());
} else if c.is_whitespace() {
id.push(c);
}
}
id
} }
// anchors to the same page (href="#anchor") do not work because of // anchors to the same page (href="#anchor") do not work because of
// <base href="../"> pointing to the root folder. This function *fixes* // <base href="../"> pointing to the root folder. This function *fixes*
// that in a very inelegant way // that in a very inelegant way
fn fix_anchor_links(html: &str, filename: &str) -> String { fn fix_anchor_links(html: &str, filepath: &str) -> String {
let regex = Regex::new(r##"<a([^>]+)href="#([^"]+)"([^>]*)>"##).unwrap(); let regex = Regex::new(r##"<a([^>]+)href="#([^"]+)"([^>]*)>"##).unwrap();
regex regex
.replace_all(html, |caps: &Captures| { .replace_all(html, |caps: &Captures| {
@ -499,9 +491,9 @@ fn fix_anchor_links(html: &str, filename: &str) -> String {
let after = &caps[3]; let after = &caps[3];
format!( format!(
"<a{before}href=\"{filename}#{anchor}\"{after}>", "<a{before}href=\"{filepath}#{anchor}\"{after}>",
before = before, before = before,
filename = filename, filepath = filepath,
anchor = anchor, anchor = anchor,
after = after after = after
) )
@ -592,6 +584,26 @@ struct RenderItemContext<'a> {
is_index: bool, is_index: bool,
} }
pub fn normalize_path(path: &str) -> String {
use std::path::is_separator;
path.chars()
.map(|ch| if is_separator(ch) { '/' } else { ch })
.collect::<String>()
}
pub fn normalize_id(content: &str) -> String {
content.chars()
.filter_map(|ch|
if ch.is_alphanumeric() || ch == '_' {
Some(ch.to_ascii_lowercase())
} else if ch.is_whitespace() {
Some('-')
} else {
None
}
)
.collect::<String>()
}
#[cfg(test)] #[cfg(test)]
@ -601,17 +613,39 @@ mod tests {
#[test] #[test]
fn original_build_header_links() { fn original_build_header_links() {
let inputs = vec![ let inputs = vec![
("blah blah <h1>Foo</h1>", r#"blah blah <a class="header" href="bar.rs#foo" id="foo"><h1>Foo</h1></a>"#), (
("<h1>Foo</h1>", r#"<a class="header" href="bar.rs#foo" id="foo"><h1>Foo</h1></a>"#), "blah blah <h1>Foo</h1>",
("<h3>Foo^bar</h3>", r#"<a class="header" href="bar.rs#foobar" id="foobar"><h3>Foo^bar</h3></a>"#), r##"blah blah <a class="header" href="./some_chapter/some_section.html#foo" id="foo"><h1>Foo</h1></a>"##,
("<h4></h4>", r#"<a class="header" href="bar.rs#" id=""><h4></h4></a>"#), ),
("<h4><em>Hï</em></h4>", r#"<a class="header" href="bar.rs#hï" id="hï"><h4><em>Hï</em></h4></a>"#), (
("<h1>Foo</h1><h3>Foo</h3>", "<h1>Foo</h1>",
r#"<a class="header" href="bar.rs#foo" id="foo"><h1>Foo</h1></a><a class="header" href="bar.rs#foo-1" id="foo-1"><h3>Foo</h3></a>"#), r##"<a class="header" href="./some_chapter/some_section.html#foo" id="foo"><h1>Foo</h1></a>"##,
),
(
"<h3>Foo^bar</h3>",
r##"<a class="header" href="./some_chapter/some_section.html#foobar" id="foobar"><h3>Foo^bar</h3></a>"##,
),
(
"<h4></h4>",
r##"<a class="header" href="./some_chapter/some_section.html#" id=""><h4></h4></a>"##
),
(
"<h4><em>Hï</em></h4>",
r##"<a class="header" href="./some_chapter/some_section.html#hï" id="hï"><h4><em>Hï</em></h4></a>"##
),
(
"<h1>Foo</h1><h3>Foo</h3>",
r##"<a class="header" href="./some_chapter/some_section.html#foo" id="foo"><h1>Foo</h1></a><a class="header" href="./some_chapter/some_section.html#foo-1" id="foo-1"><h3>Foo</h3></a>"##
),
]; ];
for (src, should_be) in inputs { for (src, should_be) in inputs {
let got = build_header_links(src, "bar.rs"); let filepath = "./some_chapter/some_section.html";
let got = build_header_links(&src, filepath);
assert_eq!(got, should_be);
// This is redundant for most cases
let got = fix_anchor_links(&got, filepath);
assert_eq!(got, should_be); assert_eq!(got, should_be);
} }
} }

View File

@ -1,3 +0,0 @@
# First Chapter
more text.

View File

@ -0,0 +1,5 @@
# First Chapter
more text.
## Some Section

View File

@ -5,3 +5,5 @@ This file has some testable code.
```rust ```rust
assert!($TEST_STATUS); assert!($TEST_STATUS);
``` ```
## Some Section

View File

@ -1,26 +1,23 @@
//! Helpers for tests which exercise the overall application, in particular
//! the `MDBook` initialization and build/rendering process.
//!
//! This will create an entire book in a temporary directory using some //! This will create an entire book in a temporary directory using some
//! dummy contents from the `tests/dummy-book/` directory. //! dummy contents from the `tests/dummy-book/` directory.
// Not all features are used in all test crates, so...
#![allow(dead_code, unused_extern_crates)]
#![allow(dead_code, unused_variables, unused_imports)]
extern crate tempdir; extern crate tempdir;
use std::path::Path; use std::fs::{create_dir_all, File};
use std::fs::{self, File}; use std::io::Write;
use std::io::{Read, Write};
use tempdir::TempDir; use tempdir::TempDir;
const SUMMARY_MD: &'static str = include_str!("dummy-book/SUMMARY.md"); const SUMMARY_MD: &'static str = include_str!("book/SUMMARY.md");
const INTRO: &'static str = include_str!("dummy-book/intro.md"); const INTRO: &'static str = include_str!("book/intro.md");
const FIRST: &'static str = include_str!("dummy-book/first/index.md"); const FIRST: &'static str = include_str!("book/first/index.md");
const NESTED: &'static str = include_str!("dummy-book/first/nested.md"); const NESTED: &'static str = include_str!("book/first/nested.md");
const SECOND: &'static str = include_str!("dummy-book/second.md"); const SECOND: &'static str = include_str!("book/second.md");
const CONCLUSION: &'static str = include_str!("dummy-book/conclusion.md"); const CONCLUSION: &'static str = include_str!("book/conclusion.md");
/// Create a dummy book in a temporary directory, using the contents of /// Create a dummy book in a temporary directory, using the contents of
@ -58,10 +55,10 @@ impl DummyBook {
let temp = TempDir::new("dummy_book").unwrap(); let temp = TempDir::new("dummy_book").unwrap();
let src = temp.path().join("src"); let src = temp.path().join("src");
fs::create_dir_all(&src).unwrap(); create_dir_all(&src).unwrap();
let first = src.join("first"); let first = src.join("first");
fs::create_dir_all(&first).unwrap(); create_dir_all(&first).unwrap();
let to_substitute = if self.passing_test { "true" } else { "false" }; let to_substitute = if self.passing_test { "true" } else { "false" };
let nested_text = NESTED.replace("$TEST_STATUS", to_substitute); let nested_text = NESTED.replace("$TEST_STATUS", to_substitute);
@ -91,20 +88,3 @@ impl Default for DummyBook {
DummyBook { passing_test: true } DummyBook { passing_test: true }
} }
} }
/// Read the contents of the provided file into memory and then iterate through
/// the list of strings asserting that the file contains all of them.
pub fn assert_contains_strings<P: AsRef<Path>>(filename: P, strings: &[&str]) {
let filename = filename.as_ref();
let mut content = String::new();
File::open(&filename)
.expect("Couldn't open the provided file")
.read_to_string(&mut content)
.expect("Couldn't read the file's contents");
for s in strings {
assert!(content.contains(s), "Searching for {:?} in {}\n\n{}", s, filename.display(), content);
}
}

24
tests/helpers/mod.rs Normal file
View File

@ -0,0 +1,24 @@
//! Helpers for tests which exercise the overall application, in particular
//! the `MDBook` initialization and build/rendering process.
use std::path::Path;
use std::fs::File;
use std::io::Read;
/// Read the contents of the provided file into memory and then iterate through
/// the list of strings asserting that the file contains all of them.
pub fn assert_contains_strings<P: AsRef<Path>>(filename: P, strings: &[&str]) {
let filename = filename.as_ref();
let mut content = String::new();
File::open(&filename)
.expect("Couldn't open the provided file")
.read_to_string(&mut content)
.expect("Couldn't read the file's contents");
for s in strings {
assert!(content.contains(s), "Searching for {:?} in {}\n\n{}", s, filename.display(), content);
}
}

View File

@ -1,14 +1,18 @@
extern crate mdbook; extern crate mdbook;
extern crate tempdir; extern crate tempdir;
mod dummy;
mod helpers; mod helpers;
use dummy::DummyBook;
use helpers::assert_contains_strings;
use mdbook::MDBook; use mdbook::MDBook;
/// Make sure you can load the dummy book and build it without panicking. /// Make sure you can load the dummy book and build it without panicking.
#[test] #[test]
fn build_the_dummy_book() { fn build_the_dummy_book() {
let temp = helpers::DummyBook::default().build(); let temp = DummyBook::default().build();
let mut md = MDBook::new(temp.path()); let mut md = MDBook::new(temp.path());
md.build().unwrap(); md.build().unwrap();
@ -16,7 +20,7 @@ fn build_the_dummy_book() {
#[test] #[test]
fn by_default_mdbook_generates_rendered_content_in_the_book_directory() { fn by_default_mdbook_generates_rendered_content_in_the_book_directory() {
let temp = helpers::DummyBook::default().build(); let temp = DummyBook::default().build();
let mut md = MDBook::new(temp.path()); let mut md = MDBook::new(temp.path());
assert!(!temp.path().join("book").exists()); assert!(!temp.path().join("book").exists());
@ -28,62 +32,76 @@ fn by_default_mdbook_generates_rendered_content_in_the_book_directory() {
#[test] #[test]
fn make_sure_bottom_level_files_contain_links_to_chapters() { fn make_sure_bottom_level_files_contain_links_to_chapters() {
let temp = helpers::DummyBook::default().build(); let temp = DummyBook::default().build();
let mut md = MDBook::new(temp.path()); let mut md = MDBook::new(temp.path());
md.build().unwrap(); md.build().unwrap();
let dest = temp.path().join("book"); let dest = temp.path().join("book");
let links = vec![ let links = vec![
"intro.html", r#"href="intro.html""#,
"first/index.html", r#"href="./first/index.html""#,
"first/nested.html", r#"href="./first/nested.html""#,
"second.html", r#"href="./second.html""#,
"conclusion.html", r#"href="./conclusion.html""#,
]; ];
let files_in_bottom_dir = vec!["index.html", "intro.html", "second.html", "conclusion.html"]; let files_in_bottom_dir = vec!["index.html", "intro.html", "second.html", "conclusion.html"];
for filename in files_in_bottom_dir { for filename in files_in_bottom_dir {
helpers::assert_contains_strings(dest.join(filename), &links); assert_contains_strings(dest.join(filename), &links);
} }
} }
#[test] #[test]
fn check_correct_cross_links_in_nested_dir() { fn check_correct_cross_links_in_nested_dir() {
let temp = helpers::DummyBook::default().build(); let temp = DummyBook::default().build();
let mut md = MDBook::new(temp.path()); let mut md = MDBook::new(temp.path());
md.build().unwrap(); md.build().unwrap();
let first = temp.path().join("book").join("first"); let first = temp.path().join("book").join("first");
let links = vec![ let links = vec![
r#"<base href="../">"#, r#"<base href="../">"#,
"intro.html", r#"href="intro.html""#,
"first/index.html", r#"href="./first/index.html""#,
"first/nested.html", r#"href="./first/nested.html""#,
"second.html", r#"href="./second.html""#,
"conclusion.html", r#"href="./conclusion.html""#,
]; ];
let files_in_nested_dir = vec!["index.html", "nested.html"]; let files_in_nested_dir = vec!["index.html", "nested.html"];
for filename in files_in_nested_dir { for filename in files_in_nested_dir {
helpers::assert_contains_strings(first.join(filename), &links); assert_contains_strings(first.join(filename), &links);
} }
assert_contains_strings(
first.join("index.html"),
&[
r##"href="./first/index.html#some-section" id="some-section""##
],
);
assert_contains_strings(
first.join("nested.html"),
&[
r##"href="./first/nested.html#some-section" id="some-section""##
],
);
} }
#[test] #[test]
fn rendered_code_has_playpen_stuff() { fn rendered_code_has_playpen_stuff() {
let temp = helpers::DummyBook::default().build(); let temp = DummyBook::default().build();
let mut md = MDBook::new(temp.path()); let mut md = MDBook::new(temp.path());
md.build().unwrap(); md.build().unwrap();
let nested = temp.path().join("book/first/nested.html"); let nested = temp.path().join("book/first/nested.html");
let playpen_class = vec![r#"class="playpen""#]; let playpen_class = vec![r#"class="playpen""#];
helpers::assert_contains_strings(nested, &playpen_class); assert_contains_strings(nested, &playpen_class);
let book_js = temp.path().join("book/book.js"); let book_js = temp.path().join("book/book.js");
helpers::assert_contains_strings(book_js, &[".playpen"]); assert_contains_strings(book_js, &[".playpen"]);
} }
#[test] #[test]
@ -96,7 +114,7 @@ fn chapter_content_appears_in_rendered_document() {
("conclusion.html", "Conclusion"), ("conclusion.html", "Conclusion"),
]; ];
let temp = helpers::DummyBook::default().build(); let temp = DummyBook::default().build();
let mut md = MDBook::new(temp.path()); let mut md = MDBook::new(temp.path());
md.build().unwrap(); md.build().unwrap();
@ -104,6 +122,6 @@ fn chapter_content_appears_in_rendered_document() {
for (filename, text) in content { for (filename, text) in content {
let path = destination.join(filename); let path = destination.join(filename);
helpers::assert_contains_strings(path, &[text]); assert_contains_strings(path, &[text]);
} }
} }

View File

@ -1,13 +1,15 @@
extern crate tempdir;
extern crate mdbook; extern crate mdbook;
extern crate tempdir;
mod helpers; mod dummy;
use dummy::DummyBook;
use mdbook::MDBook; use mdbook::MDBook;
#[test] #[test]
fn mdbook_can_correctly_test_a_passing_book() { fn mdbook_can_correctly_test_a_passing_book() {
let temp = helpers::DummyBook::default() let temp = DummyBook::default()
.with_passing_test(true) .with_passing_test(true)
.build(); .build();
let mut md = MDBook::new(temp.path()); let mut md = MDBook::new(temp.path());
@ -17,7 +19,7 @@ fn mdbook_can_correctly_test_a_passing_book() {
#[test] #[test]
fn mdbook_detects_book_with_failing_tests() { fn mdbook_detects_book_with_failing_tests() {
let temp = helpers::DummyBook::default() let temp = DummyBook::default()
.with_passing_test(false) .with_passing_test(false)
.build(); .build();
let mut md: MDBook = MDBook::new(temp.path()); let mut md: MDBook = MDBook::new(temp.path());