AtmosphereConf 2026 is a wrap! We hope all the remote attendees had a great Streamplace experience.
When VODs, you ask? They're actually up right now! They're `place.stream.video` records in this repo.
One catch: no frontend yet. That's where you come in.
Welcome to the Streamplace VOD JAM.
I can just do things :)
*bold*
/italic/
_underline_
~striketrhough~
{https\://example.com}[link]
[wiki link]
@code
print("code block")
@end
Shamefully copied from @vhyrro.neorg.org
#neovim Development News
The 0.12 version will update `:source` command to work smarter when executed with a range. In non-Lua files (like help files) it will detect Lua codeblocks via treesitter and execute them as Lua.
PR:
- github.com/neovim/neovi...
_which_ markdown is the great one?
- GFM
- GFM (G for gitlab)
- CommonMark
- markdown\.pl
- Obsidian
- Bear
- whatever apple is using
- opinionated mixture of CommonMark, GFM and arbitrary amount of extensions
Summary
When :source is given a range in a file like vimdoc, use treesitter to detect if the selected text is inside a Lua codeblock (injection)
If the range is in a Lua injection, execute as Lua ...