Mathieu David
Mathieu David
>The hope is that the overhead of creating a directory and a Tectonic.toml wouldn't be that bad with a lot of documents, but it isn't zero. Yes, in my case...
I think the feature you are looking for has been merged in https://github.com/azerupi/mdBook/pull/340 but not yet released. Is that what you tested? `mdbook test` is quite rudimentary at the moment....
I would like to support pdf and ebook format. I think this could already be developed out of tree if you use the Renderer trait from mdBook. I am not...
Yeah pandoc seems a lot better!
Great! Thanks for doing this :) > parse the ToC to get the list of md files, in the right order This is already done in the Rust code, the...
> FIY, I'm doing some regex work to transform links relative to the doc.rust-lang.org domain > > ``` rust > let cross_section_link = Regex::new(r"]\((?P[\w-_]+)\.html\)").unwrap(); > output = cross_section_link.replace_all(&output, r"](#sec--$file)"); >...
Ok thanks for all the information, this will probably help @asolove a lot! :)
@cetra3 That is really cool! The plan is to make a "renderer" that does everything so that it can be used with the `mdbook build` command. So using a command...