-
Notifications
You must be signed in to change notification settings - Fork 28
/
config.php
68 lines (59 loc) · 2.01 KB
/
config.php
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<?php
use Illuminate\Support\Str;
return [
'baseUrl' => 'http://localhost/github.com/atelierbram/syntax-highlighting/docs/',
'localUrl' => 'http://localhost/github.com/atelierbram/syntax-highlighting/',
'localAssetPath' => 'http://localhost/github.com/atelierbram/syntax-highlighting/source/assets/',
'localAssetPathFonts' => 'http://localhost/github.com/atelierbram/atelierbram.github.io/type/',
'remoteAssetPathFonts' => 'https://atelierbram.github.io/type/',
'production' => false,
'server' => 'local',
'title' => 'Syntax Highlighting',
'tagline' => 'colorschemes',
'siteName' => 'Syntax Highlighting by Atelierbram',
'siteDescription' => 'Collection of colorschemes for Code Syntax highlighting',
'description' => 'Collection of colorschemes for Code Syntax highlighting',
'webName' => 'Atelierbram',
'author' => 'Bram de Haan',
'collections' => [
'atelier_schemes' => [
'author' => 'Bram de Haan',
'sort' => '-date',
'path' => 'atelier-schemes/{filename}',
],
],
'build' => [
// 'source' = 'src',
'destination' => 'docs',
],
// helpers
// nodig voor RSS
'getDate' => function ($page) {
return Datetime::createFromFormat('U', $page->date);
},
'getExcerpt' => function ($page, $length = 255) {
if ($page->excerpt) {
return $page->excerpt;
}
$content = preg_split('/<!-- more -->/m', $page->getContent(), 2);
$cleaned = trim(
strip_tags(
preg_replace(['/<pre>[\w\W]*?<\/pre>/', '/<h\d>[\w\W]*?<\/h\d>/'], '', $content[0]),
'<code>'
)
);
if (count($content) > 1) {
return $cleaned;
}
$truncated = substr($cleaned, 0, $length);
if (substr_count($truncated, '<code>') > substr_count($truncated, '</code>')) {
$truncated .= '</code>';
}
return strlen($cleaned) > $length
? preg_replace('/\s+?(\S+)?$/', '', $truncated) . '...'
: $cleaned;
},
'isActive' => function ($page, $path) {
return Str::endsWith(trimPath($page->getPath()), trimPath($path));
},
];