Collapsible markdown section
Collapsible markdown TIL from williln/til Click me Favorite Disney Movies Wall-E Moana
Collapsible markdown TIL from williln/til Click me Favorite Disney Movies Wall-E Moana
I just discovered Semantic Line Breaks. I could never decide on exactly how to do line breaks in markdown so I love that someone came up with a convention that鈥檚 been thought through. This led me to discover this post by Derek Sivers: Writing one sentence per line What鈥檚 interesting is that while he鈥檚 recommending the same approach, he suggests that it will improve your writing itself. Nicer git diffs is just a side benefit. 馃檪 ...
I just figured out that you can style a link as inline code in markdown i.e. toSorted() It鈥檚 a bit non-intuitive since, unlike bold or italics, the backticks go inside the square brackets instead of around the entire link. This gives a bold link: **[EFF](https://eff.org)**. This is for italics: *[Markdown Guide](https://www.markdownguide.org)*. And this is for code: [`toSorted()`](https://www.brandonpugh.com/til/javascript/tosorted/). In my testing this seems supported in most places like github and azure devops. Unfortunately I couldn鈥檛 find a way get it styled like that in Teams. ...