lots of fun with pixelnated - dumb idea playground
This is just a place for me to test out ideas, no matter how bad and or share things I find cool. Music and geekery a-go-go.
Sample syntax highlighting for testing
Some T-SQL Code
SELECT This, [Is], A, Code, Block -- Using SSMS style syntax highlighting
, REVERSE('abc')
FROM dbo.SomeTable s
CROSS JOIN dbo.OtherTable o;
Some PowerShell Code
Write-Host "This is a powershell Code block";
# There are many other languages you can use, but the style has to be loaded first
ForEach ($thing in $things) {
Write-Output "It highlights it using the GitHub style"
}