You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/_docs/contributing.md
+6-9
Original file line number
Diff line number
Diff line change
@@ -1,9 +1,5 @@
1
1
---
2
-
layout: docs
3
-
title: Contributing
4
-
prev_section: third-party
5
-
next_section: history
6
-
permalink: /docs/contributing/
2
+
doc_order: 4
7
3
---
8
4
9
5
jekyll-import is entirely open-source, which means we need your help to make it better!
@@ -28,7 +24,7 @@ So you have a new system you want to be able to import from? Great! It's pretty
28
24
First thing's first: create the file where the importer will go. In this case, that will be `lib/jekyll-import/importers/columbus.rb`.
29
25
Inside this file, we'll add this template:
30
26
31
-
{% highlight ruby %}
27
+
```ruby
32
28
moduleJekyllImport
33
29
moduleImporters
34
30
classColumbus < Importer
@@ -59,7 +55,7 @@ module JekyllImport
59
55
end
60
56
end
61
57
end
62
-
{% endhighlight %}
58
+
```
63
59
64
60
Let's go through this quickly.
65
61
@@ -79,16 +75,17 @@ Where the magic happens! This method should read from your *Columbus* source, th
79
75
80
76
This function is entirely optional, but allows for some validation of the options. This method allows you to validate the options in any way you wish. For example:
81
77
82
-
{% highlight ruby %}
78
+
```ruby
83
79
defself.validate(opts)
84
80
abort"Specify a username!"if opts["username"].nil?
85
81
abort"Your username must be a number."unless opts["username"].match(%r!\A\d+\z!)
86
82
end
87
-
{% endhighlight %}
83
+
```
88
84
89
85
Once you have your importer working (test with `script/console`), then you're ready to add **documentation**. Add your new file:
90
86
`./docs/_importers/columbus.md`. Take a look at one of the other importers as an example. You just add basic usage and you're golden.
91
87
92
88
All set? Add everything to a branch on your fork of `jekyll-import` and
93
89
[submit a pull request](https://github.com/jekyll/jekyll-import/compare/).
0 commit comments