diff --git a/other/md-file.md b/other/md-file.md index 725077b..003043f 100644 --- a/other/md-file.md +++ b/other/md-file.md @@ -18,10 +18,10 @@ Here’s a paragraph with a **custom styled** span: You can also style your JSX blocks with Tailwind classes: ``` -This text is red and bold. +This text is blue and bold. ``` -This text is red and bold. +This text is blue and bold. 🧠 Notes for Markdown: - Inline HTML must use string style syntax (e.g. style="color: red;"). diff --git a/other/mdx-file.mdx b/other/mdx-file.mdx index c82282b..b36fc27 100644 --- a/other/mdx-file.mdx +++ b/other/mdx-file.mdx @@ -17,10 +17,10 @@ Here’s a paragraph with a **custom styled** span: You can also style your JSX blocks with Tailwind classes: ``` -This text is red and bold. +This text is blue and bold. ``` -This text is red and bold. +This text is blue and bold. 🧠 Note that in MDX: - `style` values are JavaScript objects, not strings (use `{{ backgroundColor: 'red' }}`, not `"background-color: red"`).