Feature: Code highlighting in Markdown slides As a presentator I want to highlight code easily In order to make it more understandable for the audience Background: Given I use presentation fixture "simple1" with title "My Presentation" Scenario: Code block Given a slide named "01.html.md" with: """
# Hello World ~~~ ruby puts 42 ~~~
""" And the Server is running And I go to "/" Then I should see: """
puts 42
  
""" Scenario: Inline code Given a slide named "01.html.md" with: """
# Hello World This is `code`
""" And the Server is running And I go to "/" Then I should see: """

This is code

"""