Skip to content

Commit fd51800

Browse files
authored
Update Tailwind config to look at Markdown files; adjust Matt Stauffer post style (#263)
* Update Tailwind to search markdown files for Tailwind styles to include Some previous blog posts used Markdown styles, but they were only able to use styles that were already used in `.html` pages. This will allow styles to be defined in a blog post (Markdown) and Tailwind will build them, even if they don't exist anywhere else. * Update Matt Stauffer intro post to bring back original styles Originally introduced in #fb42af1c9897efb8c33213711c26f76c102b4b93
1 parent 7833266 commit fd51800

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

source/_posts/2026-03-25-welcoming-matt-stauffer-to-the-php-foundation-board.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ author:
99
url: https://www.linkedin.com/in/elizabethn/
1010
published_at: 27 March 2026
1111
---
12-
<img src="/assets/post-images/2026/matt-stauffer/matt-stauffer.jpg" width="300" alt="headshot of matt stauffer"/> We are thrilled to announce that [Matt Stauffer](https://www.linkedin.com/in/mattstauffer/) has agreed to join The PHP Foundation Board, where he will bring his decades of experience in the PHP ecosystem. Matt joins the Board as a community representative and was voted in by the existing Board members. Not only is Matt a Laravel expert, he has created / maintained dozens of PHP and JavaScript open source packages, he is a published author, and he hosts several successful industry podcasts. We are grateful for his insight, input, and leadership as we further our mission of sustaining a thriving PHP language and ecosystem.
12+
<img src="/assets/post-images/2026/matt-stauffer/matt-stauffer.jpg" width="300" alt="headshot of matt stauffer" class="mb-4 sm:mr-4 sm:float-left"/> We are thrilled to announce that [Matt Stauffer](https://www.linkedin.com/in/mattstauffer/) has agreed to join The PHP Foundation Board, where he will bring his decades of experience in the PHP ecosystem. Matt joins the Board as a community representative and was voted in by the existing Board members. Not only is Matt a Laravel expert, he has created / maintained dozens of PHP and JavaScript open source packages, he is a published author, and he hosts several successful industry podcasts. We are grateful for his insight, input, and leadership as we further our mission of sustaining a thriving PHP language and ecosystem.
1313

1414
Please join us in welcoming Matt to the Foundation Board!

tailwind.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module.exports = {
2-
content: ["./source/**/*.html"],
2+
content: ["./source/**/*.html", "./source/**/*.md"],
33
theme: {
44
extend: {
55
backgroundSize: {

0 commit comments

Comments
 (0)