Skip to content

socketry/xrb-vscode

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

XRB VSCode

This extension provides support for the XRB language in Visual Studio Code.

Support

File Extensions

  • .xrb is the canonical file extension.
  • .xnode is a legacy file extension from utopia.
  • .trenni is a legacy file extension from trenni.

XRB Heredocs

source = <<~'XRB'
	<p>hello</p>
	#{"foo" + "bar"}
	<?r hello # bar ?>
XRB

XRB Markdown

``` xrb
<p>hello</p>
#{"foo" + 10}
<?r hello # bar ?>
```