You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current Interpreter api is limited and we can't do a lot with it.
The following is a concept for the 2.0 version
From HTML to Markdown
$content = '<h1>Foo</h1>';
Interpreter::make($content)->fromHtml()->toMd();
// The toMd() can be used as toMarkdown() as well, as it will be aliased as it's now
> # Foo
From Markdown to HTML
$content = '# Foo';
Interpreter::make($content)->fromMd()->toHtml();
// The fromMd() can be used as fromMarkdown() as well, as it will be aliased as it's now
> <h1>Foo</h1>
The current Interpreter api is limited and we can't do a lot with it.
The following is a concept for the
2.0
versionFrom HTML to Markdown
From Markdown to HTML
From HTML to Textile
From Textile to HTML
The text was updated successfully, but these errors were encountered: