SYMBOL INDEX (48 symbols across 16 files) FILE: src/convert_book/index.rs constant FILENAME_PATTRN (line 9) | const FILENAME_PATTRN: &'static str = type FileListing (line 12) | type FileListing = Vec<(String, String)>; function list_file_groups (line 14) | fn list_file_groups(path: &str) -> Result> { function render_index (line 40) | pub fn render_index(path: &str) -> Result> { FILE: src/convert_book/markdown.rs type Chapter (line 20) | struct Chapter { function get_chapters (line 25) | fn get_chapters(toc: &str) -> Vec { function to_single_file (line 66) | pub fn to_single_file(src_path: &Path, meta: &str) -> Result Re... FILE: src/convert_book/options.rs constant RELEASE_DATE (line 1) | pub const RELEASE_DATE: &'static str = "2016-10-01"; constant MARKDOWN (line 3) | pub const MARKDOWN: &'static str = "markdown+grid_tables+pipe_tables-sim... constant HTML (line 5) | pub const HTML: &'static str = "--smart --normalize --standalone --self-... constant EPUB (line 7) | pub const EPUB: &'static str = "--smart --normalize --standalone --self-... constant LATEX (line 9) | pub const LATEX: &'static str = "--smart --normalize --standalone --self... FILE: src/convert_book/pandoc.rs function run (line 7) | pub fn run(args: &str, input: &str) -> Result> { function save_as (line 11) | pub fn save_as(book: &str, prefix: &str, format: &str, opts: &str) -> Re... function dry_run (line 29) | fn dry_run() { FILE: src/helpers/adjust_header_level.rs constant CODE_BLOCK_TOGGLE (line 5) | const CODE_BLOCK_TOGGLE: &'static str = "```"; type HeaderLevel (line 7) | pub type HeaderLevel = i32; function adjust_header_level (line 9) | pub fn adjust_header_level(input: &str, base_level: HeaderLevel) -> Resu... function calc_header_level (line 51) | fn calc_header_level(base_level: HeaderLevel, current_level: HeaderLevel... function header_level_calculation (line 56) | fn header_level_calculation() { FILE: src/helpers/adjust_reference_names.rs constant CODE_BLOCK_TOGGLE (line 4) | const CODE_BLOCK_TOGGLE: &'static str = "```"; function adjust_reference_name (line 6) | pub fn adjust_reference_name(input: &str, prefix: &str) -> Result String { function checkmark_conversion (line 10) | fn checkmark_conversion() { FILE: src/helpers/file.rs function get_file_content (line 6) | pub fn get_file_content>(path: P) -> Result Result<(), Box Result<... function break_long_lines (line 23) | fn break_long_lines() { FILE: src/helpers/normalize.rs function normalize_links (line 6) | fn normalize_links(input: &str) -> Result> { function normalize_math (line 34) | fn normalize_math(input: &str) -> Result> { function normalize (line 40) | pub fn normalize(input: &str) -> Result> { FILE: src/helpers/normalize_code_blocks.rs constant CODE_BLOCK_TOGGLE (line 6) | const CODE_BLOCK_TOGGLE: &'static str = "```"; function break_code_blocks (line 8) | pub fn break_code_blocks(input: &str, max_len: usize, sep: &str) -> Resu... function normalize_code_start (line 29) | pub fn normalize_code_start(input: &str) -> Result> { function code_block_breaking (line 54) | fn code_block_breaking() { function code_block_starts (line 88) | fn code_block_starts() { FILE: src/helpers/remove_emojis.rs function remove_emojis (line 3) | pub fn remove_emojis(input: &str) -> String { function emoji_removal (line 11) | fn emoji_removal() { FILE: src/helpers/remove_file_title.rs function remove_file_title (line 4) | pub fn remove_file_title(input: &str) -> Result> { FILE: src/helpers/shell_pipe.rs type CommandError (line 8) | enum CommandError { method fmt (line 14) | fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { method description (line 23) | fn description(&self) -> &str { function run (line 31) | pub fn run(command: &str, args: &str, input: &str) -> Result