我知道我可以使用类似的东西在 ruby 中使用 Kramdown 解析和呈现 HTML 文档
require 'kramdown'
s = 'This is a _document_'
Kramdown::Document.new(s).to_html
# '<p>This is a <i>document</i></p>'
在这种情况下,字符串s
可能包含 Markdown 语法的完整文档。
然而,我想要做的是解析s
假设它只包含跨度级别的降价语法,并获得渲染的 html。特别是在呈现的 html 中不应该有<p>
, <blockquote>
, or, 例如。<table>
s = 'This is **only** a span-level string'
# .. ??? ...
# 'This is <b>only</b> a span-level string'
我怎样才能做到这一点?