Struct mdbook::config::Search [] [src]

pub struct Search {
    pub limit_results: u32,
    pub teaser_word_count: u32,
    pub use_boolean_and: bool,
    pub boost_title: u8,
    pub boost_hierarchy: u8,
    pub boost_paragraph: u8,
    pub expand: bool,
    pub heading_split_level: u8,
    pub copy_js: bool,
}

Configuration of the search functionality of the HTML renderer.

Fields

Maximum number of visible results. Default: 30.

The number of words used for a search result teaser. Default: 30,

Define the logical link between multiple search words. If true, all search words must appear in each result. Default: true.

Boost factor for the search result score if a search word appears in the header. Default: 2.

Boost factor for the search result score if a search word appears in the hierarchy. The hierarchy contains all titles of the parent documents and all parent headings. Default: 1.

Boost factor for the search result score if a search word appears in the text. Default: 1.

True if the searchword micro should match microwave. Default: true.

Documents are split into smaller parts, seperated by headings. This defines, until which level of heading documents should be split. Default: 3. (### This is a level 3 heading)

Copy JavaScript files for the search functionality to the output directory? Default: true.

Trait Implementations

impl Debug for Search
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for Search
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq for Search
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl Default for Search
[src]

[src]

Returns the "default value" for a type. Read more

Auto Trait Implementations

impl Send for Search

impl Sync for Search