Chris Coyier
Chris Coyier
Is it confirmed that "rendered by JavaScript" links will definitely fail validation?
> I am looking for this color theme that you use I don't think there is an official home for it, but generally known as "Twilight"
This was my workaround: https://github.com/chriscoyier/coding-fonts/blob/master/src/_includes/font-page.njk#L58 That data gets set here: https://github.com/chriscoyier/coding-fonts/blob/master/src/_data/images.js Which is based on an environment variable PROD. So on Netlify I set the build process to be `PROD="true"...
This is EXACTLY where I hoped this was headed. I just wanted to use IMG at first to prove it was possible. Inline SVG is way more desireable. We should...
Just checking in here. The link to CodePen [on this page](https://react.dev/learn/installation) 500 errors because of the invalid usage so it would be nice to fix. We have users writing in...
For Next.js, this seems to work for me: ``` const ResizePanel = dynamic(() => import('react-resize-panel'), { ssr: false }); ``` Would be nice to support SSR I think? Even if...
Just noting I once pulled this off in a custom WordPress block essentially with this technique: https://css-tricks.com/creating-an-editable-textarea-that-supports-syntax-highlighted-code/ I probably have a copy of it laying around if helpful.
You can put ``` self.properties.push("filter"); ``` on line 322 (as of this date) and it will work. Seems like a gnarly way to fix it though... there is probably a...
> I think it’s OK for plugin consumers to manually set language that must be used 👍
I'd vote for some standardized way to add custom words to the otherwise-standard dictionary it downloads. Like ``` "add_words": ["GitHub", "blahblahblah"] ```