File tree 3 files changed +98
-0
lines changed
3 files changed +98
-0
lines changed Original file line number Diff line number Diff line change
1
+ site /
Original file line number Diff line number Diff line change
1
+ # Welcome to MkDocs
2
+
3
+ For full documentation visit [ mkdocs.org] ( https://www.mkdocs.org ) .
4
+
5
+ ## Commands
6
+
7
+ * ` mkdocs new [dir-name] ` - Create a new project.
8
+ * ` mkdocs serve ` - Start the live-reloading docs server.
9
+ * ` mkdocs build ` - Build the documentation site.
10
+ * ` mkdocs -h ` - Print help message and exit.
11
+
12
+ ## Project layout
13
+
14
+ mkdocs.yml # The configuration file.
15
+ docs/
16
+ index.md # The documentation homepage.
17
+ ... # Other markdown pages, images and other files.
Original file line number Diff line number Diff line change
1
+ # Project info
2
+ site_name : IBM watsonx Code Assistant for Practitioners Level 4
3
+ site_description : IBM watsonx Code Assistant for Practitioners Level 4
4
+ site_author :
Christopher Bienko ([email protected] )
5
+ copyright : Copyright © 2025 IBM
6
+
7
+ # Repository
8
+ repo_name : IBM/wca-l4
9
+ # repo_url: https://github.com/IBM/wca-l4
10
+ # edit_uri: edit/master/docs
11
+ docs_dir : docs
12
+
13
+ nav :
14
+ - Introduction : ' index.md'
15
+ - Evaluation : ' evaluation.md'
16
+ - Setup and Troubleshooting : ' setup.md'
17
+ - Generating Code : ' generating.md'
18
+ - Content Source Matching and Post-Processing : ' source-matching-post-processing.md'
19
+ - Task Description Tuning and Model Customization : ' customizing.md'
20
+
21
+ theme :
22
+ name : material
23
+ features :
24
+ - navigation.instant
25
+ - navigation.tracking
26
+ - content.code.annotate
27
+ - content.code.copy
28
+ - content.code.select
29
+ - navigation.footer
30
+ palette :
31
+ scheme : default
32
+
33
+ plugins :
34
+ - mkdocs-video :
35
+ is_video : True
36
+ video_autoplay : False
37
+ - macros
38
+ - search
39
+ - glightbox
40
+ - print-site :
41
+ add_to_navigation : false
42
+ print_page_title : ' IBM watsonx Code Assistant for Practitioners Level 4 Lab Guide'
43
+ add_print_site_banner : false
44
+ # Table of contents
45
+ add_table_of_contents : false
46
+ toc_title : ' Table of Contents'
47
+ toc_depth : 6
48
+ # Content-related
49
+ add_full_urls : false
50
+ enumerate_headings : false
51
+ enumerate_figures : false
52
+ add_cover_page : true
53
+ cover_page_template : " "
54
+ path_to_pdf : " "
55
+ include_css : true
56
+ enabled : true
57
+
58
+ markdown_extensions :
59
+ - markdown_fenced_code_tabs
60
+ - sane_lists
61
+ - pymdownx.details
62
+ - admonition
63
+ - pymdownx.highlight :
64
+ anchor_linenums : true
65
+ - pymdownx.inlinehilite
66
+ - pymdownx.snippets
67
+ - pymdownx.superfences
68
+ - pymdownx.keys
69
+ - attr_list
70
+ - md_in_html
71
+ - def_list
72
+ - pymdownx.superfences
73
+ - pymdownx.tabbed :
74
+ alternate_style : true
75
+ - pymdownx.critic
76
+ - pymdownx.caret
77
+ - pymdownx.keys
78
+ - pymdownx.mark
79
+ - pymdownx.tilde
80
+ - tables
You can’t perform that action at this time.
0 commit comments