[][src]Struct termimad::MadSkin

pub struct MadSkin {
    pub paragraph: ObjectStyle,
    pub bold: ObjectStyle,
    pub italic: ObjectStyle,
    pub code: ObjectStyle,
    pub headers: [ObjectStyle; 8],
    pub scrollbar: ScrollBarStyle,
}

A skin defining how a parsed mardkown appears on the terminal (fg and bg colors, bold, italic, underline, etc.)

Fields

paragraph: ObjectStylebold: ObjectStyleitalic: ObjectStylecode: ObjectStyleheaders: [ObjectStyle; 8]scrollbar: ScrollBarStyle

Methods

impl MadSkin[src]

pub fn new() -> MadSkin[src]

build a customizable skin. It's initialized with sensible monochrome settings.

pub fn set_headers_fg_color(&mut self, c: Color)[src]

pub fn set_headers_bg_color(&mut self, c: Color)[src]

pub fn inline<'s, 'l>(&'s self, src: &'l str) -> FormattedLine<'s, 'l>[src]

pub fn text<'s, 'l>(&'s self, src: &'l str) -> FormattedText<'s, 'l>[src]

pub fn wrapped_text<'s, 'l>(
    &'s self,
    src: &'l str,
    width: usize
) -> FormattedText<'s, 'l>
[src]

pub fn terminal_wrapped_text<'s, 'l>(
    &'s self,
    src: &'l str
) -> FormattedText<'s, 'l>
[src]

pub fn area_wrapped_text<'s, 'l>(
    &'s self,
    src: &'l str,
    area: &Area
) -> FormattedText<'s, 'l>
[src]

pub fn print_inline(&self, src: &str)[src]

pub fn print_line(&self, src: &str)[src]

pub fn print_text(&self, src: &str)[src]

pub fn fmt_composite(&self, f: &mut Formatter, composite: &Composite) -> Result[src]

pub fn fmt_line(&self, f: &mut Formatter, line: &Line) -> Result[src]

Auto Trait Implementations

impl Send for MadSkin

impl Sync for MadSkin

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]