forked from irssi/scripts.irssi.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscripts.dmp
34 lines (32 loc) · 945 Bytes
/
scripts.dmp
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
32
33
34
---
layout: nil
---
$scripts = {
{% for script in site.data.scripts %}
'{{ script.filename }}' => {
'filename' => '{{ script.filename }}',
'last_modified' => '{{ script.modified }}',
'version' => '{{ script.version }}',
'authors' => '{{ script.authors }}',
'contact' => '{{ script.contact }}',
'name' => '{{ script.name }}',
'description' => '{{ script.description }}',
'license' => '{{ script.license }}',
{% if script.url %}
'url' => '{{ script.url }}',
{% endif %}
{% if script.changed %}
'changed' => '{{ script.changed }}',
{% endif %}
{% if script.commands %}
'commands' => '{{ script.commands }}',
{% endif %}
{% if script.note %}
'note' => '{{ script.note }}',
{% endif %}
{% if script.modules %}
'modules' => '{{ script.modules }}',
{% endif %}
},
{% endfor %}
};