Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitd8389f5

Browse files
committed
setup docs
1 parent4304db7 commitd8389f5

24 files changed

+168
-343
lines changed

‎_config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,5 +58,6 @@ kramdown:
5858
input:GFM
5959
syntax_highlighter:rouge
6060
parse_block_html:true
61+
default_lang:js
6162
#sass:
6263
# style: compressed

‎_includes/scripts.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@
66
<scriptsrc="{{"/js/util.js" | prepend: site.baseurl }}"></script>
77
<!--[if lte IE 8]><script src="{{ "/js/ie/respond.min.js" | prepend: site.baseurl }}"></script><![endif]-->
88
<scriptsrc="{{"/js/main.js" | prepend: site.baseurl }}"></script>
9+
<scriptsrc="{{"/js/png2gif.min.js" | prepend: site.baseurl }}"></script>

‎_layouts/docs.html

Whitespace-only changes.

‎_posts/docs/2016-01-01-installation.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Install the *Atom-CodeRoad* package: `> apm install atom-coderoad`
3030

3131
For an example of how to do this,*hover* over the image below:
3232

33-
![Install atom-coderoad](/img/gif/install-atom-coderoad.png){: .gif}
33+
![Install atom-coderoad](/images/docs/install-atom-coderoad.png){: .gif}
3434

3535
Toggle open*Atom-CodeRoad* using the*Packages* menu or press*ctrl-alt-0*.
3636

@@ -39,7 +39,7 @@ Toggle open *Atom-CodeRoad* using the *Packages* menu or press *ctrl-alt-0*.
3939

4040
To install a tutorial, setup a*package.json* file and save the tutorial as a dependency. Make sure[NodeJS](nodejs.org) is already installed.
4141

42-
![Install a Tutorial](/img/gif/install-tutorial.png){: .gif}
42+
![Install a Tutorial](/images/docs/install-tutorial.png){: .gif}
4343

4444
You can setup a project quickly by typing`> npm init --y` into the command line in your project's folder. This agrees to all of the defaults for your newly created*package.json* file.
4545

@@ -60,6 +60,6 @@ Install *CodeRoad-CLI*. Make sure [NodeJS](nodejs.org) is already installed
6060

6161
It's recommended you also enable*autosave* in Atom.
6262

63-
![Enable autosave in Atom](/img/gif/autosave.png){: .gif}
63+
![Enable autosave in Atom](/images/docs/autosave.png){: .gif}
6464

6565
Tutorials run unit tests on save,*autosave* can speed up the process.

