This repository has been archived by the owner on Jul 3, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.js
65 lines (58 loc) · 1.33 KB
/
index.js
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
const author = {
name: 'hitsuji no shippo',
email: '[email protected]',
url: 'https://github.com/hitsuji-no-shippo',
twitter: 'hns_equal_st',
}
const site = {
pathPrefix: '/',
title: 'Gatsby Starter Blog',
description: 'A starter blog with asciidoctor.',
// demo site url
siteUrl: 'https://gatsby-simple-blog-with-asciidoctor-demo.netlify.com',
social : {
twitter: author.twitter,
},
disqusShortName: 'gatsby-simple-blog',
googleTrackingId: '',
lang: 'en',
displayTranslations: true,
};
const supportedLanguages = {
en: 'English',
ja: '日本語',
};
const repository = {
url: 'https://github.com/hitsuji-no-shippo/gatsby-simple-blog-with-asciidoctor',
name: 'gatsby-simple-blog-with-asciidoctor',
displaysLink: true,
}
const articles = {
dir: 'hitsuji-no-shippo/sample-posts-with-asciidoc',
isAnotherRepository: true,
filePath: { Asciidoc: 'paths.from.source.full' },
ignore: ['asciidoc-examples/**/*.adoc'],
};
const linksInBio = {
twitter: 'https://twitter.com/hns_equal_st',
GitHub: 'https://github.com/hitsuji-no-shippo',
}
const dateDisplay = {
format: "LL",
diff: {
patternWithNotConvert: /month|year/,
newPost: {
boundary: 7,
emoji: '🎉',
},
},
}
module.exports = {
author,
site,
supportedLanguages,
repository,
articles,
linksInBio,
dateDisplay,
};