Skip to content

Commit de8b812

Browse files
committed
more style
1 parent 9fa43b7 commit de8b812

2 files changed

Lines changed: 44 additions & 2 deletions

File tree

docs/index.html

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,23 @@
2020
font-family: verdana;
2121
font-size: 20px;
2222
}
23+
pre {
24+
font-family: verdana;
25+
font-size: 15px;
26+
color: blue;
27+
}
2328
</style>
2429
</head>
2530
<body>
2631
<h2>Essential Packages</h2>
27-
<p>You will surely want to install the <a href="https://atom.io/packages/atom-k9">atom-k9</a> package (to run watch sketches from the editor).</p>
28-
<p>You will also want the <a href="https://atom.io/packages/set-syntax">set-syntax</a> package to make it easy to select the "JRubyArt" syntax mode.</p
32+
<p>You should install the <a href="https://atom.io/packages/atom-k9">atom-k9</a> package (to run watch sketches from the editor).</p>
33+
<p>You may also want the <a href="https://atom.io/packages/set-syntax">set-syntax</a> package to make it easy to select the <b>JRubyArt</b> syntax mode.</p>
34+
<p>Note: You can easily edit <b>language-jruby-art.cson</b> to create custom snippets see extract below:-
35+
<pre>
36+
'.source.ruby.processing':
37+
Background:
38+
prefix: 'bkg'
39+
body: 'background ${1:int}'
40+
</pre>
2941
</body>
3042
</html>

docs/index.html~

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8">
5+
<title>Syntax Highlight Mode for JRubyArt</title>
6+
<meta name="description" content="Syntax Highlight Mode for JRubyArt">
7+
<meta name="author" content="Martin Prout">
8+
<meta name="keywords" content="atom-k9,JRubyArt,ruby-processing,syntax">
9+
<style>
10+
body {
11+
background-color: lightblue;
12+
}
13+
14+
h2 {
15+
color: red;
16+
text-align: center;
17+
}
18+
19+
p {
20+
font-family: verdana;
21+
font-size: 20px;
22+
}
23+
</style>
24+
</head>
25+
<body>
26+
<h2>Essential Packages</h2>
27+
<p>You will surely want to install the <a href="https://atom.io/packages/atom-k9">atom-k9</a> package (to run watch sketches from the editor).</p>
28+
<p>You will also want the <a href="https://atom.io/packages/set-syntax">set-syntax</a> package to make it easy to select the "JRubyArt" syntax mode.</p
29+
</body>
30+
</html>

0 commit comments

Comments
 (0)