-
Notifications
You must be signed in to change notification settings - Fork 2
POST: May 2025 - Visible App tracking #107
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
ef6f7a5
690d284
e0c1402
0a74d93
bc0c98e
d5bcf3a
63929fc
706616a
727aaea
e7d03a7
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
[submodule "themes/hugo-igloo"] | ||
path = themes/hugo-igloo | ||
url = https://github.com/drmowinckels/hugo-igloo | ||
url = git@github.com:drmowinckels/hugo-igloo.git |
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
@@ -1,4 +1,4 @@ | ||||||
baseURL = "" | ||||||
baseURL = "./" | ||||||
theme = "hugo-igloo" | ||||||
title = "Dr. Mowinckel's" | ||||||
|
||||||
|
@@ -18,9 +18,11 @@ ignoreFiles = ["\\.Rmd$", "\\.Rmarkdown$", "_cache$", "index\\.html", "about\\.h | |||||
|
||||||
# Getting raw html to render | ||||||
[markup] | ||||||
[markup.goldmark] | ||||||
[markup.goldmark.renderer] | ||||||
unsafe = true | ||||||
[markup.goldmark] | ||||||
[markup.goldmark.renderer] | ||||||
unsafe = true | ||||||
[markup.goldmark.parser] | ||||||
wrapStandAloneImageWithinParagraph = false | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [nitpick] The property name 'wrapStandAloneImageWithinParagraph' appears to use mixed case for 'standAlone'; consider using 'wrapStandaloneImageWithinParagraph' if that is the intended configuration key as per documentation.
Suggested change
Copilot uses AI. Check for mistakes. Positive FeedbackNegative Feedback |
||||||
|
||||||
[params] | ||||||
themeStyle = "light" # Choose "light" or "dark" | ||||||
|
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
tidyverse | ||
ggplot2 | ||
tibble | ||
tidyr | ||
readr | ||
purrr | ||
dplyr | ||
stringr | ||
forcats | ||
lubridate | ||
cluster | ||
pvclust | ||
ggsci | ||
ggraph | ||
tidygraph |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Changing the baseURL from an empty string to a relative path ('./') may impact link resolution or asset loading in production. Consider using an environment-specific absolute URL for production or documenting the intent clearly.
Copilot uses AI. Check for mistakes.