‎_posts/docs/2016-01-04-coderoad-api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ Set the cursor position.
130130
function example() {
131131
::>
132132
}
133-
```
133+
```
134134
))
135135
```
136136

‎_sass/_highlight.scss

Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
/**
2+
* Syntax highlighting styles
3+
*/
4+
.highlight {
5+
background:#fff;
6+
7+
.highlighter-rouge& {
8+
background:#eef;
9+
}
10+
11+
.c {color:#998;font-style:italic }// Comment
12+
.err {color:#a61717;background-color:#e3d2d2 }// Error
13+
.k {font-weight:bold }// Keyword
14+
.o {font-weight:bold }// Operator
15+
.cm {color:#998;font-style:italic }// Comment.Multiline
16+
.cp {color:#999;font-weight:bold }// Comment.Preproc
17+
.c1 {color:#998;font-style:italic }// Comment.Single
18+
.cs {color:#999;font-weight:bold;font-style:italic }// Comment.Special
19+
.gd {color:#000;background-color:#fdd }// Generic.Deleted
20+
.gd.x {color:#000;background-color:#faa }// Generic.Deleted.Specific
21+
.ge {font-style:italic }// Generic.Emph
22+
.gr {color:#a00 }// Generic.Error
23+
.gh {color:#999 }// Generic.Heading
24+
.gi {color:#000;background-color:#dfd }// Generic.Inserted
25+
.gi.x {color:#000;background-color:#afa }// Generic.Inserted.Specific
26+
.go {color:#888 }// Generic.Output
27+
.gp {color:#555 }// Generic.Prompt
28+
.gs {font-weight:bold }// Generic.Strong
29+
.gu {color:#aaa }// Generic.Subheading
30+
.gt {color:#a00 }// Generic.Traceback
31+
.kc {font-weight:bold }// Keyword.Constant
32+
.kd {font-weight:bold }// Keyword.Declaration
33+
.kp {font-weight:bold }// Keyword.Pseudo
34+
.kr {font-weight:bold }// Keyword.Reserved
35+
.kt {color:#458;font-weight:bold }// Keyword.Type
36+
.m {color:#099 }// Literal.Number
37+
.s {color:#d14 }// Literal.String
38+
.na {color:#008080 }// Name.Attribute
39+
.nb {color:#0086B3 }// Name.Builtin
40+
.nc {color:#458;font-weight:bold }// Name.Class
41+
.no {color:#008080 }// Name.Constant
42+
.ni {color:#800080 }// Name.Entity
43+
.ne {color:#900;font-weight:bold }// Name.Exception
44+
.nf {color:#900;font-weight:bold }// Name.Function
45+
.nn {color:#555 }// Name.Namespace
46+
.nt {color:#000080 }// Name.Tag
47+
.nv {color:#008080 }// Name.Variable
48+
.ow {font-weight:bold }// Operator.Word
49+
.w {color:#bbb }// Text.Whitespace
50+
.mf {color:#099 }// Literal.Number.Float
51+
.mh {color:#099 }// Literal.Number.Hex
52+
.mi {color:#099 }// Literal.Number.Integer
53+
.mo {color:#099 }// Literal.Number.Oct
54+
.sb {color:#d14 }// Literal.String.Backtick
55+
.sc {color:#d14 }// Literal.String.Char
56+
.sd {color:#d14 }// Literal.String.Doc
57+
.s2 {color:#d14 }// Literal.String.Double
58+
.se {color:#d14 }// Literal.String.Escape
59+
.sh {color:#d14 }// Literal.String.Heredoc
60+
.si {color:#d14 }// Literal.String.Interpol
61+
.sx {color:#d14 }// Literal.String.Other
62+
.sr {color:#009926 }// Literal.String.Regex
63+
.s1 {color:#d14 }// Literal.String.Single
64+
.ss {color:#990073 }// Literal.String.Symbol
65+
.bp {color:#999 }// Name.Builtin.Pseudo
66+
.vc {color:#008080 }// Name.Variable.Class
67+
.vg {color:#008080 }// Name.Variable.Global
68+
.vi {color:#008080 }// Name.Variable.Instance
69+
.il {color:#099 }// Literal.Number.Integer.Long
70+
}

‎builder.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
layout: page
3-
title:Builder
3+
title:Create Tutorials
44
---
5-
<h3>Lorem ipsum dolor</h3>
5+
<h3>Create Tutorials</h3>
66
<p>Morbi mattis mi consectetur tortor elementum, varius pellentesque velit convallis. Aenean tincidunt lectus auctor mauris maximus, ac scelerisque ipsum tempor. Duis vulputate ex et ex tincidunt, quis lacinia velit aliquet. Duis non efficitur nisi, id malesuada justo. Maecenas sagittis felis ac sagittis semper. Curabitur purus leo, tempus sed finibus eget, fringilla quis risus. Maecenas et lorem quis sem varius sagittis et a est. Maecenas iaculis iaculis sem. Donec vel dolor at arcu tincidunt bibendum. Interdum et malesuada fames ac ante ipsum primis in faucibus. Fusce ut aliquet justo. Donec id neque ipsum. Integer eget ultricies odio. Nam vel ex a orci fringilla tincidunt. Aliquam eleifend ligula non velit accumsan cursus. Etiam ut gravida sapien.</p>
77
<p>Vestibulum ultrices risus velit, sit amet blandit massa auctor sit amet. Sed eu lectus sem. Phasellus in odio at ipsum porttitor mollis id vel diam. Praesent sit amet posuere risus, eu faucibus lectus. Vivamus ex ligula, tempus pulvinar ipsum in, auctor porta quam. Proin nec dui cursus, posuere dui eget interdum. Fusce lectus magna, sagittis at facilisis vitae, pellentesque at etiam. Quisque posuere leo quis sem commodo, vel scelerisque nisi scelerisque. Suspendisse id quam vel tortor tincidunt suscipit. Nullam auctor orci eu dolor consectetur, interdum ullamcorper ante tincidunt. Mauris felis nec felis elementum varius.</p>
88
<hr/>

‎contact.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
layout: page
3+
title: Contact
4+
---

‎css/main.scss

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ $baseurl: '{{ site.baseurl }}/images';
88
@import'libs/functions';
99
@import'libs/mixins';
1010
@import'font-awesome.min.css';
11+
@import'highlight';
1112
@importurl('http://fonts.googleapis.com/css?family=Open+Sans:400,400italic,600,600italic,800,800italic');
1213

1314
/*
@@ -593,9 +594,9 @@ $baseurl: '{{ site.baseurl }}/images';
593594
display:inline-block;
594595
padding:01em00;
595596

596-
img {
597-
height:75px;
598-
}
597+
//img {
598+
//height: 75px;
599+
//}
599600

600601
&:last-child {
601602
padding-right:0!important;

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp