Skip to content

Commit fdc3204

Browse files
committed
Initialized HUGO
1 parent eeb1557 commit fdc3204

File tree

66 files changed

+254
-98
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

66 files changed

+254
-98
lines changed

.gitignore

+4-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,7 @@ assets/.DS_Store
44
*.pdf
55
/out/*
66
.DS_Store
7-
./output_marp.*
7+
./output_marp.*
8+
9+
resources
10+
.hugo_build.lock

assets/_custom.scss

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
@import url(http://fonts.googleapis.com/earlyaccess/notosansjp.css);
2+
@import url('https://fonts.googleapis.com/css2?family=BIZ+UDPGothic&display=swap');
3+
4+
5+
body {
6+
// font-family: 'BIZ UDPGothic', sans-serif;
7+
font-family: 'Noto Sans JP', sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
8+
color: rgba(59, 69, 78, 1.00)
9+
}
10+
11+
.markdown h2 {
12+
font-size: 32px;
13+
font-weight: 700 !important;
14+
line-height: 40px;
15+
}
16+
17+
.markdown h3 {
18+
font-weight: 700 !important;
19+
20+
}
21+
22+
.markdown p,
23+
.markdown li {
24+
font-weight: 400;
25+
font-size: 16px !important;
26+
line-height: 24px;
27+
}
28+
29+
::-webkit-scrollbar {
30+
width: 10px;
31+
height: 0px;
32+
}
33+
34+
::-webkit-scrollbar-track {
35+
border-radius: 10px;
36+
background: #f2f2f2;
37+
}
38+
39+
/*スクロールバーの色・角丸指定*/
40+
::-webkit-scrollbar-thumb {
41+
border-radius: 10px;
42+
background: #ddd
43+
}

contents/en/client-tips/copilot-snippet-handling.md

+1-1

contents/en/client-tips/github-copilot-shortcuts.md

+1-1

contents/en/client-tips/go-to-definition.md

+1-1

contents/en/client-tips/pin-the-file-you-need.md

+1-1

contents/en/collaboration/ai-friendly-documentation.md

+1-1

contents/en/collaboration/coaching-on-prompts.md

+1-1

contents/en/design-pattern/ai-readable-naming-convention.md

+1-1

contents/en/design-pattern/consistent-coding-style.md

+1-1

contents/en/design-pattern/context-less-architecture.md

+1-1

contents/en/design-pattern/eliminating-a-tiny-oss-dependency.md

+1-1

contents/en/design-pattern/high-level-architecture-first.md

+1-1

contents/en/design-pattern/working-on-small-chunk.md

+1-1

contents/en/general/code-completion.md

+1-1

contents/en/general/code-to-comment.md

+1-1

contents/en/general/code-to-document.md

+1-1

contents/en/general/comment-to-code.md

+1-1

contents/en/general/language-translation.md

+1-1

contents/en/general/object-generation-from-structured-data.md

+1-1

contents/en/general/quick-qna.md

+1-1

contents/en/general/regular-expression.md

+1-1

contents/en/general/showing-examples.md

+1-1

contents/en/general/type-hinting.md

+1-1

contents/en/refactoring/asking-with-open-ended-questions.md

+1-1

contents/en/refactoring/making-the-calculation-part-independent.md

+1-1

contents/en/refactoring/writing-test-code-before-refactoring.md

+1-1

contents/en/testing/creating-unit-tests.md

+1-1

contents/en/testing/specify-test-valiation.md

+1-1

contents/en/testing/test-only-what-is-necessary.md

+1-1

contents/en/testing/writing-failure-case-first.md

+1-1

contents/en/testing/writing-test-cases-in-natural-language-first.md

+1-1

contents/ja/client-tips/copilot-snippet-handling.md

+1-1

contents/ja/client-tips/github-copilot-shortcuts.md

+1-1

contents/ja/client-tips/go-to-definition.md

+1-1

contents/ja/client-tips/pin-the-file-you-need.md

+1-1

contents/ja/collaboration/ai-friendly-documentation.md

+1-1

contents/ja/collaboration/coaching-on-prompts.md

+1-1

contents/ja/design-pattern/ai-readable-naming-convention.md

+1-1

contents/ja/design-pattern/consistent-coding-style.md

+1-1

contents/ja/design-pattern/context-less-architecture.md

+1-1

contents/ja/design-pattern/eliminating-a-tiny-oss-dependency.md

+1-1

contents/ja/design-pattern/high-level-architecture-first.md

+1-1

contents/ja/design-pattern/working-on-small-chunk.md

+1-1

contents/ja/general/code-completion.md

+1-1

contents/ja/general/code-to-comment.md

+1-1

contents/ja/general/code-to-document.md

+1-1

contents/ja/general/comment-to-code.md

+1-1

contents/ja/general/language-translation.md

+1-1

contents/ja/general/object-generation-from-structured-data.md

+1-1

contents/ja/general/quick-qna.md

+1-1

0 commit comments

Comments
 (0)