Skip to content

Instantly share code, notes, and snippets.

@kdmsnr
Created April 14, 2016 02:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kdmsnr/44de3ab46b684ff6e39288f579c15c59 to your computer and use it in GitHub Desktop.
Save kdmsnr/44de3ab46b684ff6e39288f579c15c59 to your computer and use it in GitHub Desktop.
def inline_dl(line)
dl = ""
dl << "<dl>"
line.scan(/\[.+?\][^\[]+/).each do |item|
dt, dd = item.scan /[^\[\]]+/
dl << "<dt>#{dt}</dt>"
dl << "<dd>#{dd}</dd>"
end
dl << "</dl>"
dl
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment