Skip to content
SplittyDev edited this page Oct 21, 2014 · 11 revisions

Welcome to the owl wiki!

owl is a HTML preprocessor written in C# in the development stage which allows you to create websites without the using of the XML syntax.

This HTML page

<html>
 <head>
  <title>owl example</title>
 </head>
 <body>
  <h1>Hello World!</h1>
 </body>
</html>

equals the following owl code:

head {
  title { "owl example" }
}

document {
  h1 { "Hello World!" }
}

More content is coming soon!

Projects using owl:

owlOnline

Clone this wiki locally