Struct aurelius::Config [] [src]

pub struct Config {
    pub initial_markdown: String,
    pub highlight_theme: String,
    pub working_directory: PathBuf,
    pub custom_css: String,
}

Configuration for the markdown server.

Fields

The initial markdown to render when starting the server.

The syntax highlighting theme to use.

Defaults to the github syntax highlighting theme.

The directory that static files should be served out of.

Defaults to the current working directory.

Custom CSS that should be used to style the markdown.

Defaults to the github styles.

Trait Implementations

impl Debug for Config
[src]

Formats the value using the given formatter.

impl Clone for Config
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for Config
[src]

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