## Migration Guide ### Migrating from V1 to V2 1. Support for `` tag is removed; use `<script type="text/markdown">` instead. ```html <!-- Previous --> <zero-md> <template> <xmp> # `This` is my [markdown](example.md) ``` 2. Markdown source behaviour has changed. Think of ` ``` 3. The `css-urls` attribute is deprecated. Use `` instead. ```html ``` 4. The attributes `marked-url` and `prism-url` are deprecated. To load `marked` or `prism` from another location, simply load their scripts *before* importing `zero-md`. ```html ... ``` 5. The global config object has been renamed from `ZeroMd.config` to `ZeroMdConfig`. ```html ``` 6. The convenience events `zero-md-marked-ready` and `zero-md-prism-ready` are removed and **will no longer fire**. Instead, the `zero-md-ready` event guarantees that everything is ready, and that render can begin.