use super::Nesting;
use std::{
fmt::{self, Display, Formatter, Write},
ops::Deref,
};
pub const ESCAPED_TEXT_CHARACTERS: [char; 19] = [
'_', '*', '[', ']', '(', ')', '~', '`', '>', '#', '+', '-', '=', '|', '{',
'}', '.', '!', '\\',
];
pub const ESCAPED_CODE_CHARACTERS: [char; 2] = ['`', '\\'];
pub const ESCAPED_LINK_CHARACTERS: [char; 2] = [')', '\\'];
pub trait Formattable {
#[doc(hidden)]
fn format(
&self,
formatter: &mut Formatter,
nesting: Nesting,
) -> fmt::Result;
}
impl_primitives!(Formattable);
impl_tuples!(Formattable);
impl Formattable for char {
fn format(&self, formatter: &mut Formatter, _: Nesting) -> fmt::Result {
if ESCAPED_TEXT_CHARACTERS.contains(self) {
formatter.write_char('\\')?;
}
formatter.write_char(*self)
}
}
impl Formattable for &'_ str {
fn format(
&self,
formatter: &mut Formatter,
nesting: Nesting,
) -> fmt::Result {
self.chars()
.map(|character| character.format(formatter, nesting))
.collect()
}
}
impl Formattable for String {
fn format(
&self,
formatter: &mut Formatter,
nesting: Nesting,
) -> fmt::Result {
self.as_str().format(formatter, nesting)
}
}
impl<T: Formattable> Formattable for &'_ [T] {
fn format(
&self,
formatter: &mut Formatter,
nesting: Nesting,
) -> fmt::Result {
self.iter().map(|x| x.format(formatter, nesting)).collect()
}
}
impl<T: Formattable> Formattable for Vec<T> {
fn format(
&self,
formatter: &mut Formatter,
nesting: Nesting,
) -> fmt::Result {
self.as_slice().format(formatter, nesting)
}
}
impl<T: Formattable> Formattable for Box<T> {
fn format(
&self,
formatter: &mut Formatter,
nesting: Nesting,
) -> fmt::Result {
self.deref().format(formatter, nesting)
}
}
#[derive(Debug, PartialEq, Eq, Clone, Copy, Hash)]
pub struct MarkdownV2<T>(T);
pub fn markdown_v2<T: Formattable>(content: T) -> MarkdownV2<T> {
MarkdownV2(content)
}
impl<T: Formattable> Formattable for MarkdownV2<T> {
fn format(
&self,
formatter: &mut Formatter,
nesting: Nesting,
) -> fmt::Result {
self.0.format(formatter, nesting)
}
}
impl<T: Formattable> Display for MarkdownV2<T> {
fn fmt(&self, formatter: &mut Formatter) -> fmt::Result {
self.format(formatter, Nesting::default())
}
}