We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is this expected ? Thanks!
- Works
```tsx showLineNumbers /age/#v /name/#v /setAge/#s /setName/#s /50/#i /"Taylor"/#i const [age, setAge] = useState(50) const [name, setName] = useState("Taylor") ```
- Does now work
```tsx /age/#v /name/#v /setAge/#s /setName/#s /50/#i /"Taylor"/#i showLineNumbers const [age, setAge] = useState(50) const [name, setName] = useState("Taylor") ```
The text was updated successfully, but these errors were encountered:
I've got a fix for this in #229
here's an example of it working when at end of metatags: https://d68419f3.rehype-pretty-example-astro.pages.dev/
rehype-pretty-code/examples/astro/src/pages/index.mdx
Line 8 in f4a806d
just need to update tests in #229 then will merge and do a release
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Is this expected ? Thanks!
- Works
```tsx showLineNumbers /age/#v /name/#v /setAge/#s /setName/#s /50/#i /"Taylor"/#i
const [age, setAge] = useState(50)
const [name, setName] = useState("Taylor")
```
- Does now work
```tsx /age/#v /name/#v /setAge/#s /setName/#s /50/#i /"Taylor"/#i showLineNumbers
const [age, setAge] = useState(50)
const [name, setName] = useState("Taylor")
```
The text was updated successfully, but these errors were encountered: