2021-06-07 16:05:13 -04:00
# @astrojs/parser
2021-05-17 09:31:37 -05:00
2021-12-23 11:49:30 -05:00
## 0.22.0
### Minor Changes
- [#2202 ](https://github.com/withastro/astro/pull/2202 ) [`45cea6ae` ](https://github.com/withastro/astro/commit/45cea6aec5a310fed4cb8da0d96670d6b99a2539 ) Thanks [@jonathantneal ](https://github.com/jonathantneal )! - Officially drop support for Node v12. The minimum supported version is now Node v14.15+,
2021-11-19 13:01:50 -08:00
## 0.20.3
2021-08-27 10:46:14 -04:00
## 0.20.2
### Patch Changes
- 5d2ea578: fixed an issue using namespaced attributes in astro files
2021-08-18 09:24:09 -07:00
## 0.18.6
2021-07-30 10:19:00 -04:00
## 0.18.5
### Patch Changes
- cd2b5df4: Prevents locking up checking for --- inside of the HTML portion
2021-07-27 12:41:42 -04:00
## 0.18.0
### Patch Changes
- a7e6666: compile javascript to target Node v12.x
- 294a656: Adds support for global style blocks via `<style global>`
Be careful with this escape hatch! This is best reserved for uses like importing styling libraries like Tailwind, or changing global CSS variables.
- b85e68a: Fixes case where custom elements are not handled within JSX expressions
2021-07-24 16:02:25 -07:00
## 0.18.0-next.5
### Patch Changes
- 294a656: Adds support for global style blocks via `<style global>`
Be careful with this escape hatch! This is best reserved for uses like importing styling libraries like Tailwind, or changing global CSS variables.
2021-07-21 08:18:13 -07:00
## 0.18.0-next.2
### Patch Changes
- a7e6666: compile javascript to target Node v12.x
- b85e68a: Fixes case where custom elements are not handled within JSX expressions
2021-07-01 08:45:35 -04:00
## 0.15.4
### Patch Changes
- 6a660f1: Adds low-level custom element support that renderers can use to enable server side rendering. This will be used in renderers such as a Lit renderer.
2021-06-25 09:51:28 -04:00
## 0.15.0
### Patch Changes
- 47ac2cc: Fix #521 , allowing `{...spread}` props to work again
2021-06-16 17:26:15 -04:00
## 0.13.10
### Patch Changes
- 7f8d586: Bugfix: template literals in JSX tags breaking parser
2021-06-16 14:12:05 -04:00
## 0.13.9
### Patch Changes
- f9f2da4: Add repository key to all package.json
2021-06-16 08:41:21 -04:00
## 0.13.8
### Patch Changes
- 490f2be: Add support for Fragments with `<>` and `</>` syntax
2021-06-14 08:43:03 -04:00
## 0.13.3
### Patch Changes
- ab2972b: Update package.json engines for esm support
2021-06-02 13:51:43 -04:00
## 0.12.1
### Patch Changes
- 6de740d: Fix for when there's a parser error with unmatched backticks
2021-06-02 12:49:05 -04:00
## 0.12.0
### Patch Changes
- d2330a5: Improve error display for missing local files
2021-05-28 18:28:11 -05:00
### 0.12.0-next.0
### Patch Changes
- Fixes a few more Markdown issues
2021-05-28 23:29:49 +00:00
2021-05-24 16:32:10 -04:00
## 0.11.0
### Patch Changes
- 9cdada0: Fixes a few edge case bugs with Astro's handling of Markdown content
2021-05-17 09:31:37 -05:00
## 0.1.0
2021-05-17 14:32:43 +00:00
2021-05-17 09:31:37 -05:00
### Minor Changes
- b3886c2: Enhanced **Markdown** support! Markdown processing has been moved from `micromark` to `remark` to prepare Astro for user-provided `remark` plugins _in the future_ .
2021-05-17 14:32:43 +00:00
2021-07-16 06:01:31 -05:00
This change also introduces a built-in `<Markdown>` component for embedding Markdown and any Astro-supported component format inside of `.astro` files. [Read more about Astro's Markdown support. ](https://docs.astro.build/markdown/ )