This repository has been archived by the owner on Feb 9, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
31 lines (31 loc) · 1.55 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!DOCTYPE html>
<html>
<head>
<title>ReworkCSS AST explorer</title>
<meta name="description" content="An online CSS AST explorer using reworkcss’s parser.">
<link rel="stylesheet" href="css/codemirror.css">
<link rel="stylesheet" href="css/foldgutter.css">
<link rel="stylesheet" href="css/highlight.css">
<link rel="stylesheet" href="css/style.css">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
</head>
<body>
<div id="contribution">
Built with
<a href="http://facebook.github.io/react/">React</a>,
<a href="https://github.com/reworkcss/css">css</a>,
<a href="https://parse.com">Parse.com</a>,
<a href="http://codemirror.net/">CodeMirror</a>
and
<a href="http://browserify.org/">browserify</a>
|
<a href="https://github.com/iamdustan/reworkcss_ast_explorer">GitHub</a>
<a href="https://github.com/fkling/esprima_ast_explorer">Forked from @fkling/esprima_ast_explorer</a>
</div>
<div id="container"></div>
<script src="//www.parsecdn.com/js/parse-1.3.0.min.js"></script>
<script src="app.js"></script>
<script>(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-37699943-2', 'auto');ga('send', 'pageview');</script>
</body>
</html>