Feature: ignoring parts of a file In order to not mess up mixed files As a web developer using typogruby I want to filter just HTML and not Javascript Scenario: Given a file named "input.html" with: """
"This IS a simple file!
""" When I run "typogruby input.html" Then the output should contain exactly: """“This IS a simple file!
""" And the exit status should be 0