Syntax Highlighting
Example page to test syntax highlighting
Csharp
using Sfeerderie.Lineup.Domain;
namespace Sfeerderie.Lineup.App
{
// Syntax highlighting example
public class AreaViewModel : Area
{
private const int CENTER = 150;
private string text = "Hello World\n";
public List<TimeslotViewModel> Timeslots { get; set; }
public AreaViewModel(Area area)
}
}Html
<html>
<!-- Example of HTML highlighting -->
<head>
<title>Hello world</title>
</head>
<body class="myClass">
This is just a test
</body>
</html>Json
{
"Id": 1,
"Name" : "Example",
"Tags": [
"One",
"Two",
"Three"
]
}