[][src]Trait markdown_composer::transforms::CodeBlock

pub trait CodeBlock {
    fn code_block(&self) -> String;
fn code_block_with_language<S: AsRef<str>>(&self, language: S) -> String; }

Required methods

fn code_block(&self) -> String

fn code_block_with_language<S: AsRef<str>>(&self, language: S) -> String

Loading content...

Implementors

impl<T> CodeBlock for T where
    T: AsRef<str>, 
[src]

Loading content...