Upgrades to the editor
Published on 2024-12-19 by Sophie R
Today, just over a week since our initial release we're happy to launch an updated Editor experience when creating and editing posts in your browser.
It has basic formatting support - you can make things bold, italic,strike through and post links, just how you can expect in any modern editor.
You can share code snippets:
It has basic formatting support - you can make things bold, italic,
You can share code snippets:
const countOccurrences = (arr, val) => arr.reduce((a, v) => (v === val ? a + 1 : a), 0);
Make bulleted and ordered lists:
- Just like this!
- And they can be nested
- Hurray!