-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path_quarto.yml
50 lines (48 loc) · 1.27 KB
/
_quarto.yml
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
project:
type: website
output-dir: "../docs"
title: "Unlocking Financial Insights: A Guide to SEC Data Analysis with R"
website:
title: "Unlocking Financial Insights: A Guide to SEC Data Analysis with R"
navbar:
tools:
- icon: github
menu:
- text: Source code
url: https://github.com/gp1981/SEC_data_analysis
page-navigation: true
sidebar:
style: "docked"
search: true
contents:
- section: "**Basics**"
contents:
- index.qmd
- 01_data_retrieval.qmd
- 02_data_exploration.qmd
- section: "**Financial Analysis**"
contents:
- 03_data_analysis.qmd
- 04_data_visualization.qmd
- 05_advanced_topics.qmd
- section: "**Real Case: AAPL**"
contents:
- 11_JAKK.qmd
- section: "**Appendix A - R script and functions**"
contents:
- A1_main_script.qmd
- A2_Functions.qmd
format:
html:
theme: cosmo
css:
- styles.css
toc: true
code-fold: true
code-summary: "Show the code"
code-copy: hover
code-overflow: wrap
code-block-bg: true
code-block-border-left: "#31BAE9"
styles:
"custom-str-output": "font-size: 12px; background-color: #f5f5f5; padding: 10px;"