egoist / vmark

Convert markdown to Vue component.
MIT License
162 stars 11 forks source link

Support style tag #3

Closed egoist closed 6 years ago

egoist commented 6 years ago
---
styles:
  - ./foo.css
---

to:

import './foo.css'

When we have SFC support (#2), it can also be transformed to:

<style src="./foo.css"></style>