| OLD | NEW |
| 1 name: markdown_converter | 1 name: markdown_converter |
| 2 description: This hello world example implements a simple | 2 description: This hello world example implements a simple |
| 3 transformer that converts a markdown file (with | 3 transformer that converts a markdown file (with |
| 4 a ".mdown", ".md", or a ".markdown" extension) to HTML. | 4 a ".mdown", ".md", or a ".markdown" extension) to HTML. |
| 5 |
| 5 dependencies: | 6 dependencies: |
| 6 barback: any | 7 barback: ">=0.14.1 <0.16.0" |
| 7 markdown: any | 8 markdown: any |
| 8 | 9 |
| 10 # Override the barback dependency so this example always uses the version |
| 11 # of barback it's bundled with. |
| 12 dependency_overrides: |
| 13 barback: {path: ../..} |
| 14 |
| 9 transformers: | 15 transformers: |
| 10 - markdown_converter | 16 - markdown_converter |
| OLD | NEW |