Skip to content
New issue

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

Internal: Update test fixtures to use "class" instead of "className" #1739

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tests/fixtures/_posts/typography-front-matter.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ image:

<!-- Fixture from https://github.com/tailwindlabs/tailwindcss-typography/blob/master/demo/components/MarkdownSampleShort.mdx, licensed under the MIT license. -->

<p className="lead">
<p class="lead">
Until now, trying to style an article, document, or blog post with Tailwind has been a very
tedious task.
</p>
Expand All @@ -30,7 +30,7 @@ The `@tailwindcss/typography` plugin is our attempt to give you what you _actual

> Why is Tailwind removing the default styles on my `h1` elements? How do I disable this? What do you mean I lose all the other base styles too?

<div className="not-prose">
<div class="not-prose">
<h2>Shouldn't be colored</h2>
</div>

Expand Down
4 changes: 2 additions & 2 deletions tests/fixtures/_posts/typography-simple.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ description: A TailwindCSS Typography demo with little front matter.

<!-- Fixture from https://github.com/tailwindlabs/tailwindcss-typography/blob/master/demo/components/MarkdownSampleShort.mdx, licensed under the MIT license. -->

<p className="lead">
<p class="lead">
Until now, trying to style an article, document, or blog post with Tailwind has been a very
tedious task.
</p>
Expand All @@ -16,7 +16,7 @@ The `@tailwindcss/typography` plugin is our attempt to give you what you _actual

> Why is Tailwind removing the default styles on my `h1` elements? How do I disable this? What do you mean I lose all the other base styles too?

<div className="not-prose">
<div class="not-prose">
<h2>Shouldn't be colored</h2>
</div>

Expand Down
Loading