Skip to content

Commit

Permalink
Add codeblock and codespan examples
Browse files Browse the repository at this point in the history
  • Loading branch information
piotrmurach committed Aug 17, 2020
1 parent fef2eeb commit 96adf70
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 0 deletions.
23 changes: 23 additions & 0 deletions examples/codeblock.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# frozen_string_literal: true

require_relative "../lib/tty-markdown"

template = <<~MSG
## Codeblock
```ruby
class Greeter
def initialize(name)
@name = name
end
def greet
puts "Hello \#{@name}"
end
end
```
MSG

print TTY::Markdown.parse template
15 changes: 15 additions & 0 deletions examples/codespan.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# frozen_string_literal: true

require_relative "../lib/tty-markdown"

template = <<~MSG
## Codespan
Code like this `foo = []` in line
Another code ```bar = {}``` in line
MSG

print TTY::Markdown.parse template

0 comments on commit 96adf70

Please sign in to comment.