Jekyll-Potion

설정

jekyll-potion 의 기본적으로 설정을 추가하지 않아도 동작합니다. 하지만 설정을 통해 사이트, 부가적인 기능을 활성화 할 수 있으며 아래의 내용은 모든 설정 항목입니다.

복사성공!
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
jekyll_potion:
  site:
    index_page: ""
    permalink: ""
    title: ""
    icon: ""
    theme: "proto"
    favicon: ""
    exclude:
      -
  theme:
    - theme_name:  
        path: ""
        layouts_dir: "_layouts"
        includes_dir: "_includes"
        default_layout: "default"
        assets:
          target_root_path: "_assets"
          source_dir: "assets"
          priority_files:
            -
          scss_source_dir: "_scss"
          scss_files:
            -
        templates_dir: "_templates"
        content_x_path: "main"
        tags:
          alerts:
            info: "info"
            warning: "warning"
            danger: "danger"
            success: "success"
          code:
            code_class: "code"
            success_class: "copy-text"
            success_show_class: "show"
          tabs:
            tabs_class: "tabs"
            active_class: "active"
          navigation:
            active_class: "active"
            fold_class: "fold"
        processors:
          make_header_link_processor:
            selector: "data-header-link"
            hash_class: "go-hash"
            copy_class: "copy-link"
          rewrite_img_processor:
            skip_keyword: "data-skip-src-to-absolute"
            inline_image_class: "img-inline"
            internal_image_class: "img-internal"
          rewrite_a_href_processor:
            skip_keyword: "data-skip-href-to-absolute"
            index_page_keyword: "data-to-index-page"
            hash_link_class: "hash-internal"
            internal_link_class: "a-internal"
          make_search_index_processor:
            skip_keyword: "data-skip-search-index"
            search_file_name: "search.json"
  processors:
    - make_navigation_processor
    - make_empty_content_processor
    - make_header_link_processor
    - rewrite_img_processor
    - rewrite_a_href_processor
    - make_search_index_processor
    - make_og_tag_processor
항목 설명
jekyll_potion jekyll_potion 설정 Root
jekyll_potion.site jekyll_potion Site 설정 Root
자세한 설명은 Site 설정 에서 다룹니다.
jekyll_potion.theme jekyll_potion theme 설정 Root
자세한 설명은 Theme 설정 에서 다룹니다.
jekyll_potion.processor jekyll_potion processor 설정 Root
자세한 설명은 Processor 설정 에서 다룹니다.