Skip to content

Commit c010597

Browse files
committed
Iinitial
0 parents  commit c010597

File tree

129 files changed

+5747
-0
lines changed

Some content is hidden

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

129 files changed

+5747
-0
lines changed

.Rprofile

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# REMEMBER to restart R after you modify and save this file!
2+
3+
# First, execute the global .Rprofile if it exists. You may configure blogdown
4+
# options there, too, so they apply to any blogdown projects. Feel free to
5+
# ignore this part if it sounds too complicated to you.
6+
if (file.exists("~/.Rprofile")) {
7+
base::sys.source("~/.Rprofile", envir = environment())
8+
}
9+
10+
# Now set options to customize the behavior of blogdown for this project. Below
11+
# are a few sample options; for more options, see
12+
# https://bookdown.org/yihui/blogdown/global-options.html
13+
options(
14+
# to automatically serve the site on RStudio startup, set this option to TRUE
15+
blogdown.serve_site.startup = FALSE,
16+
# to disable knitting Rmd files on save, set this option to FALSE
17+
blogdown.knit.on_save = TRUE,
18+
# build .Rmd to .md; to build to .html (via Pandoc), set this option to 'html'
19+
blogdown.method = 'markdown'
20+
)
21+
22+
# fix Hugo version
23+
options(blogdown.hugo.version = "0.136.5")
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"sortOrder": [
3+
{
4+
"columnIndex": 2,
5+
"ascending": true
6+
}
7+
],
8+
"path": "~/page1103"
9+
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"activeTab": 0
3+
}
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"left": {
3+
"splitterpos": 321,
4+
"topwindowstate": "NORMAL",
5+
"panelheight": 766,
6+
"windowheight": 804
7+
},
8+
"right": {
9+
"splitterpos": 482,
10+
"topwindowstate": "NORMAL",
11+
"panelheight": 766,
12+
"windowheight": 804
13+
}
14+
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"TabSet1": 0,
3+
"TabSet2": 0,
4+
"TabZoom": {}
5+
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"source_window_id": "",
3+
"Source": "Source",
4+
"cursorPosition": "15,37",
5+
"scrollLine": "0"
6+
}
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"source_window_id": "",
3+
"Source": "Source"
4+
}
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
~%2Fpage1103%2Fconfig.yaml="69A80156"
2+
~%2Fpage1103%2Fcontent%2Fpost%2F2020-12-01-r-rmarkdown%2Findex.md="FFB311DF"
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"id": "4529ABC0",
3+
"path": "~/page1103/config.yaml",
4+
"project_path": "config.yaml",
5+
"type": "yaml",
6+
"hash": "0",
7+
"contents": "",
8+
"dirty": false,
9+
"created": 1730639407696.0,
10+
"source_on_save": false,
11+
"relative_order": 1,
12+
"properties": {
13+
"source_window_id": "",
14+
"Source": "Source",
15+
"cursorPosition": "15,37",
16+
"scrollLine": "0"
17+
},
18+
"folds": "",
19+
"lastKnownWriteTime": 1730639424,
20+
"encoding": "UTF-8",
21+
"collab_server": "",
22+
"source_window": "",
23+
"last_content_update": 1730639424450,
24+
"read_only": false,
25+
"read_only_alternatives": []
26+
}
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
baseurl: /
2+
languageCode: en-US
3+
title: A Hugo website
4+
theme: hugo-lithium
5+
ignoreFiles:
6+
- \.Rmd$
7+
- \.Rmarkdown$
8+
- _cache$
9+
permalinks:
10+
post: /:year/:month/:day/:slug/
11+
menu:
12+
main:
13+
- name: About
14+
url: /about/
15+
- name: GitHub
16+
url: https://github.com/cxy0714
17+
- name: Twitter
18+
url: https://twitter.com/rstudio
19+
params:
20+
MathJaxCDN: //cdnjs.cloudflare.com/ajax/libs
21+
MathJaxVersion: 2.7.5
22+
description: A website built through Hugo and blogdown.
23+
favicon: favicon.ico
24+
highlightjsCDN: //cdnjs.cloudflare.com/ajax/libs
25+
highlightjsLang:
26+
- r
27+
- yaml
28+
highlightjsTheme: github
29+
highlightjsVersion: 9.12.0
30+
logo:
31+
alt: Logo
32+
height: 50
33+
url: logo.png
34+
width: 50
35+
markup:
36+
defaultMarkdownHandler: goldmark
37+
goldmark:
38+
renderer:
39+
unsafe: yes
40+
highlight:
41+
codeFences: no

0 commit comments

Comments
 (0)