Skip to content

Instantly share code, notes, and snippets.

@ajmalafif
Forked from henrik/prawndown.coffee
Created July 14, 2016 08:07
Show Gist options
  • Save ajmalafif/e7fcd57aafbca62dba223c7e79592e03 to your computer and use it in GitHub Desktop.
Save ajmalafif/e7fcd57aafbca62dba223c7e79592e03 to your computer and use it in GitHub Desktop.
Prawndown! Super-tiny subset of Markdown for use with the Prawn PDF lib.
class Prawndown
constructor: (@text) ->
toPrawn: ->
@text.
replace(/\n/g, "<br>\n").
replace(/^# (.+)/gm, "<b>$1</b>")
# Use:
console.log (new Prawndown("# Foo\nbar")).toPrawn()
class Prawndown
def initialize(text)
@text = text
end
def to_prawn
@text.to_s.gsub(/^# (.+)/, '<b>\1</b>')
end
end
# Use in Prawn:
text = Prawndown.new("# Foo\nbar").to_prawn
pdf = Prawn::Document.new
pdf.text text, inline_format: true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment