2023-07-04 17:08:32 +00:00
|
|
|
@use "./syntax.scss";
|
|
|
|
@use "./callouts.scss";
|
2023-12-08 02:38:45 +00:00
|
|
|
@use "./variables.scss" as *;
|
2023-06-01 21:35:31 +00:00
|
|
|
html {
|
|
|
|
scroll-behavior: smooth;
|
2023-07-23 18:02:45 +00:00
|
|
|
-webkit-text-size-adjust: none;
|
|
|
|
text-size-adjust: none;
|
2023-08-08 04:41:18 +00:00
|
|
|
overflow-x: hidden;
|
2023-08-07 05:07:08 +00:00
|
|
|
width: 100vw;
|
2023-06-01 21:35:31 +00:00
|
|
|
}
|
|
|
|
|
2023-08-13 04:16:34 +00:00
|
|
|
body,
|
|
|
|
section {
|
2023-06-01 21:35:31 +00:00
|
|
|
margin: 0;
|
|
|
|
max-width: 100%;
|
|
|
|
box-sizing: border-box;
|
|
|
|
background-color: var(--light);
|
|
|
|
font-family: var(--bodyFont);
|
2023-08-13 00:44:35 +00:00
|
|
|
color: var(--darkgray);
|
2023-06-01 21:35:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.text-highlight {
|
2023-07-10 02:32:24 +00:00
|
|
|
background-color: #fff23688;
|
2023-06-01 21:35:31 +00:00
|
|
|
padding: 0 0.1rem;
|
|
|
|
border-radius: 5px;
|
|
|
|
}
|
|
|
|
|
2023-08-24 19:28:06 +00:00
|
|
|
::selection {
|
|
|
|
background: color-mix(in srgb, var(--tertiary) 75%, transparent);
|
2023-08-24 19:31:15 +00:00
|
|
|
color: var(--darkgray);
|
2023-08-24 19:28:06 +00:00
|
|
|
}
|
|
|
|
|
2023-07-23 00:27:41 +00:00
|
|
|
p,
|
|
|
|
ul,
|
|
|
|
text,
|
|
|
|
a,
|
|
|
|
tr,
|
|
|
|
td,
|
|
|
|
li,
|
|
|
|
ol,
|
|
|
|
ul,
|
|
|
|
.katex,
|
|
|
|
.math {
|
2023-06-01 21:35:31 +00:00
|
|
|
color: var(--darkgray);
|
|
|
|
fill: var(--darkgray);
|
2023-07-24 04:41:09 +00:00
|
|
|
overflow-wrap: anywhere;
|
|
|
|
hyphens: auto;
|
2023-06-01 21:35:31 +00:00
|
|
|
}
|
|
|
|
|
2023-07-10 02:32:24 +00:00
|
|
|
.math {
|
|
|
|
&.math-display {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-06-01 21:35:31 +00:00
|
|
|
a {
|
|
|
|
font-weight: 600;
|
|
|
|
text-decoration: none;
|
2023-07-02 20:08:29 +00:00
|
|
|
transition: color 0.2s ease;
|
2023-06-01 21:35:31 +00:00
|
|
|
color: var(--secondary);
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: var(--tertiary) !important;
|
|
|
|
}
|
|
|
|
|
2024-01-05 08:29:34 +00:00
|
|
|
&.internal {
|
2023-06-01 21:35:31 +00:00
|
|
|
text-decoration: none;
|
|
|
|
background-color: var(--highlight);
|
|
|
|
padding: 0 0.1rem;
|
|
|
|
border-radius: 5px;
|
2024-01-05 08:29:34 +00:00
|
|
|
|
|
|
|
&:has(> img) {
|
|
|
|
background-color: none;
|
|
|
|
border-radius: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
2023-06-01 21:35:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-07-04 23:48:36 +00:00
|
|
|
.desktop-only {
|
|
|
|
display: initial;
|
|
|
|
@media all and (max-width: $fullPageWidth) {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.mobile-only {
|
|
|
|
display: none;
|
|
|
|
@media all and (max-width: $fullPageWidth) {
|
|
|
|
display: initial;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-06-01 21:35:31 +00:00
|
|
|
.page {
|
2023-07-04 23:48:36 +00:00
|
|
|
@media all and (max-width: $fullPageWidth) {
|
2023-08-07 00:09:29 +00:00
|
|
|
margin: 0 auto;
|
|
|
|
padding: 0 1rem;
|
2023-08-07 05:07:08 +00:00
|
|
|
max-width: $pageWidth;
|
2023-07-04 23:48:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
& article {
|
|
|
|
& > h1 {
|
|
|
|
font-size: 2rem;
|
|
|
|
}
|
|
|
|
|
2023-07-23 00:27:41 +00:00
|
|
|
& li:has(> input[type="checkbox"]) {
|
2023-07-04 23:48:36 +00:00
|
|
|
list-style-type: none;
|
|
|
|
padding-left: 0;
|
2023-07-26 05:27:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
& li:has(> input[type="checkbox"]:checked) {
|
|
|
|
text-decoration: line-through;
|
|
|
|
text-decoration-color: var(--gray);
|
|
|
|
color: var(--gray);
|
2023-07-04 23:48:36 +00:00
|
|
|
}
|
2023-07-10 02:32:24 +00:00
|
|
|
|
|
|
|
& li > * {
|
2023-07-26 05:27:59 +00:00
|
|
|
margin-top: 0;
|
|
|
|
margin-bottom: 0;
|
2023-07-10 02:32:24 +00:00
|
|
|
}
|
2023-08-08 06:56:50 +00:00
|
|
|
|
|
|
|
p > strong {
|
|
|
|
color: var(--dark);
|
|
|
|
}
|
2023-06-17 21:36:06 +00:00
|
|
|
}
|
|
|
|
|
2023-07-02 20:08:29 +00:00
|
|
|
& > #quartz-body {
|
|
|
|
width: 100%;
|
|
|
|
display: flex;
|
2023-07-04 23:48:36 +00:00
|
|
|
@media all and (max-width: $fullPageWidth) {
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
2023-07-02 20:08:29 +00:00
|
|
|
|
2023-07-05 00:14:15 +00:00
|
|
|
& .sidebar {
|
2023-07-02 20:08:29 +00:00
|
|
|
flex: 1;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
gap: 2rem;
|
|
|
|
top: 0;
|
2023-07-04 17:08:32 +00:00
|
|
|
width: $sidePanelWidth;
|
|
|
|
margin-top: $topSpacing;
|
2023-07-02 20:08:29 +00:00
|
|
|
box-sizing: border-box;
|
|
|
|
padding: 0 4rem;
|
|
|
|
position: fixed;
|
2023-07-04 23:48:36 +00:00
|
|
|
@media all and (max-width: $fullPageWidth) {
|
|
|
|
position: initial;
|
|
|
|
flex-direction: row;
|
|
|
|
padding: 0;
|
|
|
|
width: initial;
|
2023-07-23 18:19:15 +00:00
|
|
|
margin-top: 2rem;
|
2023-07-04 23:48:36 +00:00
|
|
|
}
|
2023-07-02 20:08:29 +00:00
|
|
|
}
|
|
|
|
|
2023-07-05 00:14:15 +00:00
|
|
|
& .sidebar.left {
|
2023-07-04 17:08:32 +00:00
|
|
|
left: calc(calc(100vw - $pageWidth) / 2 - $sidePanelWidth);
|
2023-07-04 23:48:36 +00:00
|
|
|
@media all and (max-width: $fullPageWidth) {
|
2023-07-31 04:08:32 +00:00
|
|
|
gap: 0;
|
2023-07-04 23:48:36 +00:00
|
|
|
align-items: center;
|
|
|
|
}
|
2023-07-02 20:08:29 +00:00
|
|
|
}
|
|
|
|
|
2023-07-05 00:14:15 +00:00
|
|
|
& .sidebar.right {
|
2023-07-04 17:08:32 +00:00
|
|
|
right: calc(calc(100vw - $pageWidth) / 2 - $sidePanelWidth);
|
2023-07-04 23:48:36 +00:00
|
|
|
& > * {
|
|
|
|
@media all and (max-width: $fullPageWidth) {
|
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
}
|
2023-07-02 20:08:29 +00:00
|
|
|
}
|
2023-06-17 21:36:06 +00:00
|
|
|
}
|
2023-07-04 17:08:32 +00:00
|
|
|
|
2023-07-04 23:48:36 +00:00
|
|
|
& .page-header {
|
|
|
|
width: $pageWidth;
|
|
|
|
margin: $topSpacing auto 0 auto;
|
|
|
|
@media all and (max-width: $fullPageWidth) {
|
|
|
|
width: initial;
|
|
|
|
margin-top: 2rem;
|
2023-06-17 21:36:06 +00:00
|
|
|
}
|
2023-06-01 21:35:31 +00:00
|
|
|
}
|
|
|
|
|
2023-07-23 00:27:41 +00:00
|
|
|
& .center,
|
|
|
|
& footer {
|
2023-07-04 23:48:36 +00:00
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
2023-08-07 05:07:08 +00:00
|
|
|
width: $pageWidth;
|
2023-07-04 23:48:36 +00:00
|
|
|
@media all and (max-width: $fullPageWidth) {
|
|
|
|
width: initial;
|
|
|
|
margin-left: 0;
|
|
|
|
margin-right: 0;
|
2023-07-02 20:08:29 +00:00
|
|
|
}
|
2023-06-01 21:35:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-07-10 02:32:24 +00:00
|
|
|
.footnotes {
|
|
|
|
margin-top: 2rem;
|
|
|
|
border-top: 1px solid var(--lightgray);
|
|
|
|
}
|
|
|
|
|
2023-07-02 20:08:29 +00:00
|
|
|
input[type="checkbox"] {
|
|
|
|
transform: translateY(2px);
|
|
|
|
color: var(--secondary);
|
2023-07-26 05:27:59 +00:00
|
|
|
border: 1px solid var(--lightgray);
|
|
|
|
border-radius: 3px;
|
2023-07-02 20:08:29 +00:00
|
|
|
background-color: var(--light);
|
2023-07-26 05:27:59 +00:00
|
|
|
position: relative;
|
|
|
|
margin-inline-end: 0.2rem;
|
|
|
|
margin-inline-start: -1.4rem;
|
|
|
|
appearance: none;
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
|
|
|
|
&:checked {
|
|
|
|
border-color: var(--secondary);
|
|
|
|
background-color: var(--secondary);
|
|
|
|
|
|
|
|
&::after {
|
|
|
|
content: "";
|
|
|
|
position: absolute;
|
|
|
|
left: 4px;
|
|
|
|
top: 1px;
|
|
|
|
width: 4px;
|
|
|
|
height: 8px;
|
|
|
|
display: block;
|
2023-07-31 04:08:32 +00:00
|
|
|
border: solid var(--light);
|
2023-07-26 05:27:59 +00:00
|
|
|
border-width: 0 2px 2px 0;
|
|
|
|
transform: rotate(45deg);
|
|
|
|
}
|
|
|
|
}
|
2023-07-02 20:08:29 +00:00
|
|
|
}
|
|
|
|
|
2023-06-01 21:35:31 +00:00
|
|
|
blockquote {
|
2023-06-07 02:48:37 +00:00
|
|
|
margin: 1rem 0;
|
2023-06-01 21:35:31 +00:00
|
|
|
border-left: 3px solid var(--secondary);
|
|
|
|
padding-left: 1rem;
|
|
|
|
transition: border-color 0.2s ease;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1,
|
|
|
|
h2,
|
|
|
|
h3,
|
|
|
|
h4,
|
|
|
|
h5,
|
|
|
|
h6,
|
|
|
|
thead {
|
|
|
|
font-family: var(--headerFont);
|
|
|
|
color: var(--dark);
|
|
|
|
font-weight: revert;
|
2023-07-10 02:32:24 +00:00
|
|
|
margin-bottom: 0;
|
2023-06-01 21:35:31 +00:00
|
|
|
|
2023-06-01 23:48:38 +00:00
|
|
|
article > & > a {
|
|
|
|
color: var(--dark);
|
|
|
|
&.internal {
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
2023-06-01 21:35:31 +00:00
|
|
|
}
|
2023-06-01 23:48:38 +00:00
|
|
|
}
|
2023-06-01 21:35:31 +00:00
|
|
|
|
2023-07-23 00:27:41 +00:00
|
|
|
h1,
|
|
|
|
h2,
|
|
|
|
h3,
|
|
|
|
h4,
|
|
|
|
h5,
|
|
|
|
h6 {
|
2023-07-02 20:08:29 +00:00
|
|
|
&[id] > a[href^="#"] {
|
2023-06-01 23:48:38 +00:00
|
|
|
margin: 0 0.5rem;
|
|
|
|
opacity: 0;
|
|
|
|
transition: opacity 0.2s ease;
|
2023-06-03 19:07:19 +00:00
|
|
|
transform: translateY(-0.1rem);
|
|
|
|
display: inline-block;
|
2023-06-01 23:48:38 +00:00
|
|
|
font-family: var(--codeFont);
|
|
|
|
user-select: none;
|
|
|
|
}
|
2023-07-23 18:02:45 +00:00
|
|
|
|
2023-06-01 23:48:38 +00:00
|
|
|
&[id]:hover > a {
|
|
|
|
opacity: 1;
|
2023-06-01 21:35:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-07-23 18:02:45 +00:00
|
|
|
// typography improvements
|
|
|
|
h1 {
|
|
|
|
font-size: 1.75rem;
|
2023-08-09 03:36:24 +00:00
|
|
|
margin-top: 2.25rem;
|
|
|
|
margin-bottom: 1rem;
|
2023-07-23 18:02:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
h2 {
|
|
|
|
font-size: 1.4rem;
|
2023-08-09 03:36:24 +00:00
|
|
|
margin-top: 1.9rem;
|
|
|
|
margin-bottom: 1rem;
|
2023-07-23 18:02:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
h3 {
|
|
|
|
font-size: 1.12rem;
|
2023-08-09 03:36:24 +00:00
|
|
|
margin-top: 1.62rem;
|
|
|
|
margin-bottom: 1rem;
|
2023-07-23 18:02:45 +00:00
|
|
|
}
|
|
|
|
|
2023-07-23 18:04:20 +00:00
|
|
|
h4,
|
|
|
|
h5,
|
|
|
|
h6 {
|
2023-07-23 18:02:45 +00:00
|
|
|
font-size: 1rem;
|
2023-08-09 03:36:24 +00:00
|
|
|
margin-top: 1.5rem;
|
|
|
|
margin-bottom: 1rem;
|
2023-07-23 18:02:45 +00:00
|
|
|
}
|
|
|
|
|
2024-01-05 08:29:34 +00:00
|
|
|
figure[data-rehype-pretty-code-figure] {
|
|
|
|
margin: 0;
|
|
|
|
position: relative;
|
2023-07-23 18:02:45 +00:00
|
|
|
line-height: 1.6rem;
|
2023-06-01 21:35:31 +00:00
|
|
|
position: relative;
|
|
|
|
|
2024-01-05 08:29:34 +00:00
|
|
|
& > [data-rehype-pretty-code-title] {
|
2023-06-01 21:35:31 +00:00
|
|
|
font-family: var(--codeFont);
|
|
|
|
font-size: 0.9rem;
|
2023-07-10 02:32:24 +00:00
|
|
|
padding: 0.1rem 0.5rem;
|
2023-06-01 21:35:31 +00:00
|
|
|
border: 1px solid var(--lightgray);
|
|
|
|
width: max-content;
|
|
|
|
border-radius: 5px;
|
2023-07-10 02:32:24 +00:00
|
|
|
margin-bottom: -0.5rem;
|
2023-06-01 21:35:31 +00:00
|
|
|
color: var(--darkgray);
|
|
|
|
}
|
2023-07-10 02:32:24 +00:00
|
|
|
|
|
|
|
& > pre {
|
2024-01-05 08:29:34 +00:00
|
|
|
padding: 0;
|
2023-07-10 02:32:24 +00:00
|
|
|
}
|
2023-06-01 23:05:14 +00:00
|
|
|
}
|
2023-06-01 21:35:31 +00:00
|
|
|
|
2023-06-01 23:05:14 +00:00
|
|
|
pre {
|
|
|
|
font-family: var(--codeFont);
|
2024-01-05 08:29:34 +00:00
|
|
|
padding: 0 0.5rem;
|
2023-06-01 23:05:14 +00:00
|
|
|
border-radius: 5px;
|
2023-07-04 23:48:36 +00:00
|
|
|
overflow-x: auto;
|
2023-06-01 23:05:14 +00:00
|
|
|
border: 1px solid var(--lightgray);
|
|
|
|
|
2023-07-08 21:36:02 +00:00
|
|
|
&:has(> code.mermaid) {
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
2023-06-01 23:05:14 +00:00
|
|
|
& > code {
|
|
|
|
background: none;
|
|
|
|
padding: 0;
|
2023-06-07 02:48:37 +00:00
|
|
|
font-size: 0.85rem;
|
2023-06-01 23:05:14 +00:00
|
|
|
counter-reset: line;
|
|
|
|
counter-increment: line 0;
|
|
|
|
display: grid;
|
2024-01-05 08:29:34 +00:00
|
|
|
padding: 0.5rem 0;
|
2023-06-01 23:05:14 +00:00
|
|
|
|
2023-07-10 02:32:24 +00:00
|
|
|
& [data-highlighted-chars] {
|
|
|
|
background-color: var(--highlight);
|
|
|
|
border-radius: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
& > [data-line] {
|
2023-06-01 23:05:14 +00:00
|
|
|
padding: 0 0.25rem;
|
|
|
|
box-sizing: border-box;
|
|
|
|
border-left: 3px solid transparent;
|
|
|
|
|
2023-07-10 02:32:24 +00:00
|
|
|
&[data-highlighted-line] {
|
2023-06-01 23:05:14 +00:00
|
|
|
background-color: var(--highlight);
|
|
|
|
border-left: 3px solid var(--secondary);
|
|
|
|
}
|
2023-06-01 21:35:31 +00:00
|
|
|
|
2023-06-01 23:05:14 +00:00
|
|
|
&::before {
|
|
|
|
content: counter(line);
|
|
|
|
counter-increment: line;
|
|
|
|
width: 1rem;
|
|
|
|
margin-right: 1rem;
|
|
|
|
display: inline-block;
|
|
|
|
text-align: right;
|
2023-07-10 02:32:24 +00:00
|
|
|
color: rgba(115, 138, 148, 0.6);
|
2023-06-01 21:35:31 +00:00
|
|
|
}
|
|
|
|
}
|
2023-07-10 02:32:24 +00:00
|
|
|
|
2023-07-23 00:27:41 +00:00
|
|
|
&[data-line-numbers-max-digits="2"] > [data-line]::before {
|
2023-07-10 02:32:24 +00:00
|
|
|
width: 2rem;
|
|
|
|
}
|
2023-07-23 00:27:41 +00:00
|
|
|
|
|
|
|
&[data-line-numbers-max-digits="3"] > [data-line]::before {
|
2023-07-10 02:32:24 +00:00
|
|
|
width: 3rem;
|
|
|
|
}
|
2023-06-01 21:35:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
code {
|
|
|
|
font-size: 0.9em;
|
2023-06-20 03:37:45 +00:00
|
|
|
color: var(--dark);
|
2023-06-01 21:35:31 +00:00
|
|
|
font-family: var(--codeFont);
|
|
|
|
border-radius: 5px;
|
|
|
|
padding: 0.1rem 0.2rem;
|
|
|
|
background: var(--lightgray);
|
|
|
|
}
|
|
|
|
|
2023-07-23 00:27:41 +00:00
|
|
|
tbody,
|
|
|
|
li,
|
|
|
|
p {
|
2023-07-23 18:02:45 +00:00
|
|
|
line-height: 1.6rem;
|
2023-06-01 21:35:31 +00:00
|
|
|
}
|
|
|
|
|
Squashed commit of the following:
commit 76f2664277e07a7d1b011fac236840c6e8e69fdd
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Nov 13 22:57:05 2023 -0800
versioning: bump to v4.1.1
commit 74777118a7fd19e4a296706c2a4b5fdca546c4fa
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Nov 13 22:51:40 2023 -0800
feat: header and full-page transcludes (closes #557)
commit 8223465bda1e7b6085a9752ead806be85ff58b57
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Nov 12 14:33:19 2023 -0800
fix: make :has img selector direct
commit cf6ab9e9333b5f76cb9e06f6687f2b4f8fbe91bd
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Nov 12 14:27:53 2023 -0800
feat: option to specify npx quartz sync message (closes #583)
commit 74c63e448e28d9766f7ec631aac2645384b0975f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 11 21:13:10 2023 -0800
fix(style): dont internal-link highlight when image (closes #581)
commit 43d638a6de5a8a11c1a719c596b07ea957c7329a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 11 21:06:37 2023 -0800
perf: compute mapping of folder name to file data for faster breadcrumbs
commit d1551872ffeb08c34f59dc2042b43562c499b620
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 11 20:46:57 2023 -0800
fix: check if popover exists after fetching and before inserting
commit 275bea3051a6f2a7da65fef6dccc7cc52a0a15e3
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 11 20:46:29 2023 -0800
style + cfg: resolve breadcrumb titles by default and change arrow character
commit bc02791734aa969ff388c5f7068e402bd0e3862a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 11 20:27:51 2023 -0800
fix: .date.getTime() based sort
commit bf603c49c2edaa5fcbe42479421a336dcacf92b9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 11 12:08:54 2023 -0800
fix: sort rss feed by date
commit f67356c3d2d609a8a6b674ac650fc41d6dfb4cc7
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 11 12:02:34 2023 -0800
lint: format
commit 5d666d1860be721c573ebd24cb82d210a8567bbf
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 11 11:59:05 2023 -0800
fix: normalize relative urls (closes #569)
commit 22b7cf135e8b031550553947c48aa0dc00b3abbd
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 11 11:41:44 2023 -0800
types: cast in jsx.tsx to avoid @ts-ignore
commit 50a87d0d8673dbce6ebafef83f71f197df9bc196
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 11 11:39:56 2023 -0800
style: scrollable tables
commit 134b6ed582d6ce9d8fb8f1e58d2bae89c07c2d5d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 11 10:11:31 2023 -0800
fix: anchors links shouldnt cause reload (closes #574)
commit 99e8f5944fdd83110fbac4c9edc37cdcaf2c25f7
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 11 09:56:30 2023 -0800
fix: trailing slash aliases (closes #577)
commit e9f4e28a2d3e0b529586ddb5a50680a6e66412f3
Author: Yes365 <ninfovores365@gmail.com>
Date: Fri Nov 10 11:44:16 2023 +0800
fix: adapt vercel cleanurls (#487)
Co-authored-by: Harrison <Harrison@fanruan.com>
commit 2a6b9a9ea01e8e6a80fe51d01dc865595b67a612
Author: Niklas Schröder <33390735+lnschroeder@users.noreply.github.com>
Date: Tue Nov 7 18:16:48 2023 +0100
docs: fix property name for ToC toggle (#573)
commit e806c30fa1a7ab941969da01c05ac4adeeeeeb9e
Author: Mau Camargo <52770775+camargomau@users.noreply.github.com>
Date: Sun Nov 5 13:30:10 2023 -0600
docs: Add Mau Camargo's Notkesto to showcase (#570)
commit aac7b7e97d32580f6a9bd974b8a9068e5218ab9c
Author: Anson Yu <ansonyu24@gmail.com>
Date: Sat Nov 4 17:20:16 2023 -0400
docs: Update making plugins.md (#567)
:)
commit 101e9946bddd053a42d269e19e35feae46fe4305
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 4 12:11:42 2023 -0700
feat: add collapseByDefault option to TableOfContents (closes #566)
commit a62a97c7abcabea4509760e5af957eed66fa0755
Author: Emil Rofors <emirof@gmail.com>
Date: Fri Nov 3 16:40:43 2023 -0700
docs: add GitLab pages CI (#549)
* add .gitlab-ci.yml
* move GitLab CI to hosting.md
* remove extra folder name
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* remove test from gitlab instructions
* run prettier
---------
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
commit 923b72fb67cf3ee9842df630feaed72644470074
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Nov 1 10:03:45 2023 -0700
feat: auto-tag releases (closes #560)
commit 05a1c34c6f6973eebcbcc50f50b64c2a0d62e8fa
Author: Florence <59734957+Pydes-boop@users.noreply.github.com>
Date: Wed Nov 1 17:57:32 2023 +0100
docs: remove dead link (#561)
commit 06ccb89cd7d5a3cade1eb5c2155b9b06e5395b0b
Author: Blue Rose <134471273+bluerosegarden@users.noreply.github.com>
Date: Tue Oct 31 15:53:49 2023 -0500
docs: clarifications about globs (#559)
* Add note about fast-glob
* Add warning about non-markdown files
Also added a glob pattern to filter out all non-markdown files outside of a specified folder.
* run npm format
---------
Co-authored-by: wych <wychwitchcraft@gmail.com>
commit 01fc8e46409ee0fb7311f212726113d35aced82d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Oct 25 09:40:43 2023 -0700
fix: disable semi-broken flexsearch cache
commit 7c01e8dde06abb1a80118b5eddce3e238830ede0
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Oct 22 09:54:12 2023 -0700
feat: openLinksInNewTab option for link transformer
commit b7ae7a99dbd40ffc852642202031b29e98304c1f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Oct 21 21:12:11 2023 -0700
fix: styling for nested popover tag in page list
commit 60b3bc34cb07b5bec87cbd667ea9f804ff14cf3c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Oct 21 21:05:46 2023 -0700
fix: catch html to jsx errors (closes #547)
commit dc834015d02adcc7edb119fb5224a2a86c614142
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Oct 21 20:27:49 2023 -0700
fix(style): tag float orientation for long tags on page listing
commit 1e357ef5ac85ab55ad19f832513f5ca7a7e54a52
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Oct 21 20:09:49 2023 -0700
fix(style): prioritize base and custom scss over component css
commit 54e722a55d58f4bab86184ffc970159628fa6967
Author: freenandes <42041153+freenandes@users.noreply.github.com>
Date: Wed Oct 18 03:43:41 2023 +0100
docs: Update showcase.md (#540)
changed URL
commit 86d16b12a224d125ba469f91e885eedf97a9dfe8
Author: Thomas <65691606+NotTacoz@users.noreply.github.com>
Date: Wed Oct 18 10:43:20 2023 +0800
docs(explorer): Fixed small typo with extra } in explorer.md (#541)
commit ed971800c0a683f7096922fee0a6901250e239ae
Author: freenandes <42041153+freenandes@users.noreply.github.com>
Date: Tue Oct 17 16:58:28 2023 +0100
Update showcase.md (#539)
commit af9ddadc4de513f2bbaf75f70079970215ed6406
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Oct 14 13:45:56 2023 -0700
fix(css): import base from custom instead of the other way around (#536)
commit da0a062c05db18d8c1521661ac0ab735abff3c3f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Oct 8 09:59:18 2023 -0700
feat: docker support for v4 (closes #530)
commit f66d2c23aca2944abcb1a6e3d83977a9b2edf37a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Oct 8 09:15:06 2023 -0700
fix: ctrl+click with spa enabled
commit 3268d45a20fbead24f3a111064364574408aa926
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Oct 5 13:48:52 2023 -0700
css: make article relative
commit afa163f2fe9c52d4b3bf1a2e4d48887916b67c24
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Oct 5 13:30:06 2023 -0700
style: styling for codeblocks without langs (#527)
commit cec4877adb7e89f4d4e0a442e82655e0d35dbe16
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Thu Oct 5 18:19:56 2023 +0200
fix(breadcrumbs): problem with folder whitespace (#522)
* fix(breadcrumbs): problem with folder whitespace
use slugs for folder hrefs so folder paths get resolved properly
* feat: only use `slug` for constructing crumbs
* fix: remove capitalization
commit cf0c090e3c5af86097e2460b00adc52ef8555e9d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Oct 4 09:23:56 2023 -0700
specify minimum npm version
commit c8f5dbbad3a85749d8a74f5e3e3b222fe547d5d6
Author: Luca Salvarani <lucasalvarani99@gmail.com>
Date: Mon Oct 2 02:20:55 2023 +0200
fix: Fix `Backlinks` not applying the display class (#519)
* fix: Fix `Backlinks` not applying the display class
Fix #518
* fix: Apply `displayClass` to all layout components
* refactor: Use same style
* fix: Remove `undefined` class using coalescing operator
commit ab5efac75fb0f20afe74bef33a2cf7e9ba0ba40f
Author: bfahrenfort <59982409+bfahrenfort@users.noreply.github.com>
Date: Sun Oct 1 11:47:22 2023 -0500
Fix: RSS title escaping (#521)
* Fix title escaping
* npm run format
commit 2f99339dcf93ef50b766263297785a32d9c35250
Author: Hrishikesh Barman <geekodour@users.noreply.github.com>
Date: Sat Sep 30 00:05:26 2023 +0530
feat: add transformations for latex in oxhugofm (#510)
ox-hugo currently supports the following syntax for latex equations:
- https://orgmode.org/manual/LaTeX-fragments.html
- https://ox-hugo.scripter.co/doc/equations
This syntax is supported by mathjax as is mentioned in the ox-hugo documentation.
But quartz uses remark-math which has some issues with the \( \) syntax.
See https://github.com/remarkjs/remark-math/issues/39
This change adds few more transformations to the OxHugoFlavouredMarkdown
plugin, which makes a best effort conversion of this syntax into what
the Quartz Latex transformer plugin supports.
With these changes, the generated files show latex formatting with
default quartz configuration.
Sidenote on `\_` escape by ox-hugo:
ox-hugo escapes, _ using \_, we match against it after we transform
equations into what quartz supports($$ and $).
This could be achieved using lookaround like regex as follows
```js
(?<=(\$|\$\$)[\s\S]*) -> Positive lookbehind for $ or $$
\\_ -> Matches \_
(?=[\s\S]*(?:\1)) Positive lookahead for $ or $$ if matched
const escapedUnderscoreRegex = new RegExp(/(?<=(\$|\$\$)[\s\S]*)\\_(?=[\s\S]*(?:\1))/, "g")
````
But since lookahead/behind can slow things down on large files, we just
look up all equations with $ and $$ delimiters and then try replacing \_
commit 5232d09af520e12bc421cf19ae5d231a7e36cd4d
Author: ArtfulAzeria <146041757+ArtfulAzeria@users.noreply.github.com>
Date: Fri Sep 29 20:17:48 2023 +0200
feat: Better and more responsive tag behavior (#515)
* fix(explorer): default sortFn implementation (#511)
* fix: use `numeric` + `base` for localeCompare
* docs(explorer): update default sortFn
* fix: better and more responsive tag behavior
* tags css moved to TagList.tsx
* used npm run format
* merged tag declarations
---------
Co-authored-by: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
commit 0138085c16856d20d1d2cad5670f1f61c8e500d1
Author: Catchears <57631841+Catchears@users.noreply.github.com>
Date: Fri Sep 29 17:19:10 2023 +0200
docs: fix typo in breadcrumbs documentation (#513)
commit 0b61f6fbfd20556102ce23444ae7eb9348472952
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Fri Sep 29 10:26:15 2023 +0200
feat: implement breadcrumb component (#508)
* feat: implement breadcrumbs
* style: fix styling, move breadcrumbs to top
* refactor: move `capitalize to `lang.ts``
* refactor: clean breadcrumb generation
* feat: add options to breadcrumbs
* feat: implement `resolveFrontmatterTitle`
* feat: add `hideOnRoot` option
* feat(consistency): capitalize every crumb
* style: add `flex-wrap` to parent container
* refactor: clean `Breadcrumbs.tsx`
* feat(accessibility): use `nav`, add aria label
* style: improve look in popovers by adding margin
* docs: write docs for breadcrumb component
* refactor: collapse `if` condition for hideOnRoot
* chore: add todo for perf optimization
* docs: update introduction
commit d4c122646ccd6fc989b4436e16b2dffdc931dee6
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Thu Sep 28 17:39:44 2023 +0200
fix(explorer): default sortFn implementation (#511)
* fix: use `numeric` + `base` for localeCompare
* docs(explorer): update default sortFn
commit d22c3c107a9c6422ef251bd1076ddd9c4fe47a42
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Sep 25 18:15:55 2023 -0700
fix: coerce title to string
commit 697bffdb8b1bef143823f77a118de90286fe325a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Sep 24 14:47:30 2023 -0700
fix: treat the 0 time as invalid too
commit ea5742c328c97a20f7add4994aa7e443fc6f7f39
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Sep 24 10:31:47 2023 -0700
fix: mermaid copy source position
commit 95eec5b49db53801e23b4b47778cb0b6153db83f
Author: Chad Lee <git@chadly.net>
Date: Sun Sep 24 12:27:42 2023 -0500
add site to showcase (#504)
commit c5b9137f12ea372d9196e41ffffc91eee7ad772e
Author: Vince Imbat <96913392+vinceimbat@users.noreply.github.com>
Date: Sat Sep 23 10:39:02 2023 +0800
docs: Adds Vince Imbat to showcase (#501)
commit 13c867322629f5ee59c54b95679585b370e1442b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Sep 22 10:04:37 2023 -0700
feat: add warning for invalid date format
commit a897cc1f531844a2e4da36f8712b7aedec0c5824
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Sep 22 09:43:34 2023 -0700
feat: add warning for missing home page
commit d93599364a3dd0b46068826cf14ed7b25aa59fc3
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Fri Sep 22 17:20:19 2023 +0200
docs(showcase): fix pull request redirect link (#500)
commit fa69c2a5656254251b74dbd5545bef000f67af2f
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Thu Sep 21 19:35:11 2023 +0200
fix(explorer): increase consistency, explicitly use font-family (#496)
* fix(explorer): display name for folders without `index` file
* docs(explorer): add section for folder display names
* docs(explorer): fix broken wikilink
* fix(consistency): explicitly set font + label/link fix
Use consistent styling between folders with `folderClickBehavior: "link"` and `"collapse`
* Update quartz/components/styles/explorer.scss
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* Update quartz/components/styles/explorer.scss
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
---------
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
commit 8eb1554b13532a2441b41d2018800c56cfa84ce9
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Thu Sep 21 18:54:33 2023 +0200
fix(explorer): display names for folders without frontmatter (#494)
* fix(explorer): display name for folders without `index` file
* docs(explorer): add section for folder display names
commit dcdeae4e7bd527945b887ca347b3b4408c03055b
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Thu Sep 21 18:53:19 2023 +0200
docs(explorer): update default config + new example (#493)
commit 48452231d5fcd14ef218928bde9ae7e5bc745f4a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Sep 20 16:09:18 2023 -0700
perf: memoize filetree computation (#490)
* perf: memoize filetree computation
* format
* var -> let
commit 16d33fb77193710bede887d6a177d2144b78fb67
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Sep 20 16:08:54 2023 -0700
feat: display name for folders, expand explorer a little bit (#489)
* feat: display name for folders, expand explorer a little bit
* update docs
commit b029eeadabe0877df6ec11443c68743f1494bc40
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Wed Sep 20 22:55:29 2023 +0200
feat(explorer): improve accessibility and consistency (+ bug fix) (#488)
* feat(consistency): use `all: unset` on button
* style: improve accessibility and consistency for explorer
* fix: localStorage bug with folder name changes
* chore: bump quartz version
commit 6a9e6352e88aa9ff18e5b33cf2de442a250bd960
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Sep 20 13:52:45 2023 -0700
Revert "feat: Making Quartz available offline by making it a PWA (#465)"
This reverts commit d6301fae90d9f922618bf0f413e273156731eef7.
commit 70e029d151ccbb9aeab30a0f811b9f529b7f8818
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Sep 20 13:52:29 2023 -0700
Revert "docs: wording changes for offline support"
This reverts commit 52a172d1a4911080444ff797183e29ba8175741e.
commit 0bad3ce7990aa4ef417128f9d74c2947fe5117fd
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Sep 20 11:58:52 2023 -0700
docs: document enableToc
commit 52a172d1a4911080444ff797183e29ba8175741e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Sep 20 11:40:36 2023 -0700
docs: wording changes for offline support
commit d6301fae90d9f922618bf0f413e273156731eef7
Author: Adam Brangenberg <adambrangenberg@proton.me>
Date: Wed Sep 20 20:38:13 2023 +0200
feat: Making Quartz available offline by making it a PWA (#465)
* Adding PWA and chaching for offline aviability
* renamed workbox config to fit Quartz' scheme
* Documenting new configuration
* Added missig umami documentation
* Fixed formatting so the build passes, thank you prettier :)
* specified caching strategies to improve performance
* formatting...
* fixing "404 manifest.json not found" on subdirectories by adding a / to manifestpath
* turning it into a plugin
* Removed Workbox-cli and updated @types/node
* Added Serviceworkercode to offline.ts
* formatting
* Removing workbox from docs
* applied suggestions
* Removed path.join for sw path
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* Removed path.join for manifest path
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* Removing path module import
* Added absolute path to manifests start_url and manifest "import" using baseUrl
* Adding protocol to baseurl
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* Adding protocol to start_url too then
* formatting...
* Adding fallback page
* Documenting offline plugin
* formatting...
* merge suggestion
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* merge suggestion
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* merge suggestion
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* merge suggestion
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* merge suggestion
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* merge suggestion
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* merge suggestion
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* merge suggestion
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* merge suggestion
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* merge suggestion
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* merge suggestion
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* merge suggestion
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* formatting...
* Fixing manifest path, all these nits hiding the actual issues .-.
* Offline fallback page through plugins, most things taken from 404 Plugin
* adding Offline Plugin to config
* formatting...
* Turned offline off as default and removed offline.md
---------
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
commit 27a6087dd5a25dd5031b86b9917adde6ef4b211a
Author: rwutscher <richard.wutscher@gmail.com>
Date: Tue Sep 19 21:26:30 2023 +0200
fix: tag regex no longer includes purely numerical 'tags' (#485)
* fix: tag regex no longer includes purely numerical 'tags'
* fix: formatting
* fix: use guard in findAndReplace() instead of expanding the regex
commit 1bf7e3d8b3966590ebfa3418d6fb2ce6a520c846
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Sep 19 10:22:39 2023 -0700
fix(nit): make defaultOptions on explorer not a function
commit cc31a40b0cb53cba7f51187cb6d68076c3f54c0f
Author: David Fischer <david@konst.fish>
Date: Tue Sep 19 18:25:51 2023 +0200
feat: support changes in system theme (#484)
* feat: support changes in system theme
* fix: run prettier
* fix: add content/.gitkeep
commit 0d3cf2922618774fc397dca8cb92fcf76fb0db02
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Mon Sep 18 23:32:00 2023 +0200
docs: fix explorer example (#483)
commit 6a2e0b3ad3a928247a03a76817d239e61cce0fe0
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Sun Sep 17 22:04:44 2023 +0200
fix: bad visibility for last explorer item (#478)
* fix: bad visibility for last explorer item
* feat(explorer): add pseudo element for observer
commit e67f409ec1fa36779f59a635eb3e16408275575d
Merge: af41f34b 4afb099b
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Sun Sep 17 21:36:04 2023 +0200
Merge pull request #479 from benschlegel/explorer-config
feat(explorer): add config for custom sort/map/filter functions
commit 4afb099bf3ec96e5d795e871ecb19575271c0714
Author: Ben Schlegel <ben5.schlegel@gmail.com>
Date: Sun Sep 17 21:32:23 2023 +0200
docs: fix examples
commit 6914d4b40caff901ccf3e9d9113c15129a68a80c
Author: Ben Schlegel <ben5.schlegel@gmail.com>
Date: Sun Sep 17 21:20:09 2023 +0200
docs: fix intra page links
commit af41f34bfd4126756e594ce4d6a46d4f4907754b
Author: Christian Gill <gillchristiang@gmail.com>
Date: Sun Sep 17 20:02:00 2023 +0200
fix(slug): Handle question mark (#481)
commit 7ac772fca8bf26c1023f905cdb77e6972a0d4b61
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Sun Sep 17 19:29:20 2023 +0200
fix: darkmode scroll bars (#480)
commit 5cc9253c41fda87ba473df7023567ba66ce3c32b
Author: Ben Schlegel <ben5.schlegel@gmail.com>
Date: Sun Sep 17 16:41:23 2023 +0200
docs(explorer): write docs for new features
commit 94a04ab1c9fd099c808f3f4e6633722e0d13ac85
Author: Ben Schlegel <ben5.schlegel@gmail.com>
Date: Sun Sep 17 15:51:08 2023 +0200
fix(explorer): filter function in `ExplorerNode`
commit 9358f73f1c939ce459d7835457527e35e1bdf857
Author: Ben Schlegel <ben5.schlegel@gmail.com>
Date: Sun Sep 17 12:41:06 2023 +0200
fix: display name for file nodes
commit f7029012dfb73ce04405bfe44e4e4d984818bf5f
Author: Ben Schlegel <ben5.schlegel@gmail.com>
Date: Sat Sep 16 21:58:38 2023 +0200
feat: black magic
add config for `order` array, which determines the order in which all passed config functions for explorer will get executed in.
functions will now dynamically be called on `fileTree` via array accessor (e.g. fileTree["sort"].call(...)) with corresponding function from options being passed to call)
commit fea352849c6972da4b3b8935eb2e86f6cefc76ed
Author: Ben Schlegel <ben5.schlegel@gmail.com>
Date: Sat Sep 16 19:45:21 2023 +0200
fix: create deep copy of file passed into tree
commit 3d8c470c0d298f720614318fb4c14575e72bbd2e
Author: Ben Schlegel <ben5.schlegel@gmail.com>
Date: Sat Sep 16 19:35:27 2023 +0200
feat(explorer): implement `map` fn argument
Add a function for mapping over all FileNodes as an option for `Explorer`
commit 31d16fbd2c82380af586e458b2c1ff29b90b53ae
Author: Ben Schlegel <ben5.schlegel@gmail.com>
Date: Sat Sep 16 19:18:59 2023 +0200
feat(explorer): integrate filter option
commit 036a33f70bcabc17469956740847796a5f13b9ab
Author: Ben Schlegel <ben5.schlegel@gmail.com>
Date: Sat Sep 16 17:47:44 2023 +0200
fix: use correct import for `QuartzPluginData`
commit 58aea1cb0791e18cd092d88de5374431eba7f1d3
Author: Ben Schlegel <ben5.schlegel@gmail.com>
Date: Sat Sep 16 17:28:58 2023 +0200
feat: implement filter function for explorer
commit c7d3474ba8cb49ab0f1978216d80b08ec2c8e5d7
Author: Ben Schlegel <ben5.schlegel@gmail.com>
Date: Sat Sep 16 12:40:19 2023 +0200
feat(explorer): add config to support custom sort fn
commit 422ba5c36586c7ebc31141da8bb539b4157aa01a
Author: Yuto Nagata <38714187+mouse484@users.noreply.github.com>
Date: Sat Sep 16 11:17:20 2023 +0900
fix: umami analytics date attribute (#477)
commit 9ae6343dd0104d44e6bdf083572f987b70ba50c9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Sep 15 10:33:38 2023 -0700
Revert "fix: use git dates by default, @napi/git is fast enough"
This reverts commit 5dcb7e83fc3c8383ebbc84aac4553df4ad3ef59a.
commit 5dcb7e83fc3c8383ebbc84aac4553df4ad3ef59a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Sep 15 09:46:06 2023 -0700
fix: use git dates by default, @napi/git is fast enough
commit 91f9ae2d71d5c28ba7d2182eed5a9f77da1fbe8d
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Fri Sep 15 18:39:16 2023 +0200
feat: implement file explorer component (closes #201) (#452)
* feat: add basic explorer structure„
* feat: integrate new component/plugin
* feat: add basic explorer structure
* feat: add sort to FileNodes
* style: improve style for explorer
* refactor: remove unused explorer plugin
* refactor: clean explorer structure, fix base (toc)
* refactor: clean css, respect displayClass
* style: add styling to chevron
* refactor: clean up debug statements
* refactor: remove unused import
* fix: clicking folder icon sometimes turns invisible
* refactor: clean css
* feat(explorer): add config for title
* feat: add config for folder click behavior
* fix: `no-pointer` not being set for all elements
new approach, have one `no-pointer` class, that removes pointer events and one `clickable` class on the svg and button (everything that can normally be clicked). then, find all children with `clickable` and toggle `no-pointer`
* fix: bug where nested folders got incorrect height
this fixes the bug where nested folders weren't calculating their total height correctly. done by adding class to main container of all children and calculating total
* feat: introduce `folderDefaultState` config
* feat: store depth for explorer nodes
* feat: implement option for collapsed state + bug fixes
folderBehavior: "link" still has bad styling, but major bugs with pointers fixed (not clean yet, but working)
* fix: default folder icon rotation
* fix: hitbox problem with folder links, fix style
* fix: redirect url for nested folders
* fix: inconsistent behavior with 'collapseFolders' opt
* chore: add comments to `ExplorerNode`
* feat: save explorer state to local storage (not clean)
* feat: rework `getFolders()`, fix localstorage read + write
* feat: set folder state from localStorage
needs serious refactoring but functional (except folder icon orientation)
* fix: folder icon orientation after local storage
* feat: add config for `useSavedState`
* refactor: clean `explorer.inline.ts`
remove unused functions, comments, unused code, add types to EventHandler
* refactor: clean explorer
merge `isSvg` paths, remove console logs
* refactor: add documentation, remove unused funcs
* feat: rework folder collapse logic
use grids instead of jank scuffed solution with calculating total heights
* refactor: remove depth arg from insert
* feat: restore collapse functionality to clicks
allow folder icon + folder label to collapse folders again
* refactor: remove `pointer-event` jank
* feat: improve svg viewbox + remove unused props
* feat: use css selector to toggle icon
rework folder icon to work purely with css instead of JS manipulation
* refactor: remove unused cfg
* feat: move TOC to right sidebar
* refactor: clean css
* style: fix overflow + overflow margin
* fix: use `resolveRelative` to resolve file paths
* fix: `defaultFolderState` config option
* refactor: rename import, rename `folderLi` + ul
* fix: use `QuartzPluginData` type
* docs: add explorer documentation
commit 14cbbdb8a2f69ebc51cd53a82b50206c543778b0
Author: Oskar Manhart <52569953+oskardotglobal@users.noreply.github.com>
Date: Thu Sep 14 05:55:59 2023 +0200
feat: display tag in graph view (#466)
* feat: tags in graph view
* fix: revert changing graph forces
* fix: run prettier
commit cce389c81d262d1d2a2bd8140c879efd68e3c6dd
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Sep 13 11:28:53 2023 -0700
feat: note transclusion (#475)
* basic transclude
* feat: note transclusion
commit 4461748a85b8795651d0c02451368dffff607938
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Sep 13 09:43:14 2023 -0700
fix dont show html in search when rssFullHtml is true (closes #474)
commit 6ecdcb5e24f2783e6fa73de69e848f0f319c4fc4
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Sep 12 22:55:50 2023 -0700
feat: resolve block references in obsidian markdown
commit e3b879741b6d32f56e1d1bfd0bac57f0d68c1113
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Sep 12 21:44:03 2023 -0700
feat: rich html rss (closes #460)
commit 60a3c543398aed8caf44b411a4dc10e8d1e26fcc
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Sep 12 21:29:57 2023 -0700
fix: 404 page styling for nested pages (closes #458)
commit 71d81bde1d12aa386ec70be31cc86a37a7426bce
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Sep 12 19:18:44 2023 -0700
feat: rss limit (closes #459)
commit a19df64be8423063c2484ab35300fb0bef324a14
Author: hcplantern <38579760+HCPlantern@users.noreply.github.com>
Date: Tue Sep 12 14:00:21 2023 +0800
fix: callout parsing (#469)
commit 4e23e6724493a8d112c6ff22e14cf4aabd5e9af1
Author: Oskar Manhart <52569953+oskardotglobal@users.noreply.github.com>
Date: Mon Sep 11 08:11:42 2023 +0200
feat: plugin for remark-breaks (#467)
* feat: plugin for remark-breaks
* fix: update package-lock.json
* fix: styling
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* Update linebreaks.ts
* Update index.ts
---------
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
commit a66c239797e3e80e2dc8b7059eee8c51bcf4ca8f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Sep 10 23:07:17 2023 -0700
ci: print bundleInfo
commit 53f1c88738550eb2646cc0a03469dc230839a258
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Sep 8 09:29:57 2023 -0700
fix: more lenient date parsing for templates
commit 06df00b18621f08a211bec33f566ecb7ef4ec22e
Author: Stefano Cecere <stefano.cecere@krur.com>
Date: Thu Sep 7 17:13:41 2023 +0200
typo (it's draft, not drafts) (#456)
commit 2525bfbab5553f970997ea3c60af180cbef1fdd2
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Sep 6 22:24:15 2023 -0700
fix: links to index not showing in graph (closes #450)
commit 828aa71fe34aae675a7552957e8a062c82f595f6
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Sep 6 21:47:59 2023 -0700
fix: escape encoding for titles in rss
commit ef1ead31dccd05f4275405b843ff47fa28a5116d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Sep 6 21:31:01 2023 -0700
fix: encodeuri for slugs in rss
commit 989bee597987bba2aeae4266cb32ac8e899f638c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Sep 6 21:08:08 2023 -0700
docs: correct field for ignorePatterns
commit 8d6029b7b844044d06fe17de89db6881954a8fec
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Sep 6 21:02:21 2023 -0700
feat: 404 page emitter
commit 2d52eba4133293a27f6df98c252785ba4ddee575
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Sep 6 20:25:38 2023 -0700
fix: dont transform external links
commit 6ef4246cf186414d1b8ee868cfa9d24314f0bc0a
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Mon Sep 4 07:36:30 2023 +0200
docs: update `full-text-search.md` (#447)
commit 616a7f148a283b2fd7c5204c60ddf1b08f42d125
Author: Dr Kim Foale <kim@gfsc.studio>
Date: Mon Sep 4 05:29:58 2023 +0100
docs: Make it clearer that wikilinks go to paths not page titles (#448)
commit e8a04efaf1b82560cbcf7694ac6c7dda1c82612f
Author: Adam Brangenberg <adambrangenberg@proton.me>
Date: Mon Sep 4 06:28:57 2023 +0200
feat(analytics): Support for Umami (#449)
commit 7e42be8e46501c752dda9bd174fb93ea9dccec22
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Sun Sep 3 18:32:46 2023 +0200
feat(search): add arrow key navigation (#442)
* feat(search): add arrow navigation
* chore: format
* refactor: simplify arrow navigation
* chore: remove comment
* feat: rework arrow navigation to work without state
* feat: make pressing enter work with arrow navigation
* fix: remove unused css class
* chore: correct comment
* refactor(search): use optional chaining
commit 8c354f6261dda6d9761f594002db53c9d7a8e8e2
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Sun Sep 3 18:06:05 2023 +0200
fix: clipboard button visible in search (#445)
commit 505673acd71e6b023abae19c706a736b257cff2a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Sep 2 18:07:26 2023 -0700
feat: pluralize things in lists
commit 23f43045c49f17fe5ace480f7026855acf2a30b8
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Fri Sep 1 23:12:32 2023 +0200
fix(search): matches getting highlighted in title (#440)
commit 90dac31216b5d3f59e65ec5778e21a308a744e11
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Fri Sep 1 19:09:58 2023 +0200
feat: Implement search for tags (#436)
* Quartz sync: Aug 29, 2023, 10:17 PM
* style: add basic style to tags in search
* feat: add SearchType + tags to search preview
* feat: support multiple matches
* style(search): add style to matching tags
* feat(search): add content to preview for tag search
* fix: only display tags on tag search
* feat: support basic + tag search
* refactor: extract common `fillDocument`, format
* feat: add hotkey to search for tags
* chore: remove logs
* fix: dont render empty `<ul>` if tags not present
* fix(search-tag): make case insensitive
* refactor: clean `hideSearch` and `showSearch`
* feat: trim content similar to `description.ts`
* fix(search-tag): hotkey for windows
* perf: re-use main index for tag search
commit 2d6dc176c3e1fbb520a5da1beb60bbb1d8e948ba
Author: Pelayo Arbués <gonzalezpelayo@gmail.com>
Date: Thu Aug 31 21:12:06 2023 +0200
Adds Pelayo Arbues to showcase (#435)
commit b213ba45e2e706332e057b131adc946f882f090b
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Thu Aug 31 20:55:04 2023 +0200
fix: regex for matching highlights (closes #437) (#438)
* fix: regex for matching highlights
* fix: regex for empty highlights
commit 5fa6fc97899c905b6fbc14fa1d24334f3e68fa77
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 29 10:37:00 2023 -0700
fix: aliasredirects not using full path, add permalink support
commit 1cc09ef76db129fb3670e95560312adeefab913c
Author: Jeffrey Fabian <jeffrey.fabian61@gmail.com>
Date: Tue Aug 29 13:14:54 2023 -0400
feat: support kebab-case and nested tags in Obsidian-flavored Markdown tag-in-content parsing (#425)
* enhancement: support kebab-case and nested tags in ofm transformer
* update regex/capture groups to allow for (arbitrarily) nested values and tags of only -/_
* Update quartz/plugins/transformers/ofm.ts
---------
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
commit c35cd422c65a58f1069302aad0cf9eef7f93d987
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Mon Aug 28 19:00:49 2023 +0200
fix: correct graph labels for `index.md` nodes (#431)
commit 082fdf2e8098ef6bcb46a7dfabf8c6b9fd096346
Author: Jeremy Press <jeremypress1@gmail.com>
Date: Sun Aug 27 20:57:19 2023 -0700
Fix typo :) (#430)
commit b6b1dabde0f63ca0ae743aa7f4266ca892d7b5e5
Author: Jeremy Press <jeremypress1@gmail.com>
Date: Sun Aug 27 17:39:42 2023 -0700
feat: support configurable ws port and remote development (#429)
Co-authored-by: Jeremy Press <jeremy@replit.com>
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
commit 4b89202f7e834cf8b5c5aa39e8f1778706492085
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Mon Aug 28 00:59:51 2023 +0200
cleanup: rework cli to allow invoking create and build outside of cli (#428)
* refactor: move `bootstrap-cli.mjs` tp cli
also update reference in docs
* refactor(cli): move build handler to `cli-functions`
* refactor(cli): move create to handler + helpers
* refactor(cli): extract arg definitions
* refactor: rename handlers and helpers
* refactor(cli): move update, await handlers
* refactor(cli): create constants, migrate to helpers
* refactor(cli): migrate `restore`
* refactor(cli): migrate `sync`
* format
* refactor(cli): remove old imports/functions
* refactor(cli): remove unused imports + format
* chore: remove old log statement
* fix: fix imports, clean duplicate code
* fix: relative import
* fix: simplified cacheFile path
* fix: update cacheFile import path
* refactor: move bootstrap-cli to quartz
* format
* revert: revert path to bootstrap-cli
* ci: re-run
* ci: fix execution permission
commit 52ca312f41ee6da5202cd9632d8501340ada3a67
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 27 12:27:42 2023 -0700
fix: slugify tag on page before adding (closes #411)
commit c91e62c376d481534d89084e5c04846878dff6d3
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Sun Aug 27 02:19:45 2023 +0200
Fix search bar after navigate (#424)
commit ad4145fb10dbf32d8f99e1de555339dba0979f72
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Sat Aug 26 22:21:44 2023 +0200
feat: support CLI arguments for `npx quartz create` (#421)
* feat(cli): add new args for content + link resolve
* feat(cli): validate cmd args
* feat(cli): add chalk + error code to errors
* feat(cli): support for setup/link via args
* refactor(cli): use yargs choices instead of manual
Scrap manual check if arguments are valid, use yargs "choices" field instead.
* feat(cli): add in-dir argument+ handle errors
add new "in-directory" argument, used if "setup" is "copy" or "symlink" to determine source. add error handling for invalid permutations of arguments or non existent path
* feat(cli): dynamically use cli or provided args
use "in-directory" arg as `originalFolder` if available, otherwise get it from manual cli process
* run format
* fix: use process.exit instead of return
* refactor: split CommonArgv and CreateArgv
* refactor(cli): rename create args, use ${} syntax
* fix(cli): fix link resolution strategy arg
* format
* feat(consistency): allow partial cmd args
commit 74c3ebb7bd7ef126246f8ea03565db73cd5e7f38
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 26 10:48:34 2023 -0700
style: fix mulitline callout styling
commit e3265f841637de197e5cf4a5471372b5178f1e4d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 26 10:42:55 2023 -0700
docs: simplify oxhugo page
commit bc543f81d9ada5e61cb9690834a5f83c02997d63
Author: Hrishikesh Barman <geekodour@users.noreply.github.com>
Date: Sat Aug 26 11:22:23 2023 +0530
feat(plugins): add OxHugoFlavouredMarkdown (#419)
* feat(plugins): add OxHugoFlavouredMarkdown
ox-hugo is an org exporter backend that exports org files to
hugo-compatible markdown in an opinionated way. This plugin adds some
tweaks to the generated markdown to make it compatible with quartz but
the list of changes applied it is not extensive.
In the future however, we could leapfrog ox-hugo altogether and
create a quartz site directly out of org-roam files. That way we won't
have to do all the ritual dancing that this plugin has to perform.
See https://github.com/k2052/org-to-markdown
* fix: add toml to remarkFrontmatter configuration
* docs: add docs for OxHugoFlavouredMarkdown
* fixup! docs: add docs for OxHugoFlavouredMarkdown
commit 5c6d1e27baef74a42cc292276c5832b010a38fd5
Author: Hrishikesh Barman <geekodour@users.noreply.github.com>
Date: Fri Aug 25 22:55:46 2023 +0530
feat(plugins): add toml support for frontmatter (#418)
* feat(plugins): add toml support for frontmatter
Currently frontmatter is expected to be yaml, with delimiter set to
"---". This might not always be the case, for example ox-hugo(a hugo
exporter for org-mode files) exports in toml format with the delimiter
set to "+++" by default.
With this change, the users will be able use frontmatter plugin to
support this toml frontmatter format.
Example usage: `Plugin.FrontMatter({delims: "+++", language: 'toml'})`
- [0] https://ox-hugo.scripter.co/doc/org-meta-data-to-hugo-front-matter/
* fixup! feat(plugins): add toml support for frontmatter
commit 340e3ef5116cd99c8ddfdbb3d9e0bbd914e07825
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Fri Aug 25 18:03:49 2023 +0200
feat(consistency): Add `.obsidian` to ignorePatterns (#420)
commit 953ef29f4e238ef9ae186ab79eeec1bf4f3921a6
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 24 12:31:15 2023 -0700
format, ensure ci runs on prs
commit 94ce0883e7fbf38252377af2f144c971a2ff591b
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Thu Aug 24 21:28:06 2023 +0200
style: integrate tertiary color to text-select (#413)
commit 8cf7280614f8c1f2c9aaba5671f388d63bbea4dd
Author: Zero King <l2dy@icloud.com>
Date: Fri Aug 25 02:41:20 2023 +0800
feat: reproducible build (#412)
for sitemap, RSS and contentIndex.json.
commit c8412a5b0ac90d9d7beb7e03ed9a4763e834a865
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 24 10:03:14 2023 -0700
format
commit fc4b8f3d3fad90b6f7d8dedc58201df68da1280e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 24 09:38:00 2023 -0700
fix: ensure recentnotes uses proper date
commit 6cd0612d40a5011f19f5ca2e5e804477779e393f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 24 09:17:43 2023 -0700
fix: add better warning when defaultDateType is not set due to upgrade
commit 9851697b583efdd40173ebbdd484030f2adb0732
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 24 09:05:19 2023 -0700
version bump to 4.0.10
commit c36a9f3fb7c2128610d20312ffb332bd238c89de
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 24 08:56:40 2023 -0700
feat: add defaultDateType config
commit 98d82415dc8d60c3a35ea4dee21c86e406605763
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 24 08:31:06 2023 -0700
fix: lock to never read when site is building
commit 9d2340e90b55fb9480e0901bc7360f3d72e688da
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Thu Aug 24 17:14:52 2023 +0200
docs: fix typo in `authoring content.md` (#408)
commit 8200c8d0402cb40e9f65c49dac5be621360a3a20
Author: bfahrenfort <59982409+bfahrenfort@users.noreply.github.com>
Date: Thu Aug 24 00:57:49 2023 -0500
Revert contentIndex to RSS 2.0 (#407)
commit 2e0e518f5dbddc3b55e9dd1a085c2a88d365b599
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 23 15:16:04 2023 -0700
format
commit 632c27b7ec133d15d890eb28c98eb9716ca01407
Author: Zane Helton <me@zaaane.com>
Date: Wed Aug 23 18:14:23 2023 -0400
docs: update `hosting.md` with Vercel hosting instructions (#406)
* Update hosting.md with Vercel hosting instructions
* Update docs/hosting.md
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* Update docs/hosting.md
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* Run npm run format
---------
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
commit bfb416b35a02dabbdaedc9e3c8980f8b4aadd9aa
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 23 13:10:23 2023 -0700
fix: text wrap in popover
commit 960c1814d07449dd9fd5e70eea770ba762780b53
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 23 12:23:49 2023 -0700
docs: make incompability of trailing slashes clear
commit eed4472aeecdcb0f2b233df69884f03bd45fc293
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 23 12:18:50 2023 -0700
fix: use proper full base for links.ts
commit b99eb7ebce21065b7ff59cdd3226d4fc173b3878
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 23 12:11:16 2023 -0700
docs: whitespace
commit 0aaf88b8521e2bc667cae525356eea3550ad9c96
Author: kanpov <71177577+kanpov@users.noreply.github.com>
Date: Wed Aug 23 22:09:04 2023 +0300
Fix #403 by moving documentation to separate directory to avoid merge conflicts (#405)
commit a1a1e7e1e0c06f2f7b759c5aecd6a9ceba3e2717
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 23 11:36:34 2023 -0700
fix: builds should no accumulate on repeated changes (closes #404)
commit 3209f7c3b7837fd845cbef645155a9484ea0253a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 23 09:19:00 2023 -0700
deps: native addons for lightningcss
commit cde1e26129f8cd6b183ccc1c35a06f76dedeff9c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 23 09:16:44 2023 -0700
deps: install exact
commit 1128efcf237d275343daaab16e1b1d3e228999b9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 23 09:10:30 2023 -0700
deps: esbuild and esbuild-sass-plugin
commit d2f52549955ff7600cc5897e67806df4ebf85f91
Author: Aaron Pham <29749331+aarnphm@users.noreply.github.com>
Date: Wed Aug 23 12:05:01 2023 -0400
fix(esbuild): conflict with esbuild-sass-plugin (#402)
commit 3064839c2d2ea0a9976bef83db12102647572083
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 22 23:37:02 2023 -0700
version bump to 4.0.9
commit b444c5c13b983bf80df8b6d020eb246e9fd3e78e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 22 23:33:58 2023 -0700
fix: percent-encoding for files with %, contentIndex for non-latin chars (closes #397, closes #399)
commit 36548d59866ab3236677ff25af106b882c0694f6
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 22 22:41:50 2023 -0700
fix: toc for cyrillic and other non-latin alphabets (closes #396)
commit 99dbe525d9b221bf12778ed899c94ef103a77c45
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 22 22:27:41 2023 -0700
fix: properly lock across source and content refresh by sharing a mutex
commit 8b63ff882ae28b1a1774293673a7531463d6a5e5
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 22 22:14:16 2023 -0700
fix: tag support for non-latin alphabets (fixes #398)
commit b991cf2ee8a456a15f2b566843d93a9b7a9a0c29
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 22 21:30:31 2023 -0700
fix: spa hijacks back button (closes #400)
commit bb677840fc1ff14637fab8a99841dd532f408fce
Author: 松浦 知也 Matsuura Tomoya <me@matsuuratomoya.com>
Date: Wed Aug 23 01:16:55 2023 +0900
fixed broken CJK links (#390)
commit c60b3d5e3444e46587c1143dab784c53204070ae
Author: Ikko Eltociear Ashimine <eltociear@gmail.com>
Date: Wed Aug 23 01:16:21 2023 +0900
fix: typo in bootstrap-cli.mjs (#394)
commit e10de3febffd3e3b7eaa3aed611aea03153e6a82
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Aug 21 17:01:18 2023 -0700
fix: server-handler crash from filename (closes #386)
commit b69556c918e2a4a27b047e8de6b02861f04d5a9e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Aug 21 16:43:22 2023 -0700
fix: async-mutex not exclusively locking correectly
commit ce7057107266c1d96a909977add472af83f0e9f9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Aug 21 09:14:47 2023 -0700
docs: use canonical quartz.jzhao.xyz, update bootstrap script to point to correct hosting link
commit 8c943f47d6ddedc5da4b9447fec173a16d91758c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Aug 21 09:00:13 2023 -0700
format, update default sidepanel width
commit 2774e976d20226df1554ebddd6c7d2e390cae42d
Author: 松浦 知也 Matsuura Tomoya <me@matsuuratomoya.com>
Date: Tue Aug 22 00:45:47 2023 +0900
fix: opts being overriden in graph option (#384)
commit bb93ac1c83fd8d13593f7f9688de02eba60de913
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 23:50:19 2023 -0700
docs: fix links to networked thought
commit 777ff51c7a704459f9708086845b62aa8fe4e89d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 20:48:35 2023 -0700
format
commit 4e42d52e166dcc3c62775cb3bf86c209d098c158
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 20:47:07 2023 -0700
fix: ctrl + k breaking after page nav
commit d0f67d993507219cfa0824db8a3e59286f0ebf09
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 18:41:37 2023 -0700
move wss server start after http
commit 952d6cb3dd63bb50056198c1d7782314f8976bbf
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 18:08:44 2023 -0700
fix: nav event with spa off, anchor nav refresh page
commit 173ec240d2ed5b25f18ef42823334ae800b3527d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 17:50:56 2023 -0700
fix: jump to anchor on deployed site triggering spa refresh
commit 425c9789a451e69adbba2d99193e38e8915e8804
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 16:59:25 2023 -0700
remove checkout step from instructions as v4 is the default branch
commit 7b7064ad2be68e8d6d43123c12529ca94a325fcb
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 15:38:37 2023 -0700
fix: ensure code exists inside pre before adding clipboard
commit ca17af4ae20b9310da52a3752b8d7744c932f3e2
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 15:02:24 2023 -0700
fix: dont show index page for folder in its own listing
commit 71471117c5ec4acdfc0b8335b4462ab43d86fce6
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 14:34:00 2023 -0700
fix: ci runs on v4
commit e65ea48fae5a279ad4e50594b03621904f84e477
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 14:27:44 2023 -0700
fix: add async-mutex to builds on large vaults
commit b99d4cd8ce99ea1e52a97654ab153774a6bc598a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 14:05:37 2023 -0700
recent notes css fixes
commit 1bb00e72bb4ab8fcac186ef6961e400c60fb07de
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 13:00:33 2023 -0700
add docs for recent notes
commit 236130ac221f7d254ec9881f529f4ca567e15234
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 12:46:37 2023 -0700
css fixes, add recent notes, more robust quartz update
commit 5adf3c67a8f1939b891fadd2c8c30cf201d87943
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 08:57:56 2023 -0700
add engines field
commit 9d77edaf94d23f207552b3a650189810ba2252cd
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 01:08:18 2023 -0700
fix description not being used in folder and tag listings
commit 0ef1b5b522d1d6c0c79cd0538a2d63a9bf71a973
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 00:54:13 2023 -0700
update plausible url
commit cfb7d1232e005736dc549fb24ec5a02d53fc5206
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 00:52:49 2023 -0700
docs: update notes for tag and folder listings
commit 03fd62496f94c7cc007f802fc10290581d08deb0
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 00:02:41 2023 -0700
docs: note about updating default branch
commit d205eb568686a718cae889d51fde5ae18d352b30
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 19 22:19:49 2023 -0700
docs: make setting upstream more clear, docs on npx quartz restore
commit 96a3bfeafbe3e46bdf3e217dd934b026bc1b9f9f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 19 22:04:29 2023 -0700
fix: put quotations around font
commit 95fb6ccfcb5d887f1085bc1b58204b4138a2e804
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 19 21:59:20 2023 -0700
readme fix
commit e26248292179ebb691dfa99621192b2258c9b9c3
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 19 21:59:01 2023 -0700
fix: string for aliases being treated as array of chars
commit eb4d3dc5b405fda29ccde917902483a76835894c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 19 21:55:09 2023 -0700
css: fix scrollbars on windows
commit 90d6c1ed24283d0b046ba7eee2e6533a73cf3683
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 19 21:38:10 2023 -0700
add git fetch to migration instructions
commit 443c1828901f364cb7f5708a64a32494eea28d28
Merge: 791b8e2d a6236d97
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 19 21:16:31 2023 -0700
Merge branch 'v4' of https://github.com/jackyzha0/quartz into v4
commit 791b8e2d9f826de8cd0e3db3aead04ad8c65bc6e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 19 21:16:24 2023 -0700
add sponsors
commit a6236d97cf847a88dc2f72450372d440561032ac
Author: Matt Dunn <55315824+TheRealMattDunn@users.noreply.github.com>
Date: Sun Aug 20 03:15:14 2023 +0100
Adding to Showcase page (#367)
commit b1debaebff5c5753149e02e990439e7e56528852
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 19 18:56:45 2023 -0700
update docs
commit 7b8017413c16c0153c58919ab30e0e2de6e71f02
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 19 18:04:17 2023 -0700
impl baseDir option for quartz build --serve for local testing
commit 6681f28af0bb753918699c41ef9a8421f6b7cd08
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 19 16:55:36 2023 -0700
fix trailing slash causing folder listing to not fetch content correctly
commit 78f4cdbe109308fa33cb87387952aef5a528ebbe
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 19 16:40:02 2023 -0700
avoid 404 on icon for spa navigations with anchors
commit dd47be1bc65d3a8050d6ce9e77cd0e3b10e2a1a9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 19 16:28:44 2023 -0700
improve path resolution stability
commit c874e7e9378a5ba895870e9680484fb4af5c6e93
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 19 15:52:25 2023 -0700
base path refactor to better support subpath hosting
commit 3201f83b70bb2ee1d1daeb585a26e8cd6b8ce95f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Aug 18 18:24:09 2023 -0700
v4-alpha -> v4
commit d8bec631b6dee8f5b9c42f75d154252e53e81b77
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Aug 18 18:22:38 2023 -0700
update docs on github pages and syncing
commit 6f1f820289ce37d328c4bc8cceba1f702df52e15
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 17 23:39:15 2023 -0700
fix typo in docs
commit 8bc7a50dfa91dd7ba6b657aca6dbc437fa6df6b7
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 17 21:54:42 2023 -0700
format
commit 569beb410b967b8511a5d18cdee74280df681d15
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 17 21:49:58 2023 -0700
ensure sync includes untracked files
commit 5713d30670fc9ca1f9d86e6f0698bd011a68f674
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 17 21:24:41 2023 -0700
ensure contentfolder is passed to popContentFolder
commit a13094544318b06902b54a24ea61691fe598a2fc
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 17 21:20:15 2023 -0700
fix when symlink targ is calculated and added npx quartz restore
commit e10f6da01140f483162fe33cc77b2255b0683ac7
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 17 21:08:26 2023 -0700
format
commit a7cca3242ad7adc5163d70aa2cc8ee23c92211e5
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 17 21:07:40 2023 -0700
deref symlink on quartz sync
commit 0998bc355e6425e6b2bdf3d2da7124aa7b63b2a2
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 17 01:58:11 2023 -0700
fix rebuild debouncing
commit 07a327e05aa2a48aa11faf9aa0e049201d622f8f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 17 01:34:50 2023 -0700
fix back button in spa not working between two pages that both have hash fragments
commit 58d9dc0528cc5d7232ac7a237c98213ff1075f39
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 17 00:55:52 2023 -0700
format
commit 0c199975f2d469ecdfd7efcf2ddd16ffa1dc492b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 17 00:55:28 2023 -0700
various path fixes for links to extensions, fix relative paths in links
commit 2dc0ae279cae87e37c94c42d4ad87107f2a5b5d2
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 16 22:09:11 2023 -0700
fix import paths
commit 2f6747b1666316e579c6e7238092ac6a65d00925
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 16 22:04:15 2023 -0700
fix relative path resolution in router and link crawling
commit 232652149a287054df7e7c5136dafd3f55a79bf0
Author: Sohaib <98542228+sohaibology@users.noreply.github.com>
Date: Mon Aug 14 20:59:47 2023 -0400
Update hosting.md (#371)
commit 7bde99b4e2d49e30dad1e0d58ccc34c2e7482005
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 13 17:47:07 2023 -0700
fix: add trailing slash to local serving
commit f1c9ca495e450ecb62dade70c4b60d86e106f79c
Author: vintro <77507980+vintrocode@users.noreply.github.com>
Date: Sun Aug 13 20:19:50 2023 -0400
docs: note about existing content at same path on different branches
commit 4f4b04eeb4f41067e4759bec5c2f5db181150520
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 12 21:18:51 2023 -0700
format docs
commit d6e73f221c3e52ce6591cbd01621530e5f6fd703
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 12 21:16:34 2023 -0700
fix relative path resolution logic, add more path tests
commit 6d9ffd6da508743407b3b88a89ed831b53321d59
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 12 17:44:35 2023 -0700
404 page styling on local
commit c89f8b1a9a20becd982ed0b4bc88b1685a15832d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 12 10:33:57 2023 -0700
fix nested callout folding
commit 8fd496bbef4bc62315f3a0893177da730d8c4262
Author: Sohaib <98542228+sohaibology@users.noreply.github.com>
Date: Sat Aug 12 16:52:16 2023 -0400
Update hosting.md (#368)
commit aed3f5fccbe6a70186b339af4716980a5950b989
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 12 10:17:07 2023 -0700
fmt
commit c55d54f068a102d85dc16c5c0e63db413bc56145
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 12 10:16:55 2023 -0700
enable rich text in callout title
commit 7bffc2183ece33e2d84909a5677dac0ae2563ddd
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 12 00:24:30 2023 -0700
include home page in search
commit 827dd918476e225238d8412551df2866e4f9e616
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 12 00:03:11 2023 -0700
format, make search async
commit e1dd6aee863878a02f51200b3878d619220c22f3
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Aug 11 23:55:17 2023 -0700
fix wikilinks to anchors in the same document
commit 83269ac26e41f8e81b56e000b4347ee60d4ff84b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Aug 11 23:40:06 2023 -0700
fix scanning for tags in content
commit ed62ece491310e75d336db844d8ce56d3d26be31
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Aug 11 23:27:59 2023 -0700
fix broken tag listing links to tags
commit 736c3981c4affff8dea1eb908ff760ee740ec4a3
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Aug 11 23:25:44 2023 -0700
fix emit filepaths, tag emit being overriden by content
commit 79e828696a9e53357f61bd89c36e41555575c2c2
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Aug 11 22:47:50 2023 -0700
feature docs
commit 259d0a6d9ac5a02f0281e3fc061861b23481348f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Aug 11 00:31:44 2023 -0700
more documentation
commit df02ea20d7e12e8b9ffdd2968afaf5893c433488
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 10 21:32:11 2023 -0700
spacing fix
commit 21cc6a5da9edefd199c0b2158b85b8cd10dd901c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 10 21:29:11 2023 -0700
run prettier
commit cefbca4753a7d98f93f57a6452a09f6308e2fe27
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 10 21:16:07 2023 -0700
docs on making plugins
commit ad3f7b2d5fe15af2626250463994f5a9e9ba6d0a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 9 09:18:44 2023 -0700
format
commit ebf3263b7efacc9ac499f3f1f1bbc91451899ae0
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 9 09:10:40 2023 -0700
update npx quartz update script
commit cea6834fef54da59fc1692d1db0221b93793238f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 9 00:26:33 2023 -0700
profiling, better concurrency heuristics
commit 68ccd1d79de7cef275605e238238c1a80bbb074f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 8 22:53:01 2023 -0700
format
commit 49bd6bc3ffe1d3507e00bae62c12d9b045363090
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 8 22:52:49 2023 -0700
better concurrency debugging, --concurrency flag for npx quartz build
commit e4950e06a15e34134b9feb064749748080bd59a1
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 8 21:31:36 2023 -0700
fix getFileExtension missing numeric extensions (e.g. mp4)
commit e21f0f9bb97cbc4bd59f6bce0e0fce451b6d2b01
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 8 21:28:09 2023 -0700
change reading time to content meta
commit ee9ed4f2877bff1a64104b6d97ed0d51b1bb6fa3
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 8 20:36:24 2023 -0700
fix head.tsx
commit 2706a137a042b4bf932b0ace9934914f290605f3
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 8 20:18:31 2023 -0700
guide to creating components
commit 09d4eb0684eac96747778656fc4a8f8085c41388
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Aug 7 23:57:24 2023 -0700
fix notes
commit 533d68e642ca82b540d57a449d0e2c98ed921d6e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Aug 7 23:56:50 2023 -0700
most of creating components, increase legibility of bold in article and callouts
commit 774a162850883468052fd5c5a79cf8786bd96989
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Aug 7 21:51:23 2023 -0700
format
commit 2ac5dd49da34d33e4086630d371cbaf1ed294153
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Aug 7 21:51:06 2023 -0700
fix regression in code block font-size boosting on safari mobile
commit 527ce6546e7ec50e7720ff7b9b6ff79a89c3b7fc
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Aug 7 21:41:18 2023 -0700
various css fixes, fix new image loading bug when previewing, path docs
commit d02af6a8ae4c3bea4c94ad63c118d517318146fe
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Aug 7 17:34:38 2023 -0700
architecture, fix vendor prefixing
commit b4cacd59569c066c52bbe163165c2a30d6ce3ad0
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 6 22:07:33 2023 -0700
format
commit cd9dc6ecb570c08291e73d9db001e6068df4d88a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 6 22:07:08 2023 -0700
fix css transforms for mobile
commit d8d9dd22c9e81f344f3ab56f7262d804c2720fcd
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 6 20:52:17 2023 -0700
fix shortest path for non-md files, mobile fix
commit 075ac33474d5d439b01daf5392738a3ea810b86d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 6 19:54:11 2023 -0700
note formatting
commit 3adc73a703142b3c0475570e4de16701b2797524
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 6 19:52:30 2023 -0700
docs upgrade, ci changes
commit 028bcec62c3ca019a96783f17eaee1ecce6e092b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 6 17:09:29 2023 -0700
mobile fixes, fix bug when linking to anchor on home, docs
commit db6054a8c19703345cfdd6dd4a08f35986c14acc
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 5 18:00:52 2023 -0700
format, remove markdown from being procesed
commit a0d651d64dfd766157324fd86791da2168028cf2
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 5 17:53:29 2023 -0700
reverse query param hack to re-add sourcemap support
commit 1da467d2143a260af8e5b7d2d2f68f0fcaa0260c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 5 16:43:50 2023 -0700
non-admonition callout fix
commit 7c09627df4bd61e3b4fbd6fd84a1971b40ff72b3
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 5 15:34:10 2023 -0700
improve hot reload robustness
commit c402f0c3857a75cc101c3459866c94e646fd2957
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 5 11:28:09 2023 -0700
more robust error handling, config hotreload
commit 9e76b257d4be4b9e6ea7b514074ef74d8d125f4b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Aug 4 22:35:21 2023 -0700
fix mermaid initialization
commit 21a7ec23078c04601acc4741ee141d7560e0d6f2
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 3 23:36:00 2023 -0700
bump mathjax version
commit 6423f85614dc87a320625d2efe2088d648c127ff
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 3 23:28:34 2023 -0700
fix execsync
commit 3a2eae0a16cfc275182f8a26af0a77f0e9bd07c1
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 3 23:24:34 2023 -0700
fix fetch flags
commit 2acfb9e8701d2b001a82a6af75969a1df7d97b67
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 3 23:08:04 2023 -0700
format, add upstream
commit 93986c6e7c8893ae3068bb3ea2ba187e5e1d6f43
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 3 22:29:46 2023 -0700
update pull strategy
commit 4877a9c934201e8f0e4e83821efe2dc3f9299d9a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 3 00:08:13 2023 -0700
fix callout aliases not being used properly
commit 6457496b4b8222d95d9b5ab47e8eda62d7241739
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 2 23:42:49 2023 -0700
readme fixes, force
commit fdf1e2a41d079c4f2d1f3df7c297fa0d92a18cc9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 2 23:29:28 2023 -0700
use checkout for pulling updates
commit 663c41fa41faad1528335a18c73a197ed5c6ea11
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 2 23:04:26 2023 -0700
use posix style paths for all path ops
commit de72dd4e4af550cd72847d7cc0924a5859edb9e1
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 2 22:16:46 2023 -0700
format
commit 5537ca41e0069725e98ef9ad59a2d4dbaa0bd8ae
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 2 22:16:32 2023 -0700
use autostash and pull
commit 558a50916446746768fa43bbdfc8e229d8ec7759
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 2 22:11:46 2023 -0700
format
commit d7842e0ce713e338f21374cea407a46cace18cca
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 2 22:10:13 2023 -0700
make path and globbing more platform invariant
commit 264ea3d54438b30bc7d9280e076e3f6e29d0ff8c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 2 20:59:56 2023 -0700
add gitattributes for windows
commit 0a33ff7a82658ecc6db3bb881db167f69893499c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 2 20:56:31 2023 -0700
fix test matrix for ci
commit 429f331c212d598b0d7ff44f20f75cf007bcf32b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 2 20:53:13 2023 -0700
make ci also run on windows, re-add css minification
commit 9a0f20012a8f5051aa2faac62f91dc4f2a38151c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 2 00:07:41 2023 -0700
windows patches
commit c8c108c7f702ca3710733d6d455ca2661e13e8d3
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 1 23:29:58 2023 -0700
change default strategy to be rebase
commit aaae7d46c21491397b1f723d5ae16cff4f258544
Merge: a70e846b cbae88fc
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 1 22:48:32 2023 -0700
Merge branch 'v4-alpha' of https://github.com/jackyzha0/quartz into v4-alpha
commit a70e846b0a14f3065bbf613221fee0e3b09c12ef
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 1 22:47:16 2023 -0700
flag to allow ofm replace in html embed
commit cbae88fc4e9b98764cfccca2e85f265c4b894573
Author: Adam Brangenberg <adambrangenberg@proton.me>
Date: Mon Jul 31 05:08:32 2023 +0100
Removing redundant properties (#356)
commit cc7950267089648e4329531105fe5f8ba011b1b4
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jul 25 23:37:24 2023 -0700
make layouts simpler to think about
commit 45f9087f03fde7e7d762e25a9f2966d1e6e907f3
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jul 25 22:27:59 2023 -0700
fix checkbox/tasklist styling
commit 1c1a56902371d20e35ad3849cc806a2272f8e8df
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jul 25 21:11:06 2023 -0700
fix formatting
commit cee2883c0889a65e2786d70eb81932f5ed017e59
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jul 25 21:10:37 2023 -0700
nested tag support and tag index page
commit c0278a8c65d74441a6237e0a90c08f8b7b263d95
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jul 24 21:54:47 2023 -0700
font loading options, optimize css
commit e82ba97a396e4e9d77486b48e6ee8b1dfd1c1b4c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jul 24 00:07:58 2023 -0700
actually add processed tag to frontmatter
commit 041a4ce7bc39c65483eaeeddc97e6946cb49f540
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jul 24 00:04:01 2023 -0700
fix watch-mode batching
commit 569ff1a801f92c0761b5ddc9dbff52833b193c94
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 23 21:53:34 2023 -0700
npm i on quartz update
commit 351b4ab13be6b1e43eb286ffac2646d0479ba678
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 23 21:41:09 2023 -0700
styling fixes for stacking order and overflow
commit 4811500b1b9c169aac82254d771677cd6dc2a86c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 23 18:20:43 2023 -0700
make component resources a proper emitter
commit 236ba56be17f53f701fcfc6ca81b867defa433bd
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 23 17:59:44 2023 -0700
version bump, update doc
commit 7c2bb4ee4c4ee4d6abc8f7f3757d40c039a1bcac
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 23 17:58:35 2023 -0700
bundleinfo flag, minify scripts
commit 8fd75ffbfda30edd5a134a1fbf9b81ac3cebb2ff
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 23 17:42:00 2023 -0700
support attachments folder
commit 55a1fb8c41b6a34cc5cdfc5ec2533ed1f642211d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 23 17:09:12 2023 -0700
format
commit 9e83af04a78d5988bd517bcc61c48998bbfa17ef
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 23 17:07:19 2023 -0700
refactor static and asset emission to be actual emitter plugins
commit 000eb4c3c0ce6451702202824b49f609a45ab6f6
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 23 15:37:06 2023 -0700
update feature list
commit 5599eb590e1b9163d41847153545764ed9b02ff6
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 23 14:02:57 2023 -0700
feat: process tags in content
commit ae2e3b463a91d94caa8bdf62e5c3a3d726b8b4e4
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 23 11:49:26 2023 -0700
improve error handling while serving
commit fd7c33c5372dd61283fc44f4dccbff0e71fcbf5b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 23 11:19:15 2023 -0700
style fixes for search bar and title on mobile
commit 76fdb3b4d8f2060cf742911d28c0654fe7280609
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 23 11:04:20 2023 -0700
fix styles
commit 27a5f7ef8ef0b52ade767138ebd1e202f8b66476
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 23 11:02:45 2023 -0700
various typography and styling fixes
commit ab228748abb85474a1c1f5f9410ad8e1167e2c23
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jul 22 17:42:13 2023 -0700
oops actually use npm run check
commit 76fa9bbe00eba4249b12ef7c86ccdac4faa6051f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jul 22 17:39:10 2023 -0700
run prettier on ci
commit 7db2eda76cf51fd631d385c12a7b411339406067
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jul 22 17:27:41 2023 -0700
run prettier
commit 2034b970b649b37347921842b5223a7274e34d89
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jul 22 17:26:03 2023 -0700
configure prettier
commit 8dd73704e6e95254d2addf51fede6329f90796b8
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jul 22 16:06:36 2023 -0700
hot content reload
commit b7966ff7fa2829ac9d128f1d560a2b98149514ac
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jul 20 21:51:55 2023 -0700
update features list
commit 01d7d8e55448abe0a929d8730c735bed5d929048
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jul 19 23:03:59 2023 -0700
fix tag pages to emit to tag/index.html to override content and folder pages
commit 83d47f7aaa247371ad8a51b8d5245afe8f4af620
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jul 19 22:00:44 2023 -0700
rename github action
commit 76c092dcf20959bc52fcb13b28cee50cd4217e40
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jul 19 21:59:48 2023 -0700
add custom.scss
commit 410fc9c8d37b0c4118c70678db5d2e55a842f486
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jul 19 21:59:39 2023 -0700
quartz update and quartz sync
commit 8e0ba45789a81ee28f6c67468f7fcf9ea45832db
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 16 10:39:35 2023 -0700
add link resolution prompt to quartz create
commit f82282367efd41192716fbb89e5a8756ff73bd5a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jul 15 23:33:06 2023 -0700
treat _index as index
commit a3e4c86a4cf18e31fe5b65d57ce120174c9f6aee
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jul 15 23:05:17 2023 -0700
fix ci, disable strict path type checks by default
commit 3ac6b42e16dca5a44ed3fec2c0314f1dbbc2322b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jul 15 23:02:12 2023 -0700
finish path refactoring, add sourcemap + better trace support
commit 906f91f8eed5e91a7afae95c7002a3e4553d6aae
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jul 13 00:19:35 2023 -0700
base path refactor, more docs
commit 08f8e3b4a4879dd7c91c16fbce80c4f2bc5e357f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 9 19:32:24 2023 -0700
docs + various polish
commit b90590b9f487cdd49f019375fa5a09aad2e8ec1f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jul 8 14:36:02 2023 -0700
polish
commit b3480bdc49120010da8d2805df02cbf84ca08bdc
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jul 6 19:18:18 2023 -0700
fix styling for bullet points
commit 9cbacca2d4062e2b2e512f761ab580218c623b33
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jul 6 18:45:38 2023 -0700
handle dates as tags
commit 05d1ca01c39e18fa08776d4800e201abf8779f3c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jul 6 18:32:48 2023 -0700
handle string tags
commit f7bf4038dc7fcf3adc09697797da1c68c932eadc
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jul 6 16:56:30 2023 -0700
fix path parsing
commit 465804a389f77807f68ca048cf9d7fac1314d8c5
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jul 5 00:16:06 2023 -0700
basic docs, remove publish, add quartz create
commit 92ca78709227c6117797c52eada7d471bb4ba96a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jul 4 18:26:11 2023 -0700
fix default callout state
commit fe2852ff258eabfab49af98619c9b5b9f41e004c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jul 4 18:08:36 2023 -0700
update package
commit 974b0da3086d21aabf5ef1a3eefa50675c0d4e95
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jul 4 18:02:59 2023 -0700
folder and tag descriptions, re-enable relative pathing
commit 2a17431460770b3375b455815f503781f7448c20
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jul 4 17:14:15 2023 -0700
fix popover zindex
commit 38cff2d670ecf7fd325aaaf776a4c250a72cc661
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jul 4 16:48:36 2023 -0700
more visual polish, adjust colours and spacing
commit ab9da02c60c962128820e6874e6f07c98bc3dda7
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jul 4 10:08:32 2023 -0700
fix indexing causing main thread freeze, various polish
commit e0ebee5aa9b3646de722f139f1d8d15591df538e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 2 13:08:29 2023 -0700
various polish
commit 4c904d88aba14d0d153bfac364630ad61832a73d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jul 1 13:35:27 2023 -0700
rss + sitemap
commit ba9f243728cab171f86b40b9d50db485af272a39
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jul 1 00:03:01 2023 -0700
tag and folder pages
commit 24348b24a94c5f9ca285642b751e6798b92eedd9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jun 19 22:50:25 2023 -0700
fix: parsing wikilinks that have codeblock anchors, scroll to anchor
commit fd5c8d17d3b3cd0a13b0a21a2b78d85010e02e12
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jun 19 20:37:45 2023 -0700
basic search implementation
commit c4cf0dcb022ff826433b63b8ff68830bb8503895
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jun 18 10:47:07 2023 -0700
local and global graph
commit 8bfee04c8c6948a88114d53769d4bb89b8ec7bf5
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jun 17 16:05:46 2023 -0700
popovers
commit cb89cce183215f6a8edcb6d166875e2982586002
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jun 17 14:36:06 2023 -0700
basic left,right layout
commit b5877824500a19c721c93eedc59704db94487a94
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jun 17 13:08:06 2023 -0700
collapsible callout
commit 6d5491fdcbccfad7af6c6dcc63ce2f67abd3850c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jun 17 12:07:40 2023 -0700
collapsible toc
commit 917d5791acd6361c691902b445bdc4f7129ba3fc
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Jun 16 19:41:59 2023 -0700
modern toc tweaks
commit 9d2024b11c7c24ec8112b5019504fc44b4e1a297
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jun 12 22:41:42 2023 -0700
taglist, mermaid
commit 2bfe90b7e64839d8ec6319fe93b76472b0285114
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jun 11 23:46:38 2023 -0700
add config to components
commit 352075ae81a3304a7bfa2512ef69b1cdacb26c12
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jun 11 23:26:43 2023 -0700
refactor plugins to be functions instead of classes
commit b8c011410d6bcd6837f4efd6a3948196a0f7aeea
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Jun 9 23:06:02 2023 -0700
toc
commit 3a29f4c86ee7ed13fb8683b2728a856581e32de7
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Jun 9 19:58:58 2023 -0700
add custom spa solution
commit 59109a8c1d505f516d50d6b7f88cfe070bc1ca84
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jun 7 22:38:45 2023 -0700
add flamethrower router
commit 317cce9314ad78d90714dc55aa82a2c3dfa75d1a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jun 7 22:27:32 2023 -0700
generic quartz component for layout
commit dde36fa5589a362b60b7b72eb7793a3f133e159c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jun 7 10:52:53 2023 -0700
update gh actions
commit 1cb4dadf13913009660685b6f2c163c939e2a51a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jun 6 21:19:00 2023 -0700
codeblock copy
commit 0813f127a30b376c5d5552a8cdb6e5cad5969c38
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jun 6 20:58:26 2023 -0700
fix darkmode script load
commit 4d3579ca9876d3ca6612589d116c3a300a60b446
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jun 6 19:48:37 2023 -0700
darkmode scripts
commit 89e0311a98732201651a6a6c1eea3e9656e28fb2
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jun 6 00:00:38 2023 -0700
embeds
commit 700036e84c805ab0a59f88b368006a28a97b76d1
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jun 5 22:14:17 2023 -0700
callouts
commit 1406ee0f05dc688e1b7635d3ce14e63d1c42a973
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jun 4 13:37:43 2023 -0400
update spinners
commit 9ad89997a533744695b380b315f1f70293bb30c4
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jun 4 12:35:45 2023 -0400
multi-core builds
commit 4bdc17d4a11f0ba517c6d9124d296458332c536b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jun 3 15:07:19 2023 -0400
inline scripts
commit fcd81353f88b613e5e93c089e10e530d08695b3f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jun 1 19:48:38 2023 -0400
heading linking
commit 04eeb2d10c2bb8cac595a879446c1dcbfac4d6a6
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jun 1 19:05:14 2023 -0400
syntax higlighting
commit 42d3a7de1711bbd40a2b6857e3bf7ff17685f5d9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jun 1 17:35:31 2023 -0400
scss support
commit c1c46ad67e58884389fb59c17d81845fe0fbcad0
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jun 1 12:33:20 2023 -0400
obsidian flavored markdown support
commit 3636c052eb054d93a8a3ddfb9fdd873d5fe83a5d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed May 31 17:41:44 2023 -0400
link processing
commit 21c007e2fcf73fe4ef04dd07db7116afed46047a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed May 31 17:01:23 2023 -0400
rendering, link resolution, asset copying
commit ad6ce0d73fbd015e00e59ec30bda3cc8de777832
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue May 30 08:02:20 2023 -0700
plugin integration round 2
commit a757521313fb2c623d4dfda95eb97d3189bfe253
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun May 28 17:44:08 2023 -0700
base setup
commit 7b1da7a8456b0404ad4ebcb8afd523a6618439ff
Author: BSD-Yassin <103321053+BSD-Yassin@users.noreply.github.com>
Date: Thu Apr 27 20:12:56 2023 +0200
i18n: Update fr.toml (#313)
commit e482fa10970fd6a0c1c0ec836db84ba4187bc8f7
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Apr 6 15:06:01 2023 -0700
fix: graph and tooltip sometimes not showing
commit ba7a968881083b9d3b3b6ecd65df076e76bcb164
Author: Mattia Ippoliti <Ippolitimattia@gmail.com>
Date: Sat Apr 1 22:50:08 2023 +0200
fix: padding for empty title callouts (#308)
commit db27557aa307921cf035b7f62d9d9f2b452b1018
Author: Md Jawad Noor Asif <jawad.asif.bd@gmail.com>
Date: Thu Mar 30 17:14:06 2023 +0600
fix: search highlight not showing because for trailing slash (#306)
commit b7c305e0024ca78c1d9f9d7a5107ffc124c56ab1
Author: Mike Walton <walton.myke@gmail.com>
Date: Wed Mar 22 22:56:20 2023 -0700
adding myself to the showcase (#301)
commit 74fe4d6813dfce9760464141410b683bd8964d45
Author: Daniel Lazaro <daniel@dlazaro.ca>
Date: Sat Mar 18 12:20:56 2023 -0400
docs: Update link to callouts documentation (#300)
commit d6c31595b320562313010ca68002942ac951a069
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Mar 16 10:33:01 2023 -0700
deps: bump hugo-obsidian
commit aa5ab03d4ad6e7cb4d9efd3f9c177ebde7e4c4af
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Mar 2 09:14:29 2023 -0800
docs: update to account for github changes
commit ecba6071b899d62492c3970924bbf24c2ba951f3
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Feb 25 13:04:15 2023 -0800
deps: bump hugo-obsidian
commit 983efab94c31bb19b532e120f2f70f45f788b7c8
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Feb 12 16:46:11 2023 -0800
fix: recent notes partial sorting
commit 10e41743e5df81195479aa2dd3ba4d5fb5b1ebf3
Author: Dev Uni <wlwhsvkdlxh@gmail.com>
Date: Wed Feb 8 01:38:20 2023 +0900
fix: Bad UI due to head.html (#284)
commit bde44fadf20a1f91a466653f9552ce8bd658e2f9
Author: Simon Späti <simu@sspaeti.com>
Date: Tue Feb 7 09:16:15 2023 +0100
feat: Adding Twitter and Social image preview including description (#207)
commit 6885651f7b4504446b456a2e61a85f1b787b3873
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Feb 6 12:58:34 2023 -0800
feat: max-width for large screens
commit 7df2bb6f5e681ce3329e4faf6ac6cbcda7a3f14e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Feb 5 12:01:49 2023 -0800
fix: fix duplicate link click tracking
commit 11959de11ce76f0f47284b946a577481c0ffaeaa
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Feb 5 11:34:39 2023 -0800
feat: add more plausible events
commit a73aca8ed9c16915928206bad6fa0ccf4e9b2b8b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Feb 5 10:39:58 2023 -0800
feat: switch from GA to Plausible for analytics
commit 93610e232b366c6f6cb9695d4755fa578dc28aa0
Author: Adam Brangenberg <adambrangenberg@proton.me>
Date: Wed Feb 1 21:34:18 2023 +0100
feat: Remove leading slash of folders in graph view (#282)
commit 712dab5c8cd8933d9cdb63d4c833940c461a09da
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jan 31 11:00:28 2023 -0800
docs: remove broken links from showcase
commit 77b3907b23b6d453dd7bfa04e4cef6f28d68ca54
Author: Olivér Falvai <ofalvai@gmail.com>
Date: Tue Jan 31 19:48:20 2023 +0100
docs: Clarify Obsidian settings (#280)
commit 8fc63586c428f1d9dcb1e084c0d9a48802b15582
Author: herrwinfried <ozgurarslln@icloud.com>
Date: Sun Jan 29 23:14:11 2023 +0300
feat: Added Turkish translation (#275)
commit 24c9777a5202a9fc9a86525955ba08ec3b2dc6ec
Author: Apoorv Khandelwal <mail@apoorvkh.com>
Date: Sat Jan 21 10:01:05 2023 -0800
feat: Embedding multimodal assets (#274)
commit 7a8811a184c8bd6206ee041d6486b7e456d5a84a
Author: Quadrubo <71718414+Quadrubo@users.noreply.github.com>
Date: Wed Jan 18 17:25:01 2023 +0100
added the liveReloadPort as an option for docker (#272)
commit eb2f6aeca891135389e58da0016c60af1363df61
Author: chaosarium <38693485+chaosarium@users.noreply.github.com>
Date: Mon Jan 9 17:14:11 2023 -0500
Fix callout behaviour inconsistent with Obsidian (closes #168) (#268)
commit b78008532f09dce26018ea7ea544f0e40d36756d
Author: Md Jawad Noor Asif <jawad.asif.bd@gmail.com>
Date: Tue Jan 10 04:12:52 2023 +0600
feat: Added Bangla translations (#266)
commit c5b103c85feafa96d5e5ecc572b043331d4a6bd4
Author: Md Jawad Noor Asif <jawad.asif.bd@gmail.com>
Date: Wed Jan 4 09:10:25 2023 +0600
fix: fix unicode broken tags (#261)
commit 614a6222a1638c159d2ac9c005be5b2ddec78dd2
Author: Adam Brangenberg <adambrangenberg@proton.me>
Date: Thu Dec 29 16:43:41 2022 +0100
refactor: General performance/style improvements (#262)
commit dc4373789617a58d517eac59c3e60fabb47eafd0
Author: chaosarium <38693485+chaosarium@users.noreply.github.com>
Date: Sat Dec 24 12:10:59 2022 -0500
fix edge cases link processing (#258)
Fixes https://github.com/jackyzha0/quartz/issues/176
commit ea37486309409048681496fb2449c1182d0f44eb
Author: toof <toof@toof.jp>
Date: Sun Dec 25 00:38:49 2022 +0900
fix: fix misspelling (#259)
commit c1b0eafce668c0c7498a5875c23c074eeb71e842
Author: chaosarium <38693485+chaosarium@users.noreply.github.com>
Date: Thu Dec 22 13:34:21 2022 -0500
feat: Added simplified Chinese translations (#257)
commit ce5df837f5f6ed57f9e9f85439ee9a40ebf234dc
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Dec 3 21:03:12 2022 -0800
feat: latex in search results
commit 4cd6f7efdf9161f1a1c7ad381d5bc4f2828eedb8
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Nov 30 18:00:12 2022 -0800
fix: text highlighting
commit 5a7936e23af000d7cefbf2dcb2ba4c16f1f993dc
Author: Apoorv Khandelwal <mail@apoorvkh.com>
Date: Wed Nov 30 17:41:05 2022 -0800
fix: Replacing "internal-link broken" with link to asset (#232)
commit 5fd707714faaaac5c3d39ec056ff88446fcb3cc2
Author: Jon Erling Hustadnes <jonerling.hustadnes@gmail.com>
Date: Sun Nov 27 19:55:43 2022 +0100
feat: Added Norwegian localization (#242)
commit 717a13a580fb82063d40525bcc63cd1d36f5994a
Author: Filippo Andrea Sighinolfi <83777862+Sighi-04@users.noreply.github.com>
Date: Sun Nov 27 19:55:13 2022 +0100
feat: Added italian localization in i18n/it.toml (#239)
commit 5f3d4306997e87437b4c9de97aa9eed355133965
Author: Brendan Ang <53790951+bbawj@users.noreply.github.com>
Date: Mon Nov 28 02:53:52 2022 +0800
feat: add support for mermaid diagrams (#244)
commit 66f3e249fe90cba366a99fe08f0898af27fe59e6
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Nov 23 08:34:19 2022 -0800
fix: only run docker publish on main repository
commit e374e3abd42c1719ad1fdc6bd9c641efb2ddf954
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Nov 21 23:36:27 2022 -0800
fix: jump to search for operand
commit f08a76a738235d1ad8e0b17f74988386dcfd86cd
Author: SafEight <43656822+SafEight@users.noreply.github.com>
Date: Mon Nov 21 21:05:46 2022 +0000
fix: External links ending in .md don't get trimmed (#236)
Co-authored-by: SAF <saf@saf.saf>
fixes https://github.com/jackyzha0/quartz/issues/229
commit d80f6946c854365336062f71f0c922fb42beea54
Author: Morgan Gallant <morgan@morgangallant.com>
Date: Tue Nov 22 01:54:45 2022 +0900
fix: Semantic Search: Use Operand Beta API (#235)
commit 120d104230b1c762a57eb41240e18aee6c289c08
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Nov 20 15:14:48 2022 -0800
update config for search
commit e9aa6ae9e7ec1792b11ebcb6cac606c47ae3cf7d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Nov 20 15:09:58 2022 -0800
feat: docker docs, semantic search alpha
commit c12af32a5ade0240630ff3b9fc11d877d6a16825
Author: Apoorv Khandelwal <apoorv.khand@gmail.com>
Date: Sun Nov 20 17:03:53 2022 -0500
feat: Dockerfile and automated container build (#230)
commit de2b6b9a1b95cb6af7eb421d9a4de054e7e41315
Author: SafEight <43656822+SafEight@users.noreply.github.com>
Date: Sat Nov 19 21:17:55 2022 +0000
feat: Replace == with <mark> (#234)
Co-authored-by: SAF <saf@saf.saf>
commit 7f9f58860dc98038798e362e52c5d39c750858cb
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 19 11:18:57 2022 -0800
feat: allow enableToc to override default no TOC on a per-page basis
commit 151b9851d6828ef28ed75a40e12be01e421b94d8
Author: jet457 <abhmul@gmail.com>
Date: Sat Nov 19 13:10:41 2022 -0600
docs: add Abhijeet's math-wiki to the showcase (#228)
commit d56a58044dcc619f6e26674316e7c38fc8ace8c4
Author: saucecoat <43880196+saucecoat@users.noreply.github.com>
Date: Sun Oct 30 06:08:44 2022 +0000
Added German translation (#223)
commit 689201bfbde5bd48b001bfa2b54db6a1d5a4aa81
Author: Conor <hzk@konor.fr>
Date: Wed Oct 26 18:12:35 2022 +0200
feat: Add French translation (#221)
commit 9b72edcd9cce10d6064e4e8b2f61b7db2966515d
Merge: 8704edcc 0a602eda
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Oct 25 13:14:13 2022 -0700
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit 8704edcca2f14c8662affa5a730083949f3f5749
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Oct 25 13:14:06 2022 -0700
deps: bump ubuntu version (closes #218)
commit 0a602eda1bc0c5446dbbc2917b3c3dcd1ad99c6b
Author: Evan Cater <evan.ecater@gmail.com>
Date: Mon Oct 24 12:13:35 2022 -0400
fix euler's identity (#220)
commit 72571a75884a10cd78205d79a5e475e17a4d9451
Author: Javier Zaleta Martínez <94091554+javierzaleta@users.noreply.github.com>
Date: Tue Oct 18 19:25:55 2022 -0500
feat: Add Spanish translation (#217)
commit 3409a49f156263aa36ca866e0d2b0b16645c2162
Author: Charles Chamberlain <charlesetc@users.noreply.github.com>
Date: Sun Oct 16 12:43:43 2022 -0400
fix: Apply monospace style to all meta in a popover (#216)
commit 666ffebe90c04dc7fe064a98232538826af70738
Author: Pavol Komlos <62595149+plundration@users.noreply.github.com>
Date: Wed Oct 12 17:21:28 2022 +0200
Decode the heading id from split link (#214)
commit 8ea1525df40751af2702a508c3ecf2edf2d76107
Author: Seth <37915796+iSaluki@users.noreply.github.com>
Date: Mon Oct 3 19:45:54 2022 +0100
Add SethMB Work (#203)
commit dd11d56dd986c82914ce529fb43c8e2beb78a094
Merge: cd7e2088 169ef442
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Sep 23 10:17:34 2022 -0700
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit cd7e2088d564023b073a458282e3a63b7a108c0b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Sep 23 10:17:28 2022 -0700
feat: hide TOC when no headers (closes #204)
commit 169ef442b9ae1a61af516edc5c90ff0299d91a25
Author: Simon Späti <simon@airbyte.io>
Date: Wed Sep 14 19:05:51 2022 +0200
Adding reference projects (#196)
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
commit 8e3042df4901885b051300c5ae2131bdcc613a57
Author: DongDong Chen <cdd2zju@gmail.com>
Date: Thu Sep 15 01:05:20 2022 +0800
add my showcase : oldwinterの数字花园 (#192)
commit 2145e92b004909070bd4a20d0f9fd1c0ddc70756
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Sep 12 11:08:07 2022 -0700
fix: make latex rendering size more simialr to obsidian
commit e6c7a4e1e2e3b0437b5dbbbeb7abc4e05622db16
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Sep 11 18:03:55 2022 -0700
fix: latex rendering bugs + patch for #195
commit ca84da5b31fa00ca6c729a9b500efeb28f90b41b
Author: Nikola Georgiev <42315052+nikolageorgiev2000@users.noreply.github.com>
Date: Mon Sep 12 01:05:14 2022 +0100
feat: Hide full path to file in Wikilinks by default (#195)
commit 0d1670adbaa63e4972bd560efd3c046eb03e48ca
Merge: 5c770f96 ce55eca7
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Aug 29 14:23:19 2022 -0400
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit 5c770f965a6af0d40926640d957e7841f71b908b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Aug 29 14:23:04 2022 -0400
Update Quartz version in documentation
commit ce55eca73bdfc6c043137dcbd7a2bda24cfce9af
Author: Andrii Yefremov <56955307+decatetsu@users.noreply.github.com>
Date: Mon Aug 29 21:15:18 2022 +0300
Add Ukrainian translation (#191)
commit 591c4813ec8ee700caa45253464290d315d57603
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 28 01:09:52 2022 -0400
deps: bump hugo-obsidian version
commit 83e7aec3c9dca4dba4b25605f5c88a7a3cecf386
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 24 00:45:08 2022 -0400
fix: tag list styling
commit 25ba1159ad5cabfe79c80a40ead158c389a68bef
Author: Youssif Shaaban Alsager <ysh-alsager@hotmail.com>
Date: Wed Aug 24 05:32:40 2022 +0200
feat: Add internationalization (i18n) support (#182)
commit e38eaa94d6d0d91486bd3b778102658a36ee254f
Author: Vincent Huang <vincenthuang75025@yahoo.com>
Date: Sat Aug 20 20:31:06 2022 -0500
Popover preview should show relevant heading (#180)
commit a78926ede5a951b2ba48e506c93d25060e240c0e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 11 11:42:16 2022 -0700
feat: link previews to page-list (closes #173)
commit 5c76d8dad9d993010c4e57c6de4e90911a3cd11a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Aug 5 11:08:52 2022 -0700
fix: make callout detection case-insensitive (closes #171)
commit 3dcc1f1106c1ad81cf6cd0a45f51249d719d694f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Aug 5 11:04:01 2022 -0700
feat: better graph scaling (closes #170)
commit ff770927fdbb13e07572b3993686686da4493cc9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 4 14:50:24 2022 -0700
style: _callouts.scss simplification (#169)
commit 7ffc907907b14722bf691d1cbd5f178c1c0943a6
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 3 23:46:55 2022 -0700
fix: CJK search (closes #163)
commit 6dd4c64a4c09eed71718fe67491dda95f286d345
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Aug 1 07:59:49 2022 -0700
fix: highlights being stripped in non-semantic search mode
commit 8fc6b8e28ebd08eb05aea80e602b9f279f660b5b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 31 18:21:17 2022 -0700
docs: update, re-added debounce
commit b10b23a47bb822bc3eee671d24fd954ec8d74a7d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 31 18:02:06 2022 -0700
docs: add documentation for Operand Search, remove debounce
commit 23380d0519365d09cb629a66fe2ccba1c56e91f2
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 31 16:55:25 2022 -0700
fix: title not being selected properly, bump hugo-obsidian for uri fix
commit dd047305afa0618d2a5cd11baec064a1c74ccb90
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 31 12:33:36 2022 -0700
deps: bump hugo-obsidian to fix bug of writing to non-existent directory during build
commit 54a8fd4a563bd3de815aaae2c9d9efd57e65be22
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 31 12:24:53 2022 -0700
deps: bump hugo-obsidian to properly copy linkmap
commit 5ef9aad501f17b57107a35508a093211ecf2dbd8
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 31 12:16:36 2022 -0700
feat: add support for semantic search using operand
commit 14b89105dc10eeb3b9b48abf16eda2b9420c64a0
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 31 10:54:23 2022 -0700
refactor: move search utils to util.js
commit 93d039fe7cf14246477844aa1b116585a260003d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 31 10:14:36 2022 -0700
deps: bump hugo-obsidian version
commit 234c707a93e1dbe438d0a45f1348cc6c39e2a265
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jul 30 18:46:19 2022 -0700
docs: improve scss structure and admonition styling, update docs
commit 728d8529ec1a782752abd9254fbc4cae11b8468a
Author: Emile Bangma <ewjbangma@hotmail.com>
Date: Sun Jul 31 02:29:26 2022 +0200
Support Admonition callouts (#166) (closes #88)
commit e142f37e8dea7f6f502026cc35ea02390be63556
Merge: d747b19e 1f3da4b8
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jul 19 09:03:26 2022 -0700
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit d747b19e6104def4b550d86b2ce6ce923773d8ad
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jul 19 09:03:19 2022 -0700
docs: copy edits
commit 1f3da4b8292a7c2ef7eafe9b3a00ef40eb30edac
Author: Pranav M <pranavm7@outlook.com>
Date: Mon Jul 18 11:45:36 2022 -0400
feat: edit the clipboard button to change border colour on success (#162)
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
commit e15e39155de54dc1624bab80eefbccd6a783cd0c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Jul 15 14:26:31 2022 -0700
fix: give precedence to date created over last modified if defined (#101)
commit dff5ae0d4debfdb2de226984e86a987d99d039ad
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jul 14 13:09:21 2022 -0700
style: improve header anchor styling
commit b2555ced61628008e9a1321921376c3f9fb53791
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jul 14 12:02:35 2022 -0700
feat: add description section to section/term/taxonomies, fix header margin
commit 7ccff2cf3d4f7a96be2cf890093798067951fd2e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jul 14 11:49:47 2022 -0700
fix: styling on page-list for smaller screens
commit e0b6606d500e69cc52715729f075808de90f376b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jul 14 10:38:34 2022 -0700
fix: make section-li scss more generic
commit d7a42a2fd7919ac37ff98be31edc34c3511d255f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jul 14 10:30:07 2022 -0700
feat: improve styling for lists, fix anchor offset
commit 422b6cc25bec38785e52f304261f7a7f392ec9e4
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jul 13 23:51:33 2022 -0700
feat: css typography improvements
commit 22c8981bb9a97743f02ab5d5feabda7ff5a6afc4
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jul 13 23:37:54 2022 -0700
feat: css refactor for easy font change
commit 8b2a82a96a2c7c3f40fd5648c756db3408947fdb
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jul 13 22:27:13 2022 -0700
fix: change / to use base url
commit 81af8c459bc9924b8c7137aee9385ed5f5deeb3c
Author: y1450 <107429941+y1450@users.noreply.github.com>
Date: Thu Jul 14 00:02:11 2022 +0200
fix: remove console log (#159)
commit ffe22689eb43f42afc2d6bcf9b8b190b19a7e5d1
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jul 13 15:01:50 2022 -0700
feat: use floating-ui for better popover positioning
commit c1b8fe1221e3367f0632ce43f602e811c0fd0284
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jul 13 14:32:32 2022 -0700
feat: restyle search icon
commit b7a619bbd73f9220f8c1fcbad203792c78343464
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jul 12 14:37:10 2022 -0700
fix: tabsize not being respected
commit 74993d19b72aee78e89b0b13b8f1d4a72fe5fe29
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jul 5 15:42:57 2022 -0700
docs + fix: broken partial and description of enableGitHubEdit
commit 25a4d3b6e17c2a5f6a935446ea97d06a323f71f6
Author: rphla <101242699+rphla@users.noreply.github.com>
Date: Wed Jul 6 06:39:29 2022 +0800
Add GitHub "edit" button (#157)
commit aaf31f419eb167dbb7582fb103be29f0bef95ba9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 3 11:50:13 2022 -0700
fix: copy code block logic for non code pages
commit f54df35767dcda9bc4853decff86d57323593685
Author: Geoffrey Garrett <g.h.garrett13@gmail.com>
Date: Sun Jul 3 20:42:35 2022 +0200
Copy to clipboard feature for code block (#152)
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
commit 015ed4cfa2db4636e03debcda0d4201f24346098
Author: Aiden Bai 白宇彤 <aiden.bai05@gmail.com>
Date: Sat Jul 2 19:40:18 2022 -0700
Fix `width: auto` for SPA routing (#156)
commit a8137edf247c46ef3a5af78c48bcd299a13c1a7d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jul 2 17:14:17 2022 -0700
fix: adjust weird colours for err highlighting
commit eda370334a3798070c2f79ec38021edb3b33a84f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Jul 1 11:27:50 2022 -0700
fix: image scaling for md-style links (closes #155)
commit d3e20b8b94c9229e94fccbe54c867efde6847c6e
Author: Geoffrey Garrett <g.h.garrett13@gmail.com>
Date: Fri Jul 1 20:03:52 2022 +0200
Added optional rendering of code block titles (#148)
commit 8d7a7b712f5a4ee49e3687de8fb00f76d7571368
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Jul 1 11:02:42 2022 -0700
fix: non-SPA fn defs (closes #154)
commit 0896814959e912cabaf9ec83bc0a3eb77d152842
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jun 29 17:35:29 2022 -0700
docs: remove test image from hosting
commit 8b2fba895aa804e895eaa02a622f318113a35663
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jun 29 17:34:05 2022 -0700
feat: image scaling (closes #131)
commit e884f4927f3e48285ca6689507f5e0f61072de04
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jun 29 17:17:53 2022 -0700
fix: anchor formatting (closes #141)
commit 2b0482ae4c5ef7d5c7cc5d33419c1fb440c0238a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jun 29 17:03:41 2022 -0700
docs: fix page weight
commit 8a100edeb81382dc838f600ee1b8dbd3e7560e37
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jun 29 16:57:36 2022 -0700
docs: polish and update
commit 200c60514207d7970968e31740797fad76f56ee7
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jun 29 16:16:06 2022 -0700
feat: enable raw html by default (fixes #143)
commit f2078ee621b7137c49b176156ff70ddb5359d5a8
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jun 29 16:12:33 2022 -0700
fix: prefix images with base url for non-root quartz
commit 916c51c19c3aa5406cf1d5062f10a0b858f487cc
Merge: 72941965 67a7ba37
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jun 28 23:21:25 2022 -0700
Merge pull request #150 from aidenybai/bump-million
commit 67a7ba37e899ca0555fa37e159af6d599cf468ee
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue Jun 28 21:43:28 2022 -0700
Bump million to 1.11.3
commit 72941965abc135f8df28b47a90a7b2965fb075bd
Merge: 34b03537 b732293f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jun 27 16:27:57 2022 -0700
Merge pull request #146 from geoffreygarrett/hugo
commit b732293f65999e9a1d3a40a5ddeccf53a385b1f3
Author: Geoffrey Garrett <g.h.garrett13@gmail.com>
Date: Tue Jun 28 01:21:22 2022 +0200
fix(head.html): Adds robustness to `config.yaml` favicon definitions
Initially assumed that `href` definitions should have `/...` as their
pattern, and `baseURL` would always end with `/`, however the omission
of `/` as the prefix of the former and suffix of the latter
simultaneously, would result in broken favicon paths. Final comment:
`..///...` is not breaking, which is worst case scenario with this fix.
commit 7070a1992a6c9462d50afcc7139f8f97e1dce2b8
Author: Geoffrey Garrett <g.h.garrett13@gmail.com>
Date: Tue Jun 28 01:15:33 2022 +0200
docs(config.md): Fixed multi-favicon examples and general favicon explanation throughout
commit 997937af5a6dc317da56ae294dce927ec5930a4b
Author: Geoffrey Garrett <g.h.garrett13@gmail.com>
Date: Tue Jun 28 00:45:48 2022 +0200
docs(config.md): Added short explainer on favicons
commit a334b45b17f0966214d44a5b775c273e1ba7874b
Author: Geoffrey Garrett <g.h.garrett13@gmail.com>
Date: Mon Jun 27 22:05:35 2022 +0200
docs(content/notes/config.md): Adds documentation for the new favicon support
commit 473ea2c66f9122cec2647c281ca47cc073ca5fd0
Author: Geoffrey Garrett <g.h.garrett13@gmail.com>
Date: Mon Jun 27 22:04:32 2022 +0200
feat(layouts/partials/head.html): Adds general favicon support with dict and string input format
commit 34b0353797a0d24c309139034918ad2060f504f5
Merge: dbd4fb75 52a185f7
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jun 7 08:43:52 2022 -0700
Merge pull request #140 from DhammaCharts/hugo
commit 52a185f73b18d8e5a564c2144401de750b0e025a
Author: DhammaCharts <100090806+DhammaCharts@users.noreply.github.com>
Date: Mon Jun 6 16:49:01 2022 +0100
change enableGlobalGraph to false
commit 69c74ca6b5854cbb3e7dd895dca0539f51f49720
Author: DhammaCharts <100090806+DhammaCharts@users.noreply.github.com>
Date: Mon Jun 6 16:48:16 2022 +0100
minor adjustment
commit ab809249c8f57c1980de2fa850eef66301619307
Author: DhammaCharts <100090806+DhammaCharts@users.noreply.github.com>
Date: Mon Jun 6 16:42:53 2022 +0100
Update layouts/partials/head.html
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
commit 84c75d05460dd2974ff04a43f6a770fc31deca63
Merge: a275123b dbd4fb75
Author: DhammaCharts <100090806+DhammaCharts@users.noreply.github.com>
Date: Mon Jun 6 12:56:47 2022 +0100
Merge branch 'hugo' into hugo
commit dbd4fb7595055551118e7dab59a11459bcdc3d9b
Merge: 84c6e1ef a1293f82
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Jun 3 10:59:18 2022 -0700
Merge pull request #139 from aidenybai/prerender-latex
commit a275123be2b1d528dbde23beb9880933c4e22c3e
Author: DhammaCharts <100090806+DhammaCharts@users.noreply.github.com>
Date: Thu Jun 2 08:35:28 2022 +0100
better font behaviour
commit c88f31c3645bb0002171bf21850c7ca6d217c73f
Author: DhammaCharts <100090806+DhammaCharts@users.noreply.github.com>
Date: Thu Jun 2 08:16:02 2022 +0100
change to object destructuring for drawGraph() arguments
commit d261655d96f9ed084a176ed113b0d11f1351c6de
Author: DhammaCharts <100090806+DhammaCharts@users.noreply.github.com>
Date: Thu Jun 2 07:49:09 2022 +0100
remove unnecessary ternary
commit c0800a874980ab0f24fc2e350d70792d9c7f2956
Author: DhammaCharts <100090806+DhammaCharts@users.noreply.github.com>
Date: Thu Jun 2 07:45:44 2022 +0100
change baseURL back to original
commit ac0dd50c048d68884b0ada42e3ab0476fb29ef65
Author: DhammaCharts <100090806+DhammaCharts@users.noreply.github.com>
Date: Wed Jun 1 21:30:40 2022 +0100
uncomment window.Million
commit e809896338b51e65ca862809e79884469476f2de
Author: DhammaCharts <100090806+DhammaCharts@users.noreply.github.com>
Date: Wed Jun 1 21:22:31 2022 +0100
increase scale
commit 19606ba63d15edd1e4a98bf1ce5cd510a24880e0
Author: DhammaCharts <100090806+DhammaCharts@users.noreply.github.com>
Date: Wed Jun 1 21:19:03 2022 +0100
add www.
commit 1e237ef677f3b958597460175269eed4b0638112
Author: DhammaCharts <100090806+DhammaCharts@users.noreply.github.com>
Date: Wed Jun 1 20:15:44 2022 +0100
change baseURL
commit 5a1fbc937470b4f43b318dd0fa9af01b4a47b188
Author: DhammaCharts <100090806+DhammaCharts@users.noreply.github.com>
Date: Wed Jun 1 13:49:27 2022 +0100
Improve graph display, options and ability to have a global graph on the home page, local graphs on subpage.
commit a1293f820a733978f1da8ebd13e676f46634f60d
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Sun May 29 20:40:44 2022 -0700
Prerender latex
commit 84c6e1efed856b2e03100e4cfd88f2d9cd44cb9c
Merge: 775a1b24 8673a7bc
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat May 28 23:27:54 2022 -0700
Merge pull request #138 from aidenybai/add-footer-config
commit 8673a7bc3d1061eb11381e8d7e85dd0d2e1fa64c
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Sat May 28 22:52:18 2022 -0700
Add option to toggle footer
commit 775a1b2490883e1eefa1c87f5477007365d694d6
Merge: cbc2bea4 006b74ec
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri May 27 19:21:05 2022 -0700
Merge pull request #137 from aidenybai/fix-non-spa-routing
commit 006b74ec6feed2d01099754c888bac4a9474a6b1
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Fri May 27 18:45:42 2022 -0700
Fix formatting
commit 8aba612a0013e84f0b3f9d60863c02ad1b0bfd6e
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Fri May 27 18:42:01 2022 -0700
Fix non-spa fallback
commit cbc2bea413ddf58c6316e49c45b5a5a55f4271e2
Merge: ba586adc ae240ff8
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri May 27 18:32:49 2022 -0700
Merge pull request #136 from aidenybai/custom-progress-bar-color
commit ae240ff82cd8de66c28b1608e72db6ed397cab13
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Fri May 27 18:31:36 2022 -0700
Remove redundant CSS rule
commit ba586adc76df6d75048a61e5dd529704496f6bda
Merge: 232bd2f0 159deabf
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri May 27 17:14:55 2022 -0700
Merge pull request #135 from aidenybai/bump-million
commit 159deabfe160c7570679269873f18776cb586437
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Fri May 27 16:14:17 2022 -0700
Bump to 1.9.6
commit 44984cdaf4dfca8c25e9b73066ee22c775ed6d2e
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Fri May 27 13:27:13 2022 -0700
Add support for progress bar
commit 683cb53cbd4d581a061b64a26da54285ef479e19
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Fri May 27 13:19:19 2022 -0700
Bump million to 1.9.5
commit 232bd2f016f7d57602fe39703407100f5d26f278
Merge: 0293c122 e0fd9570
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri May 27 11:01:20 2022 -0700
Merge pull request #134 from aidenybai/add-prefetching-within-graph
commit e0fd9570d746cb2aa270dbe64dae038fc02bdbac
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Fri May 27 09:49:28 2022 -0700
Bump million to 1.9.4
commit bc32bbeaed10eac3094fcaa899ca626dc8e56771
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Fri May 27 09:02:01 2022 -0700
Bump milliomn to 1.9.3
commit efb6c7845f0a2743dd07b81f1d03b03d058ede0d
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Fri May 27 08:40:00 2022 -0700
Add prefetch to graph
commit bd316d8249f096c4d5616d682f142f49d4ca914f
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Fri May 27 08:39:44 2022 -0700
Bump million to 1.9.2
commit 0293c122177bf8c595cda8b4dfb513d90b1e6b03
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon May 23 22:25:13 2022 -0700
feat: recent posts section/partial
commit 0439c163a03fc50487fbe1cbfc09dc38af7ed2f2
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri May 20 16:50:56 2022 -0400
fix: js not executing if spa disabled
commit 0b6711c2185abbde7e95125b672ee8b5d827cb8b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat May 14 16:47:50 2022 -0400
fix: tag boxes overlapping for content with many tags (closes #130)
commit ed9a8efd1ff4ee569fa4256e044151670abaea82
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu May 5 21:11:23 2022 -0400
fix inline link highlighting, safer latex render
commit e302f6c423136d1dbdfda48c2b241e62bb5654e7
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu May 5 20:35:32 2022 -0400
fix: more generic style to match bad nesting generated by popover interp
commit b21b27d1d3d68bfb4d285f39122a154fceefb9ab
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu May 5 20:30:55 2022 -0400
fix: clean wikilinks and render latex in popover
commit 364aee36fc8891c48ab2bd20c396ce321cd7a0a6
Merge: cea0f3eb 8b855b52
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu May 5 01:03:09 2022 -0400
fix: merge conf
commit cea0f3eb743b26db0d5297ab10e229617585fe0c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu May 5 00:58:50 2022 -0400
feat: contextual backlinks (closes #106)
commit 8b855b522ac472b666379743dafeace6ae37fb1a
Merge: b67a389b 7b3696b8
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed May 4 11:40:38 2022 -0400
Merge pull request #125 from aidenybai/fix-latex
commit 7b3696b877c33f8dc605be1f4f4a688fe0df5b84
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Wed May 4 08:39:25 2022 -0700
Remove pnpm debug log
commit b4ff12ca0b1b5179c20a1ea57f182caa703b0826
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Wed May 4 08:10:59 2022 -0700
Fix latex
commit b67a389beacfade21276461f3e275c07969664e5
Merge: a0997444 2b5c03c9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue May 3 13:59:02 2022 -0400
Merge pull request #124 from aidenybai/hugo
commit 2b5c03c97286e06e94e8a27634678e64473a2ec8
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 10:55:45 2022 -0700
Remove redundant URL construction
commit aaed5dc1f1849a54869743596a6133548e83392d
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 10:54:39 2022 -0700
Support /path root sites
commit 1a5d158fce648492c48644acfea039261ac1dffa
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 10:38:41 2022 -0700
Support active node with other data at end of url
commit a09974446d5be617267c2e6ad8c956e88ce83176
Merge: 03742621 9fc71603
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue May 3 13:21:32 2022 -0400
Merge pull request #123 from aidenybai/fix-popover
commit 9fc71603ba3fb58239e7c2647c92996076442900
Merge: d38f9bec 3789df80
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 10:18:41 2022 -0700
Merge
commit d38f9bec70c7e46d9e7662ba3925abc9cdd9370a
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 10:16:09 2022 -0700
Rename API and generalize router API
commit 771ebd8031819dcaf9e3d6744643677e30c14b64
Merge: e4cc625c 03742621
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 10:07:38 2022 -0700
Merge
commit e4cc625c33ecd2992dcf60f408417c3067b4fa2b
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 09:34:27 2022 -0700
Add future note about init function
commit 3789df80e437f9e31560e7eed14e33d80e5ff3a0
Merge: 32c79a56 03742621
Author: Aiden Bai 白宇彤 <aiden.bai05@gmail.com>
Date: Tue May 3 09:33:00 2022 -0700
Merge branch 'hugo' into fix-popover
commit 037426217c5bee94f7c619f62e63d71c1f31b5bb
Merge: 6e6dd4cb e646cdb0
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue May 3 12:29:26 2022 -0400
Merge pull request #122 from aidenybai/fix-active-graph-node
commit e646cdb0be7977f31fa1d619a5b9125875c73475
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 09:27:25 2022 -0700
Use explicit regex for trailing slash trim
commit 8d092a3a4aca9561f3ac852e01518f48c8ef68fe
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 09:22:51 2022 -0700
Remove unnecessary 'url' argument in graph.html
commit 32c79a561fa82dbf6537b96e83ab3da2a848b211
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 09:21:44 2022 -0700
Remove unnecessary 'url' argument in graph.html
commit 3c660dd9b5f9e1133bc8a1228287508504b7c132
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 09:20:01 2022 -0700
Remove unnecessary 'url' param in drawGraph
commit 4cca3c1f2df91ba7bb111346447279087e04069a
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 09:04:15 2022 -0700
Peg router version
commit 9d3bbd607687899d173e9087f2782d7460ebee82
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 08:53:18 2022 -0700
Fix active node on graph
commit 9c71f07355d8e98478e755875e53596f66c58fa9
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 08:48:35 2022 -0700
Enable config for testing
commit 77485b754dbb3d08e437b4157f3eafb5871624b9
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 08:47:42 2022 -0700
Fix popover
commit 6e6dd4cb0b396ae7ec4f273bccd254bc0f9885d5
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue May 3 10:57:20 2022 -0400
fix: trim trailing slash when calculating popover
commit 81fe2d24936ad4b783f41b260b4a4801bacb654b
Merge: 24d08d58 321e19dc
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue May 3 10:44:56 2022 -0400
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit 24d08d580d61363faab495a8a022248a7499dc26
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue May 3 10:43:22 2022 -0400
cfg: make SPA optional
commit 321e19dc415a316c71ba50e11ab0428bda92b0e6
Merge: 12d33619 97607c3c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue May 3 09:48:50 2022 -0400
Merge pull request #121 from benbohmer/patch-1
commit 12d33619a28a2e1a27fca109e3ba966bef65ebab
Merge: fc89ff26 4197ad46
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue May 3 09:47:48 2022 -0400
Merge pull request #120 from straightupjac/fix/github-info
commit 97607c3ca5ac837f7f6bc7a048b72a8271fbd570
Author: benbohmer <103453816+benbohmer@users.noreply.github.com>
Date: Tue May 3 09:10:45 2022 +0200
fix: keep / at end of URL to avoid redirects
Removed strings.TrimRight "/" in line 10 to keep the trailing slash at the end of URLs in regular links. This avoids having every single internal link being a 301 redirect.
commit 4197ad460afd96ab508d421939b92f80bbcdc5ca
Author: straightupjac <jdc.jaclyn@gmail.com>
Date: Tue May 3 01:51:15 2022 -0400
fix github info
commit fc89ff2680977dbaf1dabb91be01ad2b84903d8a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon May 2 13:00:41 2022 -0400
fix: broken semi and graph min-height
commit e9a33c04b5efcf01e9ba5a5bb1ec6619ea510122
Merge: 9ba0a4b3 b0e15e0c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon May 2 12:56:44 2022 -0400
fmt: remove semis for good
commit b0e15e0cbc445e12e3aabfe90ee2fc6bf2c33782
Merge: 66304da0 f1b85fb6
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon May 2 12:19:26 2022 -0400
Merge pull request #118 from aidenybai/add-router
commit 9ba0a4b34fa2e4993b8be021ee79d10d2674eba4
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon May 2 12:14:51 2022 -0400
fmt: remove semis :)
commit f1b85fb6d9612d9c9d5293e27e489576800ed219
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Mon May 2 09:10:40 2022 -0700
Fix clarification comment
commit 66304da027e35abff31f05e5a895ebca52976ccb
Merge: 416dc0b8 87144fca
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon May 2 12:06:57 2022 -0400
Merge pull request #119 from aidenybai/add-prettier
Add prettier config
commit 40d216759cb88e101aac06a7c02070336d2907ce
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Mon May 2 09:05:02 2022 -0700
Expand template
commit 5c602ab16f1f5e46bee5f44cec15860f785039ee
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Mon May 2 09:04:36 2022 -0700
Add clarification comments
commit 87144fca212b25093adbf743014d5c0d5b1d9c0d
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Mon May 2 08:57:25 2022 -0700
Use semi: false for prettier config
commit a9523dd39bf931e491750bb832dd13678e0e0c0d
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Sun May 1 22:08:14 2022 -0700
Add prettier config
commit bcb166c21cf4cf6d923608c12729373cf926eddb
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Sun May 1 22:06:33 2022 -0700
Add router
commit 416dc0b85cabfbb1dced0262b11256fa258f5ee9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Apr 30 13:13:30 2022 -0700
fix: add update for local hugo-obsidian on make update
commit b8a660e208333ea8ef4998c2f815411f12ce7067
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Apr 30 13:10:12 2022 -0700
feat: copyable header anchors (fixes #86)
commit ec86cca97bef277a3b3a84580c4164ce721a92a4
Merge: 87b5a7a2 f7027e7e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Apr 28 15:53:57 2022 -0700
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit 87b5a7a2519c70b6f6e678c6b86a3aefc4dd3218
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Apr 28 15:49:16 2022 -0700
feat: show graph titles on zoom (fixes #92)
commit c8d390dbc5a749af533f1ec05de2d5b6f37fa156
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Apr 28 13:45:29 2022 -0700
fix: always hide popover on mobile (fixes #104)
commit 3c7ece5405436c85282f156cf387b11d08cc2d87
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Apr 28 10:48:31 2022 -0700
fix: append trailing slash, fixes #111
commit f7027e7ecd26abe2a99ea1bb280808a4294bb4f2
Merge: f05ff5e6 0cfd93c5
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Apr 20 09:20:21 2022 -0700
Merge pull request #108 from exu3/patch-1
commit 0cfd93c57cdb31c0f0c48bddb407158ea2e0d7db
Author: Ella <git@ella.cx>
Date: Sun Apr 17 02:11:17 2022 -0700
Fix another typo
commit 3f8c47367830f9686b91c2c32158940de4c65466
Author: Ella <git@ella.cx>
Date: Sun Apr 17 01:33:16 2022 -0700
Fix typo: recomment -> recommend
commit f05ff5e62d5e2720a05cc3cde33f110686ab5268
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Apr 5 23:19:33 2022 -0700
fix: add dropshadow to popover, cleanup animation
commit 12ed9722d80e2ae517ac0face184339f07ae10fd
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Apr 5 22:43:11 2022 -0700
fix: popover selection wrongly including line breaks
commit 887d4d4f5ecb21e436f9a0c88cc690fc245c9747
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Apr 5 21:40:59 2022 -0700
deps: bump hugo -> v0.96.0
commit f9c7cdf928e8068532d2630336a7b08d5085548e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Apr 5 20:44:39 2022 -0700
fix: check for src before attempting to add popover
commit 2d55b6ac2e0580ee8f831e46065fc94db7c9d687
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Apr 5 18:07:40 2022 -0700
fix: missing whitespace chomp in link render hook
commit d5884aedb7dcd4e7711e53b7b462d1ac0bbc242e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Apr 5 14:14:19 2022 -0700
fix: wikilink patch not applying to transformed text like apostrophes
commit 66eaa444a41d1bd87bb1f28f9786412db6e7e274
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Apr 5 14:08:36 2022 -0700
fix: wikilink image relURL for images with spaces
commit 0ddc48a4529a06b48e10e0917c815d99220eebd3
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Apr 5 13:47:24 2022 -0700
fix: wikilink-like text in code fences #95, #97
commit cd19159c53a5f774275edc72bdc9bcb679b77242
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Apr 5 12:47:28 2022 -0700
feat: wikilink img support
commit 7808c66c4dd64ee1a4dc0255533a74f2996ab957
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Apr 5 09:41:13 2022 -0700
fix: align footer links
commit a7abc6ab96002d103e5e349f345d4108550256f5
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Apr 5 00:09:56 2022 -0700
docs: make update command and clarify update steps/potential danger
commit 9509a64354f40981ec0efccb7dda0c1c5da2c190
Merge: 53242b1e 3ce6944c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Apr 5 00:02:48 2022 -0700
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit 53242b1e5742d0730515b6e104ee626dfd5a14f2
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Apr 5 00:02:37 2022 -0700
add update target to Makefile
commit 3ce6944c189097cfde3415434cf33b56b3ceaf41
Merge: e2455050 3583265f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Apr 4 23:56:28 2022 -0700
Merge pull request #93 from meleu/patch-3
commit 3cec4fd950f69762daf7f44c46619cd31b1fc61e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Apr 4 23:30:28 2022 -0700
update screenshot
commit e245505082eedb720873e20331c36952ded67d09
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Apr 4 23:25:24 2022 -0700
feat: hide toc for short notes
commit fc4b9ded76c31ef940e281d9c1bfda850df23d5d
Merge: 3781b677 27c4761f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Apr 4 23:20:43 2022 -0700
Merge pull request #94 from meleu/patch-4
commit 27c4761fe01433b971ba6c2f67af3f003df56aed
Author: meleu <meleu@users.noreply.github.com>
Date: Mon Apr 4 20:15:40 2022 -0300
link to home goes to baseURL
commit 3583265f80afa081bf7a1fe996a9b3fe3c4e32e0
Author: meleu <meleu@users.noreply.github.com>
Date: Mon Apr 4 17:30:23 2022 -0300
docs: warn about possible lost of customization
commit 3781b67707ed9992a5aec843dc5ede7c2cb8a608
Merge: 1613511f 671fe053
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Apr 4 13:08:42 2022 -0700
Merge pull request #91 from meleu/patch-2
commit 671fe05312ded0e96ba16140290a375c51c975ba
Author: meleu <meleu@users.noreply.github.com>
Date: Mon Apr 4 17:07:43 2022 -0300
padding and border-radius matching bottom cards
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
commit 1613511f393fe9460937e7e88cc731d269bb6621
Merge: acab4887 575288ec
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Apr 4 09:45:05 2022 -0700
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit acab488784b52edfb176c5a455580abeb142324f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Apr 4 09:44:58 2022 -0700
re-add obsidian file
commit ff91dcd196d71356b021ec9d381767e7c38b0756
Merge: a287d112 575288ec
Author: meleu <meleu@users.noreply.github.com>
Date: Sun Apr 3 22:14:12 2022 -0300
Merge branch 'jackyzha0:hugo' into patch-2
commit a287d11246cc0c18a9bf4435bddffc9e163e64fd
Author: meleu <meleu.dev@gmail.com>
Date: Sun Apr 3 22:12:55 2022 -0300
add a collapsible ToC
commit 575288ece94d2093bda7467be1a25092bab9c366
Merge: 25b5ac43 1d9c0e4a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Apr 3 17:57:46 2022 -0700
Merge pull request #88 from meleu/patch-2
commit 25b5ac43ddbf9899e9a11b4ad8083a4c66bcf637
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Apr 3 17:43:37 2022 -0700
fix: favicon not showing on non-root domain #89
commit 1d9c0e4a44d4551b7d57678928600aed1428a243
Author: meleu <meleu.dev@gmail.com>
Date: Sun Apr 3 16:31:29 2022 -0300
use "enableToc: false"
commit e62d512d95bc52f3113cae5e3763665364fa7c72
Author: meleu <meleu.dev@gmail.com>
Date: Sun Apr 3 16:29:10 2022 -0300
disable ToC if frontmatter has "enableToc: false"
commit 8f15c5f8c1a0650d3c757f8cdf8ea12e4128ee97
Author: meleu <meleu@users.noreply.github.com>
Date: Sun Apr 3 16:22:32 2022 -0300
disable ToC if enableToc: false
commit efeaf9b49ccbc2e595277f6c558057e863e0ac8c
Merge: 91c4e3fb 22f11711
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Apr 3 11:44:39 2022 -0700
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit 91c4e3fb3a5d9e86e5fb513bb65da89d4b061b08
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Apr 3 11:42:42 2022 -0700
fix: multiline code block #87
commit 22f11711b2500b739e56ddb7d39660c4e8856be6
Merge: 16b177ce 5c3ef884
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Apr 3 08:17:13 2022 -0700
Merge pull request #85 from meleu/patch-1
Ah my git was being really weird with cases :')) thank you
commit 5c3ef884c78b190e5fc22e122d55af097d8bef3e
Author: meleu <meleu@users.noreply.github.com>
Date: Sun Apr 3 11:19:21 2022 -0300
duplicated file
commit 16b177ce6603db9bc242104c0ef5692e2832d3f7
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Apr 2 21:04:20 2022 -0700
README update
commit 14c6181d240e69f48f6a2548136613b2b0739720
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Apr 2 20:37:42 2022 -0700
bump hugo version v0.82 -> v0.92.2
commit e6e04c03c473175961e1d5f9c815c3671f237c8e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Apr 2 20:34:55 2022 -0700
fix latex misrendering
commit 146e975932a80634500720f88843041fdf62bfec
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Apr 2 20:21:16 2022 -0700
bump hugo obsidian, fix backlinks for subpathed quartz, update homepage
commit c117e38899a7e122fb4dee87f5d091e654e0939f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Apr 2 20:06:31 2022 -0700
feat: wikilinks implementation
commit 4fd983277e36e323675e2d77048fb3daaa016dc6
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Apr 2 17:38:39 2022 -0700
fix: cjk support + demo page
commit cc86136bcb4cc61219a8ee7573e792e6a6043dcd
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Apr 2 17:00:14 2022 -0700
feat: basic latex support
commit 8e083d4a93383214d5d020c925dc5d7b65cc04db
Merge: c51573ef 03b574b1
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Apr 2 14:53:05 2022 -0700
Merge pull request #83 from meleu/patch-2
commit 03b574b1606c836eda158c8fdfe0e251a1364fe8
Author: meleu <meleu.dev@gmail.com>
Date: Sat Apr 2 18:51:45 2022 -0300
cleanup
commit a469653f7575ae604ec3e979768f4ddfecf5e2b5
Author: meleu <meleu.dev@gmail.com>
Date: Sat Apr 2 18:50:58 2022 -0300
separate contact links semantically
commit c51573efa98de6b5b5e79fb60b49f31daca70527
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Apr 2 13:34:26 2022 -0700
feat: grey out broken links
commit 902d0f2a0fe84d383eb1b011aee636ccb9687f6f
Merge: 1ddd15af 9c5ecccf
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Apr 2 12:59:47 2022 -0700
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit 1ddd15afc6e69202080ffb91e8d82deb653a80b7
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Apr 2 12:59:38 2022 -0700
fix: non-unicode character in popover and search #67, #68
commit 16f8cd7100c7733b8ee29296fb0369ae24f899cd
Author: meleu <meleu@users.noreply.github.com>
Date: Sat Apr 2 13:37:12 2022 -0300
separate links with ​
commit 9c5ecccf25c35cd94bc6c7468d45e4c3e6a932bc
Merge: 3674df48 e3cd531c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Apr 1 14:17:35 2022 -0700
Merge pull request #82 from meleu/patch-1
commit e3cd531c537d4d82400275c1b018382a19041b4b
Author: meleu <meleu@users.noreply.github.com>
Date: Fri Apr 1 18:13:49 2022 -0300
fix custom.scss path
commit 3674df48b8eed55728780d05bc9b577e8aab0a3b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Apr 1 10:13:01 2022 -0700
fix pagination styling
commit 9e8c5587e433b3d1440803d7f995a2a8b55ba45e
Merge: 6605b13b 6edc9798
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Mar 31 23:16:00 2022 -0700
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit 6605b13b86c5e15bcaa2821937f97a59c4d2bbae
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Mar 31 23:15:54 2022 -0700
more troubleshooting, backlinks reference private page fix
commit 6edc979896f7548a8f9efe1c167fe9cd9d9e4c1c
Merge: 54a68e6e fc439224
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Mar 21 09:15:35 2022 -0700
Merge pull request #71 from siyangsun/patch-1
commit fc439224456010aad4802c9003c0dcebf1e38157
Author: Siyang <siyangsun2007@gmail.com>
Date: Sun Mar 20 22:37:05 2022 -0700
add to showcase and fix link to file
commit 54a68e6e5c020fa1e4eacf7942eb37974f332887
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Mar 18 10:53:39 2022 -0700
patch image
commit a6ab2f92ef8cb62d0399b1121cfabaa137906d51
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Mar 16 17:54:24 2022 -0700
add update
commit fda481fbb91fee6fc9e99c56c2cf80ff8835a946
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Mar 15 01:12:08 2022 -0700
fix: bump hugo-obsidian version to account for contentIndex paths on windows
commit 94e987dab5a50196bc2273addc6f908178abd0fb
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Mar 15 00:37:56 2022 -0700
feat: better titles for empty pages #61
commit e981c76ed4b2d220c0394bdcbf5a22a282561fd3
Merge: 651bfc5c f70128a3
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Mar 9 10:11:36 2022 -0800
Merge pull request #65 from claudio4/fix-text
commit f70128a3deacc26ceccb7d397ce6cd73acceb7f9
Author: Claudio Yanes <me@claudio4.com>
Date: Wed Mar 9 17:58:01 2022 +0000
Prevent overflow of long links and words
When a word (or any string withtout breakpoints (spaces, dashes....), making links the most common place where this becamoes an issue) is wider than its container, the text will simply overflow any container, including the viewport. This commit fixes this behaviour by making the word-drap strategy of the browser more aggresive.
commit 651bfc5cd284a259f429b50839c619dd1b94498a
Merge: 90727099 60794201
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Mar 7 10:45:07 2022 -0800
Merge pull request #62 from claudio4/hugo
commit 6079420178788ca74e574e35ad0212d1e6f41b6e
Merge: 978d5ca1 b96c60ed
Author: Claudio Yanes <me@claudio4.com>
Date: Mon Mar 7 18:28:14 2022 +0000
Merge branch 'jackyzha0-hugo' into hugo
commit b96c60edfc3429a2c478b2d1eb809fb9f20b4219
Merge: 978d5ca1 90727099
Author: Claudio Yanes <me@claudio4.com>
Date: Mon Mar 7 18:27:45 2022 +0000
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into jackyzha0-hugo
commit 978d5ca1aee23d6663e508aa24b389b6c9003d04
Author: Claudio Yanes <me@claudio4.com>
Date: Mon Mar 7 18:25:02 2022 +0000
Format JS
commit 907270992d7718f26d0a401ab700c6a0a414b440
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Mar 4 23:55:07 2022 -0800
fix: hide popover on mobile to prevent overflow
commit 6f9283e95b9f0b85c0d9dc7374ed75eff2a9149d
Author: Claudio Yanes <me@claudio4.com>
Date: Fri Mar 4 22:27:21 2022 +0000
Update makefile and docs
The artifacts produced by hugo-obsidian are now expected to be placed in
the assets/indices directory. This commit reflects this change in the
Makefile and in the docs.
commit 0fad5570d38b6a15e9a0cf2c1b1f24e6c2897551
Author: Claudio Yanes <me@claudio4.com>
Date: Fri Mar 4 04:14:42 2022 +0000
Add .gitkeep to assets/indices
commit dc9b421e21d02e9d247d1640cb518c416a5dcbab
Author: Claudio Yanes <me@claudio4.com>
Date: Fri Mar 4 04:12:43 2022 +0000
Remove unnecessary scrollbars
The margin property can escape the parent node and move it alongside
its child. This happens with singlePage div and the body, resulting in
scrollbars appearing as the body has the size of the viewport but
does not align with it. This phenomenon can be always observed
in the vertical axis and it can also be observed in the horizontal axis
when the viewport it’s not wide enough (mostly in mobile).
Using paddings prevents this “extra space” from scraping and displacing
the body.
Also, the value 100vw does not take into account the space taken by the
vertical scrollbar, thus making the body wider than the actual viewport,
producing a horizontal scrollbar.
commit 8779e72c77c2e454d444b86d3d5ebda9bfab46d7
Author: Claudio Yanes <me@claudio4.com>
Date: Fri Mar 4 03:34:45 2022 +0000
Add attribute property to scripts from jsdelivr
Adding the integrity attribute protects the website (by refusing to load
the script) against malicious modifications of the script
in the case of jsdelivr gets hacked
commit 7f6523337c96e631e80b18c888b2f237ea8a4482
Author: Claudio Yanes <me@claudio4.com>
Date: Fri Mar 4 03:24:32 2022 +0000
Move popover to the end of the page
The popover script doesn’t ever start in until the DOM has finished
Loading, so wait for the script to be downloaded and parsed before
Showing the content to the user makes no sense.
commit 7e0f2e44497adeade4aa5a99da897be29cb49016
Author: Claudio Yanes <me@claudio4.com>
Date: Fri Mar 4 02:25:30 2022 +0000
Fix fetchData
The fetchData function suffer from a race condition. If the function is
called before the promise finishes, it will result in another pair of
HTTP request. This does not only make the function useless but
Actually, it makes it harmful as the data might be redownloaded twice.
Now fetchData is not a function but rather the promise by itself.
Previous callers are expected to await the variable instead, this
should be not concern as awaiting a promise multiple time in
JavaScript is completely safe.
commit 1313bd9779c638f09b8901f8432d6bc39910bce3
Author: Claudio Yanes <me@claudio4.com>
Date: Fri Mar 4 02:07:51 2022 +0000
Move css and js to appropriate files
Having the CSS and JS in the html template produces pages larger
than necessary, as each page need to contain all the js/css.
Separating them in appropriate files allow the browser to just download
them once and use them for all the pages. This is even more effective
with an aggressive cache policy for the js and css, something that can
be done without fear thanks to the implemented cache-busting.
Also, having then in separate files allows us to use Hugo pipelines
for minimizing the code.
commit 5234fae080f1d3dca4f105438e3e0151f12ca61c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Feb 28 08:24:29 2022 -0800
fix backlinks not using baseurl
commit 0ee0855e1c1843a86a7bcd58aee520784c165dba
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Feb 28 07:30:59 2022 -0800
bump hugo-obsidian to support root
commit e06e341468202eebd928dee6a222ea118ef06331
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Feb 28 07:14:55 2022 -0800
fix: explicitly set root as current directory to fix ignore files
commit 73e526a7d50315b9177c2c11d12ebcde71b05fbd
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Feb 23 12:28:25 2022 -0500
add screenshot to readme
commit cdc4f1a8407449be7a514414795f27ff3b70bf37
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Feb 22 13:36:08 2022 -0500
fix: relink search button (move outside content load listener)
commit 714b4fcfa30ac1155747b9af90bc0e9519cb4bba
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Feb 20 21:40:10 2022 -0500
fix links being broken for pages with spaces
commit 9c04ca026676445849081d32efb8e840465994d5
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Feb 17 10:49:41 2022 -0500
rtl docs
commit 388a2bf78bb08c2b37e918c3a2e0acc72803e187
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Feb 17 10:44:39 2022 -0500
docs updates
commit f192f9a23df34d30e223e20ab5e8cb8210a7dfe9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Feb 15 23:03:02 2022 -0500
fix #54: root all image urls
commit 3b3e6ec3b2a56ee4d03b6f4c84af886821bfbe84
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Feb 15 22:54:20 2022 -0500
fix relative pathing for dynamic fetch
commit 8e85e274f6e5913694b67319f1beb7a2ec5b5bed
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Feb 15 19:42:45 2022 -0500
change output to static instead of data
commit fcd5d2807d2bab68c6776e031e85d65fe88a6f7a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Feb 15 19:39:14 2022 -0500
feat: dynamically fetch indices
commit 4587b133600ac59e38d1fccc7c7dba9f2c8f4af5
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Feb 15 17:12:08 2022 -0500
feat: add rtl support as part of #47
commit fb9ea8dcb85e6d2ac6c2a8cf5057f2fb00871b26
Merge: c520db48 10f9843b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Feb 15 16:52:49 2022 -0500
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit c520db488213f6d7844a382fe4f621a85decd60e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Feb 15 16:52:32 2022 -0500
fix: #50, change css load order
commit 10f9843bb6476134532d2002b2d29841755767e1
Merge: 0dc51ff3 31297b7e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Feb 15 14:51:29 2022 -0500
Merge pull request #51 from brandonkboswell/patch-1
commit 0dc51ff39c9c867dd85c37a01c366cd5f278f032
Merge: c35086c5 fa3bc3de
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Feb 15 14:50:34 2022 -0500
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit c35086c5104aedcaae1aba00892b0b4359a8e3cf
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Feb 15 14:50:25 2022 -0500
visibility fix
commit 31297b7e5adfda0def68ac848c4e81789c7278b2
Author: Brandon Boswell <brandonkboswell@gmail.com>
Date: Sat Feb 12 22:35:03 2022 -0500
Added to the Showcase
commit fa3bc3de9273d2cb437605d1b229d9a8d79331b5
Merge: a271fb9d 41c443db
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Feb 11 17:24:54 2022 -0500
Merge pull request #48 from earnestma/earne/configurable-page-toc
commit 41c443dbf079e65ed69f57d3b9a5ce58dc403e6d
Author: earnest ma <me@earne.link>
Date: Fri Feb 11 17:05:38 2022 -0500
Add disableToc parameter to not show TOC on a page
commit a271fb9d74f56b9e44817c7f61300db8d7e713cd
Merge: 9645f003 49cdca5d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jan 31 12:28:40 2022 -0800
Merge pull request #46 from adube/patch-1
commit 49cdca5dfc32e56788f30a9a7e8b5a6225013edb
Author: Alexandre Dubé <adube@mapgears.com>
Date: Mon Jan 31 15:18:26 2022 -0500
Specify Hugo requires extended Sass/SCSS version
Hugo needs to be installed with its "extended" Sass/SCSS version, otherwise this template does not work.
commit 9645f0031756faf815b1df5501d736795cbccc62
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jan 27 09:38:28 2022 -0800
link fixing
commit 57ebf4c21c8b4f7c2ef5126ded39a9facaa848ee
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jan 10 13:08:50 2022 -0800
underscore fix, fix relative path being weird for graph
commit 54e3e071d1c66dec3e04e8246c58fc2067877044
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jan 10 09:00:45 2022 -0800
fix popover regex
commit d46e22383133b944201bf5cdf85d44c48c891d07
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jan 10 08:51:00 2022 -0800
revert baseurl fix
commit 6f9a29c174f8657a90d7dda8d39e933c220fa717
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jan 10 08:49:29 2022 -0800
various path fixes
commit 532bc610254db096807453bf223acaa91634fd81
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jan 5 19:42:13 2022 -0500
set relativeUrls to true
commit 99aea4826068564f81e7f1b402e00e3e101a1476
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jan 4 11:39:22 2022 -0500
docs update
commit 4a3766db56bd08990b59f73e805008e03817556c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jan 3 16:37:24 2022 -0500
update featurelist
commit 4e639979f8175b0a639ba2e25bbd8fa550d728bf
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jan 3 15:36:58 2022 -0500
fix copy selection
commit e49a1ac9db92c6c967be404b5a3b9e3194a4ed99
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jan 3 13:22:04 2022 -0500
made link preview optional
commit 4a3c4fdef550547aa80947ebaff1bda44b943d4d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jan 3 13:18:31 2022 -0500
popover implementation
commit 2b432d7f0b35987ca6886e7041dce861b7e21abb
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jan 2 20:02:47 2022 -0500
fix flex gap
commit 7507fd29912015a72f990b23023ae2946c6cd51b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jan 2 19:49:41 2022 -0500
fix search styling
commit ca886e40752a8a30762708ea87d7228f737c0cd2
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Dec 28 14:28:08 2021 -0500
fix render link for apostrophe
commit 3722e600ee3bd75130e4e228ea45c2074649329c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Dec 27 20:52:30 2021 -0500
bump hugo-obsidian
commit efeaf0f4e47c3484ad84b7b9f755735ae0d810cd
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Dec 27 20:16:21 2021 -0500
add pagination to section, fix graph linking
commit 1a8cdaad24789d75d9453351aff19b434e1ea5c9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Dec 27 19:43:01 2021 -0500
remove console.log
commit e4caa0d1d7fb3bdca6dee07fee299a3acdf40043
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Dec 27 19:35:42 2021 -0500
add taxonomy and term lists
commit a45856d7884fedd3a3bd6b80489c206c75427112
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Dec 27 17:53:33 2021 -0500
fix last modified not working for capitalized pages
commit dbe9b338ccc5df23882ebfa26c9020fb863a4124
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Dec 27 17:44:39 2021 -0500
fix capitalization
commit 000fcdbf991dcc7f81b4cf1b6d7116590070ffd0
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Dec 27 17:43:27 2021 -0500
fix casing
commit 612c44d719f1b47b3c7b3fc5b6ffb48ccec33ded
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Dec 27 17:34:53 2021 -0500
modify obsidian
commit e1911a58fff3b96754b3b49837ac2d4dd4fcf5aa
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Dec 27 17:28:53 2021 -0500
enable last modified info
commit b4e26971165d49604014a1ed38aaa18b2c20fc23
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Dec 27 15:59:19 2021 -0500
content section
commit 094ab9d064b8e3d24f0cb656aaf4e0ea08365ac5
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Dec 27 13:15:10 2021 -0500
dedupe backlinks
commit 39592347cc742838a1d078031b897fe26a94adaf
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Dec 27 13:06:58 2021 -0500
add graph depth config
commit 165d33810d63f98953f4dd8c40f6d7741f967664
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Dec 26 21:13:21 2021 -0500
base tags
commit 6fbfa7170b17e062abd4c26e4b55a3934fb4ff1c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Dec 26 00:09:15 2021 -0500
various font and colour fixes
commit 43837f9e2ec4033722cb6957bd67c688afb3ae2c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Dec 25 23:45:30 2021 -0500
add makefile, fix link padding, test capitalization
commit 2ba01c831178facd35c62adcb22f3cc39ead6975
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Dec 24 15:51:37 2021 -0500
fix untitled #36
commit 114b7ca913b4250d594b711d7bfbe98ab23b562d
Merge: 5bd5642c 091be704
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Dec 24 09:48:41 2021 -0500
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit 5bd5642c99d6d144c9932533dfdc3484bdb72b71
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Dec 24 09:48:22 2021 -0500
add toLowerCase to id
commit 48d01810c4629341d9481632fc7f769dcffe0bd7
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Dec 23 14:40:59 2021 -0800
fix config setting, fix font size for h1 in article
commit 3a98c8b554c4b0e141f46a777c0fefe5ad4d4178
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Dec 23 14:32:47 2021 -0800
actually display site title
commit 69c86e407fa14ea94c75de82ca55ec9efaf6fb37
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Dec 23 14:21:39 2021 -0800
update subdomain docs
commit 56d2382c282431115b2964d440b790ce11f19e72
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Dec 23 14:05:27 2021 -0800
fix relative link styling, change graph and backlinks to refer to name rather than path
commit 091be7040b2f3da212a68a491bb8872543fddfea
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Dec 23 13:37:29 2021 -0800
Create CODE_OF_CONDUCT.md
commit 09b5522a488177129bfc7b35b700d7e76c64d5f8
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Dec 23 13:22:22 2021 -0800
Update issue templates
commit b9d7adafccc7a77f735afe11c80e0e8db534a31d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Dec 23 13:18:03 2021 -0800
Create FUNDING.yml
commit afeb18212d62663b7bbec5a08c05851bd584acd3
Merge: c64322ad bc909559
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Dec 2 20:06:18 2021 -0800
Merge pull request #28 from juaoose/overflow
commit bc90955959d818797e84c944247736e871faee3f
Author: Juaoose <jjrg1994@gmail.com>
Date: Thu Dec 2 22:58:34 2021 -0500
remove horizontal scrollbar
commit c64322ad3f1b72f83e675a53060b005d57704901
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 20 22:55:53 2021 -0800
remove bad wikilink
commit 48eb9ebc5fdba0845c6295e8abb6f574ec75171d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 20 22:53:26 2021 -0800
better search, fix spacing support, bump hugo-obsidian
commit 82ba843e42198d2ef2829eb6e668377bc9ebe4be
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Nov 15 15:54:18 2021 -0800
search styling
commit 8ca31df3f22e2678cf201105c1cb2925aca3c7d3
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Oct 31 09:59:38 2021 -0700
search patch
commit df23b99951fd7cb3bdf839639bce58b3e98c2d26
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Oct 30 23:27:33 2021 -0700
more search improvements
commit 6005a2e0a0667e9b78bfd419d3e8590a7fcc25f8
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Oct 27 20:10:04 2021 -0700
css fixes
commit de940d6a4b8a51f308b4544d21941bdb9a99aa66
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Oct 26 17:06:00 2021 -0700
update graph redir
commit 806d11f874119a1207332850e3263d87334a573d
Merge: 03bb3a3b 1fc2da4f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Oct 26 17:03:07 2021 -0700
Merge pull request #23 from bur3ku/hugo
commit 1fc2da4fe293f47ec47a7b5d33fa94fa3a06bb3b
Merge: 9292de63 24776624
Author: Blake Allen <blakesnake100@gmail.com>
Date: Tue Oct 26 16:58:37 2021 -0700
Merge branch 'hugo' of https://github.com/bur3ku/quartz into hugo
commit 9292de63336da42651c646253ef6000621d5328b
Author: Blake Allen <blakesnake100@gmail.com>
Date: Tue Oct 26 16:58:08 2021 -0700
remove unnecessary regex, use encodeuri for label instead of replace
commit 24776624047bea380c51dbb503cdf335d37b83b0
Merge: a14d06aa 03bb3a3b
Author: Blake Allen <blake.edward.allen@gmail.com>
Date: Tue Oct 26 12:46:03 2021 -0700
Merge branch 'hugo' into hugo
commit a14d06aa3d37396531dbfe09bb3b18b7eb9b96ad
Author: Blake Allen <blakesnake100@gmail.com>
Date: Tue Oct 26 12:44:25 2021 -0700
fix conflict fix
commit e0535dbe3219e297945284ca2af9862bd457a893
Author: Blake Allen <blakesnake100@gmail.com>
Date: Tue Oct 26 12:43:55 2021 -0700
fix conflict
commit 8eca1e60f78f40d6b598aa397bb315adfc53d9ad
Author: Blake Allen <blakesnake100@gmail.com>
Date: Tue Oct 26 12:36:20 2021 -0700
change %20 in node labels to whitespace, change %20 in node hrefs to hyphen
commit 03bb3a3bae297b51ffabb0d428f2c555771033f9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Oct 25 15:06:29 2021 -0700
normalize search styling
commit f7b89db8ee85e54a438db2e2cac3c55e805281c9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Oct 25 15:00:55 2021 -0700
search fix
commit 1835b97a7a2faf23809bb39d0bec7a2b77b3b81c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Oct 24 23:45:55 2021 -0700
better homepage
commit f56642f13cb5bffb8c05b239c6a7b90e1b6453e5
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Oct 24 23:32:55 2021 -0700
forgot string lol
commit 22a9c0ddfcb38a15d4340f532faca7733349702b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Oct 24 23:31:09 2021 -0700
docs updates, add search to main page, fix redir bug
commit c1c061fbea8f6cdc6aec4992d21d2df73dc6ba4e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Oct 24 23:17:20 2021 -0700
bump docs
commit 6fd19069deb06988b3d34482a151a79a53b589d0
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Oct 24 23:17:13 2021 -0700
search improvements
commit 299533a4f47d2379ddbc209bcd6923a70a81e65d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Oct 24 23:17:00 2021 -0700
bump hugo-obsidian version
commit e1366ecb6173b7c5e799c46e3ed8acbb50aaf447
Author: Blake Allen <blakesnake100@gmail.com>
Date: Fri Oct 22 18:56:26 2021 -0700
fix accidental code
commit 776ef084c9c98163f96cce62621cb8b0cf59bbdd
Author: Blake Allen <blakesnake100@gmail.com>
Date: Fri Oct 22 18:32:57 2021 -0700
fix last commit
commit fc00ad5bffcd5a1b89a4c1cb19b12d77238cc4c2
Author: Blake Allen <blakesnake100@gmail.com>
Date: Fri Oct 22 14:04:09 2021 -0700
fix for notes with spaces not linking properly
commit 228f96e74dd0caae6514a230418812103527d439
Merge: ae2f7efd 071984a1
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 31 18:32:14 2021 -0400
Merge pull request #14 from juaoose/hugo
fix product typo in external hosting section
commit 071984a12d1c7887d0ef41b206e01bc5afefb95d
Author: Juan José Rodríguez <juaoose@users.noreply.github.com>
Date: Tue Aug 31 16:40:31 2021 -0500
fix product typo in external hosting section
commit ae2f7efde0eb997ab2f7be1cf1513af7f99df599
Author: jackyzha0 <j.zhao2k19@gmail.com>
Date: Sat Aug 28 20:58:14 2021 -0400
update showcase
commit cb38667c1df7d752a1a9ef45505a7e106ff03ef8
Merge: 1c851271 27c33f83
Author: jackyzha0 <j.zhao2k19@gmail.com>
Date: Fri Aug 27 14:08:18 2021 -0400
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit 27c33f8334f6ac4a67c2a12b8eed219e6d8aeb2b
Merge: 8850976d f9920f6d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Aug 13 17:45:32 2021 -0400
Merge pull request #9 from brechtcs/template
Execute darkmode script before first render
commit f9920f6d736754372075c8f1014ab9440e333317
Author: Brecht Savelkoul <brecht.savelkoul@alumni.lse.ac.uk>
Date: Fri Aug 13 22:46:00 2021 +0200
Execute darkmode script before first render
commit 8850976d8dbb9a67d0224ed1ea30bd90fdbf4faa
Merge: 9b427faa bb6a1e8c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 12 23:49:05 2021 -0400
Merge pull request #8 from SlRvb/patch-1
Add SlRvb Site to Showcase
commit bb6a1e8c349075f40ac96be25509951ad5dce715
Author: SlRvb <54087190+SlRvb@users.noreply.github.com>
Date: Thu Aug 12 20:46:23 2021 -0700
Add SlRvb Site to Showcase
2023-11-24 18:08:37 +00:00
|
|
|
.table-container {
|
|
|
|
overflow-x: auto;
|
|
|
|
|
|
|
|
& > table {
|
|
|
|
margin: 1rem;
|
|
|
|
padding: 1.5rem;
|
|
|
|
border-collapse: collapse;
|
|
|
|
|
|
|
|
th,
|
|
|
|
td {
|
|
|
|
min-width: 75px;
|
|
|
|
}
|
|
|
|
|
|
|
|
& > * {
|
|
|
|
line-height: 2rem;
|
|
|
|
}
|
2023-08-07 02:52:30 +00:00
|
|
|
}
|
2023-06-01 21:35:31 +00:00
|
|
|
}
|
|
|
|
|
2023-07-23 00:27:41 +00:00
|
|
|
th {
|
2023-08-07 02:52:30 +00:00
|
|
|
text-align: left;
|
Squashed commit of the following:
commit 76f2664277e07a7d1b011fac236840c6e8e69fdd
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Nov 13 22:57:05 2023 -0800
versioning: bump to v4.1.1
commit 74777118a7fd19e4a296706c2a4b5fdca546c4fa
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Nov 13 22:51:40 2023 -0800
feat: header and full-page transcludes (closes #557)
commit 8223465bda1e7b6085a9752ead806be85ff58b57
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Nov 12 14:33:19 2023 -0800
fix: make :has img selector direct
commit cf6ab9e9333b5f76cb9e06f6687f2b4f8fbe91bd
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Nov 12 14:27:53 2023 -0800
feat: option to specify npx quartz sync message (closes #583)
commit 74c63e448e28d9766f7ec631aac2645384b0975f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 11 21:13:10 2023 -0800
fix(style): dont internal-link highlight when image (closes #581)
commit 43d638a6de5a8a11c1a719c596b07ea957c7329a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 11 21:06:37 2023 -0800
perf: compute mapping of folder name to file data for faster breadcrumbs
commit d1551872ffeb08c34f59dc2042b43562c499b620
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 11 20:46:57 2023 -0800
fix: check if popover exists after fetching and before inserting
commit 275bea3051a6f2a7da65fef6dccc7cc52a0a15e3
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 11 20:46:29 2023 -0800
style + cfg: resolve breadcrumb titles by default and change arrow character
commit bc02791734aa969ff388c5f7068e402bd0e3862a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 11 20:27:51 2023 -0800
fix: .date.getTime() based sort
commit bf603c49c2edaa5fcbe42479421a336dcacf92b9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 11 12:08:54 2023 -0800
fix: sort rss feed by date
commit f67356c3d2d609a8a6b674ac650fc41d6dfb4cc7
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 11 12:02:34 2023 -0800
lint: format
commit 5d666d1860be721c573ebd24cb82d210a8567bbf
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 11 11:59:05 2023 -0800
fix: normalize relative urls (closes #569)
commit 22b7cf135e8b031550553947c48aa0dc00b3abbd
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 11 11:41:44 2023 -0800
types: cast in jsx.tsx to avoid @ts-ignore
commit 50a87d0d8673dbce6ebafef83f71f197df9bc196
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 11 11:39:56 2023 -0800
style: scrollable tables
commit 134b6ed582d6ce9d8fb8f1e58d2bae89c07c2d5d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 11 10:11:31 2023 -0800
fix: anchors links shouldnt cause reload (closes #574)
commit 99e8f5944fdd83110fbac4c9edc37cdcaf2c25f7
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 11 09:56:30 2023 -0800
fix: trailing slash aliases (closes #577)
commit e9f4e28a2d3e0b529586ddb5a50680a6e66412f3
Author: Yes365 <ninfovores365@gmail.com>
Date: Fri Nov 10 11:44:16 2023 +0800
fix: adapt vercel cleanurls (#487)
Co-authored-by: Harrison <Harrison@fanruan.com>
commit 2a6b9a9ea01e8e6a80fe51d01dc865595b67a612
Author: Niklas Schröder <33390735+lnschroeder@users.noreply.github.com>
Date: Tue Nov 7 18:16:48 2023 +0100
docs: fix property name for ToC toggle (#573)
commit e806c30fa1a7ab941969da01c05ac4adeeeeeb9e
Author: Mau Camargo <52770775+camargomau@users.noreply.github.com>
Date: Sun Nov 5 13:30:10 2023 -0600
docs: Add Mau Camargo's Notkesto to showcase (#570)
commit aac7b7e97d32580f6a9bd974b8a9068e5218ab9c
Author: Anson Yu <ansonyu24@gmail.com>
Date: Sat Nov 4 17:20:16 2023 -0400
docs: Update making plugins.md (#567)
:)
commit 101e9946bddd053a42d269e19e35feae46fe4305
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 4 12:11:42 2023 -0700
feat: add collapseByDefault option to TableOfContents (closes #566)
commit a62a97c7abcabea4509760e5af957eed66fa0755
Author: Emil Rofors <emirof@gmail.com>
Date: Fri Nov 3 16:40:43 2023 -0700
docs: add GitLab pages CI (#549)
* add .gitlab-ci.yml
* move GitLab CI to hosting.md
* remove extra folder name
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* remove test from gitlab instructions
* run prettier
---------
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
commit 923b72fb67cf3ee9842df630feaed72644470074
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Nov 1 10:03:45 2023 -0700
feat: auto-tag releases (closes #560)
commit 05a1c34c6f6973eebcbcc50f50b64c2a0d62e8fa
Author: Florence <59734957+Pydes-boop@users.noreply.github.com>
Date: Wed Nov 1 17:57:32 2023 +0100
docs: remove dead link (#561)
commit 06ccb89cd7d5a3cade1eb5c2155b9b06e5395b0b
Author: Blue Rose <134471273+bluerosegarden@users.noreply.github.com>
Date: Tue Oct 31 15:53:49 2023 -0500
docs: clarifications about globs (#559)
* Add note about fast-glob
* Add warning about non-markdown files
Also added a glob pattern to filter out all non-markdown files outside of a specified folder.
* run npm format
---------
Co-authored-by: wych <wychwitchcraft@gmail.com>
commit 01fc8e46409ee0fb7311f212726113d35aced82d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Oct 25 09:40:43 2023 -0700
fix: disable semi-broken flexsearch cache
commit 7c01e8dde06abb1a80118b5eddce3e238830ede0
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Oct 22 09:54:12 2023 -0700
feat: openLinksInNewTab option for link transformer
commit b7ae7a99dbd40ffc852642202031b29e98304c1f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Oct 21 21:12:11 2023 -0700
fix: styling for nested popover tag in page list
commit 60b3bc34cb07b5bec87cbd667ea9f804ff14cf3c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Oct 21 21:05:46 2023 -0700
fix: catch html to jsx errors (closes #547)
commit dc834015d02adcc7edb119fb5224a2a86c614142
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Oct 21 20:27:49 2023 -0700
fix(style): tag float orientation for long tags on page listing
commit 1e357ef5ac85ab55ad19f832513f5ca7a7e54a52
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Oct 21 20:09:49 2023 -0700
fix(style): prioritize base and custom scss over component css
commit 54e722a55d58f4bab86184ffc970159628fa6967
Author: freenandes <42041153+freenandes@users.noreply.github.com>
Date: Wed Oct 18 03:43:41 2023 +0100
docs: Update showcase.md (#540)
changed URL
commit 86d16b12a224d125ba469f91e885eedf97a9dfe8
Author: Thomas <65691606+NotTacoz@users.noreply.github.com>
Date: Wed Oct 18 10:43:20 2023 +0800
docs(explorer): Fixed small typo with extra } in explorer.md (#541)
commit ed971800c0a683f7096922fee0a6901250e239ae
Author: freenandes <42041153+freenandes@users.noreply.github.com>
Date: Tue Oct 17 16:58:28 2023 +0100
Update showcase.md (#539)
commit af9ddadc4de513f2bbaf75f70079970215ed6406
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Oct 14 13:45:56 2023 -0700
fix(css): import base from custom instead of the other way around (#536)
commit da0a062c05db18d8c1521661ac0ab735abff3c3f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Oct 8 09:59:18 2023 -0700
feat: docker support for v4 (closes #530)
commit f66d2c23aca2944abcb1a6e3d83977a9b2edf37a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Oct 8 09:15:06 2023 -0700
fix: ctrl+click with spa enabled
commit 3268d45a20fbead24f3a111064364574408aa926
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Oct 5 13:48:52 2023 -0700
css: make article relative
commit afa163f2fe9c52d4b3bf1a2e4d48887916b67c24
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Oct 5 13:30:06 2023 -0700
style: styling for codeblocks without langs (#527)
commit cec4877adb7e89f4d4e0a442e82655e0d35dbe16
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Thu Oct 5 18:19:56 2023 +0200
fix(breadcrumbs): problem with folder whitespace (#522)
* fix(breadcrumbs): problem with folder whitespace
use slugs for folder hrefs so folder paths get resolved properly
* feat: only use `slug` for constructing crumbs
* fix: remove capitalization
commit cf0c090e3c5af86097e2460b00adc52ef8555e9d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Oct 4 09:23:56 2023 -0700
specify minimum npm version
commit c8f5dbbad3a85749d8a74f5e3e3b222fe547d5d6
Author: Luca Salvarani <lucasalvarani99@gmail.com>
Date: Mon Oct 2 02:20:55 2023 +0200
fix: Fix `Backlinks` not applying the display class (#519)
* fix: Fix `Backlinks` not applying the display class
Fix #518
* fix: Apply `displayClass` to all layout components
* refactor: Use same style
* fix: Remove `undefined` class using coalescing operator
commit ab5efac75fb0f20afe74bef33a2cf7e9ba0ba40f
Author: bfahrenfort <59982409+bfahrenfort@users.noreply.github.com>
Date: Sun Oct 1 11:47:22 2023 -0500
Fix: RSS title escaping (#521)
* Fix title escaping
* npm run format
commit 2f99339dcf93ef50b766263297785a32d9c35250
Author: Hrishikesh Barman <geekodour@users.noreply.github.com>
Date: Sat Sep 30 00:05:26 2023 +0530
feat: add transformations for latex in oxhugofm (#510)
ox-hugo currently supports the following syntax for latex equations:
- https://orgmode.org/manual/LaTeX-fragments.html
- https://ox-hugo.scripter.co/doc/equations
This syntax is supported by mathjax as is mentioned in the ox-hugo documentation.
But quartz uses remark-math which has some issues with the \( \) syntax.
See https://github.com/remarkjs/remark-math/issues/39
This change adds few more transformations to the OxHugoFlavouredMarkdown
plugin, which makes a best effort conversion of this syntax into what
the Quartz Latex transformer plugin supports.
With these changes, the generated files show latex formatting with
default quartz configuration.
Sidenote on `\_` escape by ox-hugo:
ox-hugo escapes, _ using \_, we match against it after we transform
equations into what quartz supports($$ and $).
This could be achieved using lookaround like regex as follows
```js
(?<=(\$|\$\$)[\s\S]*) -> Positive lookbehind for $ or $$
\\_ -> Matches \_
(?=[\s\S]*(?:\1)) Positive lookahead for $ or $$ if matched
const escapedUnderscoreRegex = new RegExp(/(?<=(\$|\$\$)[\s\S]*)\\_(?=[\s\S]*(?:\1))/, "g")
````
But since lookahead/behind can slow things down on large files, we just
look up all equations with $ and $$ delimiters and then try replacing \_
commit 5232d09af520e12bc421cf19ae5d231a7e36cd4d
Author: ArtfulAzeria <146041757+ArtfulAzeria@users.noreply.github.com>
Date: Fri Sep 29 20:17:48 2023 +0200
feat: Better and more responsive tag behavior (#515)
* fix(explorer): default sortFn implementation (#511)
* fix: use `numeric` + `base` for localeCompare
* docs(explorer): update default sortFn
* fix: better and more responsive tag behavior
* tags css moved to TagList.tsx
* used npm run format
* merged tag declarations
---------
Co-authored-by: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
commit 0138085c16856d20d1d2cad5670f1f61c8e500d1
Author: Catchears <57631841+Catchears@users.noreply.github.com>
Date: Fri Sep 29 17:19:10 2023 +0200
docs: fix typo in breadcrumbs documentation (#513)
commit 0b61f6fbfd20556102ce23444ae7eb9348472952
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Fri Sep 29 10:26:15 2023 +0200
feat: implement breadcrumb component (#508)
* feat: implement breadcrumbs
* style: fix styling, move breadcrumbs to top
* refactor: move `capitalize to `lang.ts``
* refactor: clean breadcrumb generation
* feat: add options to breadcrumbs
* feat: implement `resolveFrontmatterTitle`
* feat: add `hideOnRoot` option
* feat(consistency): capitalize every crumb
* style: add `flex-wrap` to parent container
* refactor: clean `Breadcrumbs.tsx`
* feat(accessibility): use `nav`, add aria label
* style: improve look in popovers by adding margin
* docs: write docs for breadcrumb component
* refactor: collapse `if` condition for hideOnRoot
* chore: add todo for perf optimization
* docs: update introduction
commit d4c122646ccd6fc989b4436e16b2dffdc931dee6
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Thu Sep 28 17:39:44 2023 +0200
fix(explorer): default sortFn implementation (#511)
* fix: use `numeric` + `base` for localeCompare
* docs(explorer): update default sortFn
commit d22c3c107a9c6422ef251bd1076ddd9c4fe47a42
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Sep 25 18:15:55 2023 -0700
fix: coerce title to string
commit 697bffdb8b1bef143823f77a118de90286fe325a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Sep 24 14:47:30 2023 -0700
fix: treat the 0 time as invalid too
commit ea5742c328c97a20f7add4994aa7e443fc6f7f39
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Sep 24 10:31:47 2023 -0700
fix: mermaid copy source position
commit 95eec5b49db53801e23b4b47778cb0b6153db83f
Author: Chad Lee <git@chadly.net>
Date: Sun Sep 24 12:27:42 2023 -0500
add site to showcase (#504)
commit c5b9137f12ea372d9196e41ffffc91eee7ad772e
Author: Vince Imbat <96913392+vinceimbat@users.noreply.github.com>
Date: Sat Sep 23 10:39:02 2023 +0800
docs: Adds Vince Imbat to showcase (#501)
commit 13c867322629f5ee59c54b95679585b370e1442b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Sep 22 10:04:37 2023 -0700
feat: add warning for invalid date format
commit a897cc1f531844a2e4da36f8712b7aedec0c5824
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Sep 22 09:43:34 2023 -0700
feat: add warning for missing home page
commit d93599364a3dd0b46068826cf14ed7b25aa59fc3
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Fri Sep 22 17:20:19 2023 +0200
docs(showcase): fix pull request redirect link (#500)
commit fa69c2a5656254251b74dbd5545bef000f67af2f
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Thu Sep 21 19:35:11 2023 +0200
fix(explorer): increase consistency, explicitly use font-family (#496)
* fix(explorer): display name for folders without `index` file
* docs(explorer): add section for folder display names
* docs(explorer): fix broken wikilink
* fix(consistency): explicitly set font + label/link fix
Use consistent styling between folders with `folderClickBehavior: "link"` and `"collapse`
* Update quartz/components/styles/explorer.scss
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* Update quartz/components/styles/explorer.scss
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
---------
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
commit 8eb1554b13532a2441b41d2018800c56cfa84ce9
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Thu Sep 21 18:54:33 2023 +0200
fix(explorer): display names for folders without frontmatter (#494)
* fix(explorer): display name for folders without `index` file
* docs(explorer): add section for folder display names
commit dcdeae4e7bd527945b887ca347b3b4408c03055b
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Thu Sep 21 18:53:19 2023 +0200
docs(explorer): update default config + new example (#493)
commit 48452231d5fcd14ef218928bde9ae7e5bc745f4a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Sep 20 16:09:18 2023 -0700
perf: memoize filetree computation (#490)
* perf: memoize filetree computation
* format
* var -> let
commit 16d33fb77193710bede887d6a177d2144b78fb67
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Sep 20 16:08:54 2023 -0700
feat: display name for folders, expand explorer a little bit (#489)
* feat: display name for folders, expand explorer a little bit
* update docs
commit b029eeadabe0877df6ec11443c68743f1494bc40
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Wed Sep 20 22:55:29 2023 +0200
feat(explorer): improve accessibility and consistency (+ bug fix) (#488)
* feat(consistency): use `all: unset` on button
* style: improve accessibility and consistency for explorer
* fix: localStorage bug with folder name changes
* chore: bump quartz version
commit 6a9e6352e88aa9ff18e5b33cf2de442a250bd960
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Sep 20 13:52:45 2023 -0700
Revert "feat: Making Quartz available offline by making it a PWA (#465)"
This reverts commit d6301fae90d9f922618bf0f413e273156731eef7.
commit 70e029d151ccbb9aeab30a0f811b9f529b7f8818
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Sep 20 13:52:29 2023 -0700
Revert "docs: wording changes for offline support"
This reverts commit 52a172d1a4911080444ff797183e29ba8175741e.
commit 0bad3ce7990aa4ef417128f9d74c2947fe5117fd
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Sep 20 11:58:52 2023 -0700
docs: document enableToc
commit 52a172d1a4911080444ff797183e29ba8175741e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Sep 20 11:40:36 2023 -0700
docs: wording changes for offline support
commit d6301fae90d9f922618bf0f413e273156731eef7
Author: Adam Brangenberg <adambrangenberg@proton.me>
Date: Wed Sep 20 20:38:13 2023 +0200
feat: Making Quartz available offline by making it a PWA (#465)
* Adding PWA and chaching for offline aviability
* renamed workbox config to fit Quartz' scheme
* Documenting new configuration
* Added missig umami documentation
* Fixed formatting so the build passes, thank you prettier :)
* specified caching strategies to improve performance
* formatting...
* fixing "404 manifest.json not found" on subdirectories by adding a / to manifestpath
* turning it into a plugin
* Removed Workbox-cli and updated @types/node
* Added Serviceworkercode to offline.ts
* formatting
* Removing workbox from docs
* applied suggestions
* Removed path.join for sw path
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* Removed path.join for manifest path
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* Removing path module import
* Added absolute path to manifests start_url and manifest "import" using baseUrl
* Adding protocol to baseurl
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* Adding protocol to start_url too then
* formatting...
* Adding fallback page
* Documenting offline plugin
* formatting...
* merge suggestion
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* merge suggestion
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* merge suggestion
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* merge suggestion
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* merge suggestion
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* merge suggestion
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* merge suggestion
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* merge suggestion
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* merge suggestion
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* merge suggestion
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* merge suggestion
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* merge suggestion
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* formatting...
* Fixing manifest path, all these nits hiding the actual issues .-.
* Offline fallback page through plugins, most things taken from 404 Plugin
* adding Offline Plugin to config
* formatting...
* Turned offline off as default and removed offline.md
---------
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
commit 27a6087dd5a25dd5031b86b9917adde6ef4b211a
Author: rwutscher <richard.wutscher@gmail.com>
Date: Tue Sep 19 21:26:30 2023 +0200
fix: tag regex no longer includes purely numerical 'tags' (#485)
* fix: tag regex no longer includes purely numerical 'tags'
* fix: formatting
* fix: use guard in findAndReplace() instead of expanding the regex
commit 1bf7e3d8b3966590ebfa3418d6fb2ce6a520c846
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Sep 19 10:22:39 2023 -0700
fix(nit): make defaultOptions on explorer not a function
commit cc31a40b0cb53cba7f51187cb6d68076c3f54c0f
Author: David Fischer <david@konst.fish>
Date: Tue Sep 19 18:25:51 2023 +0200
feat: support changes in system theme (#484)
* feat: support changes in system theme
* fix: run prettier
* fix: add content/.gitkeep
commit 0d3cf2922618774fc397dca8cb92fcf76fb0db02
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Mon Sep 18 23:32:00 2023 +0200
docs: fix explorer example (#483)
commit 6a2e0b3ad3a928247a03a76817d239e61cce0fe0
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Sun Sep 17 22:04:44 2023 +0200
fix: bad visibility for last explorer item (#478)
* fix: bad visibility for last explorer item
* feat(explorer): add pseudo element for observer
commit e67f409ec1fa36779f59a635eb3e16408275575d
Merge: af41f34b 4afb099b
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Sun Sep 17 21:36:04 2023 +0200
Merge pull request #479 from benschlegel/explorer-config
feat(explorer): add config for custom sort/map/filter functions
commit 4afb099bf3ec96e5d795e871ecb19575271c0714
Author: Ben Schlegel <ben5.schlegel@gmail.com>
Date: Sun Sep 17 21:32:23 2023 +0200
docs: fix examples
commit 6914d4b40caff901ccf3e9d9113c15129a68a80c
Author: Ben Schlegel <ben5.schlegel@gmail.com>
Date: Sun Sep 17 21:20:09 2023 +0200
docs: fix intra page links
commit af41f34bfd4126756e594ce4d6a46d4f4907754b
Author: Christian Gill <gillchristiang@gmail.com>
Date: Sun Sep 17 20:02:00 2023 +0200
fix(slug): Handle question mark (#481)
commit 7ac772fca8bf26c1023f905cdb77e6972a0d4b61
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Sun Sep 17 19:29:20 2023 +0200
fix: darkmode scroll bars (#480)
commit 5cc9253c41fda87ba473df7023567ba66ce3c32b
Author: Ben Schlegel <ben5.schlegel@gmail.com>
Date: Sun Sep 17 16:41:23 2023 +0200
docs(explorer): write docs for new features
commit 94a04ab1c9fd099c808f3f4e6633722e0d13ac85
Author: Ben Schlegel <ben5.schlegel@gmail.com>
Date: Sun Sep 17 15:51:08 2023 +0200
fix(explorer): filter function in `ExplorerNode`
commit 9358f73f1c939ce459d7835457527e35e1bdf857
Author: Ben Schlegel <ben5.schlegel@gmail.com>
Date: Sun Sep 17 12:41:06 2023 +0200
fix: display name for file nodes
commit f7029012dfb73ce04405bfe44e4e4d984818bf5f
Author: Ben Schlegel <ben5.schlegel@gmail.com>
Date: Sat Sep 16 21:58:38 2023 +0200
feat: black magic
add config for `order` array, which determines the order in which all passed config functions for explorer will get executed in.
functions will now dynamically be called on `fileTree` via array accessor (e.g. fileTree["sort"].call(...)) with corresponding function from options being passed to call)
commit fea352849c6972da4b3b8935eb2e86f6cefc76ed
Author: Ben Schlegel <ben5.schlegel@gmail.com>
Date: Sat Sep 16 19:45:21 2023 +0200
fix: create deep copy of file passed into tree
commit 3d8c470c0d298f720614318fb4c14575e72bbd2e
Author: Ben Schlegel <ben5.schlegel@gmail.com>
Date: Sat Sep 16 19:35:27 2023 +0200
feat(explorer): implement `map` fn argument
Add a function for mapping over all FileNodes as an option for `Explorer`
commit 31d16fbd2c82380af586e458b2c1ff29b90b53ae
Author: Ben Schlegel <ben5.schlegel@gmail.com>
Date: Sat Sep 16 19:18:59 2023 +0200
feat(explorer): integrate filter option
commit 036a33f70bcabc17469956740847796a5f13b9ab
Author: Ben Schlegel <ben5.schlegel@gmail.com>
Date: Sat Sep 16 17:47:44 2023 +0200
fix: use correct import for `QuartzPluginData`
commit 58aea1cb0791e18cd092d88de5374431eba7f1d3
Author: Ben Schlegel <ben5.schlegel@gmail.com>
Date: Sat Sep 16 17:28:58 2023 +0200
feat: implement filter function for explorer
commit c7d3474ba8cb49ab0f1978216d80b08ec2c8e5d7
Author: Ben Schlegel <ben5.schlegel@gmail.com>
Date: Sat Sep 16 12:40:19 2023 +0200
feat(explorer): add config to support custom sort fn
commit 422ba5c36586c7ebc31141da8bb539b4157aa01a
Author: Yuto Nagata <38714187+mouse484@users.noreply.github.com>
Date: Sat Sep 16 11:17:20 2023 +0900
fix: umami analytics date attribute (#477)
commit 9ae6343dd0104d44e6bdf083572f987b70ba50c9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Sep 15 10:33:38 2023 -0700
Revert "fix: use git dates by default, @napi/git is fast enough"
This reverts commit 5dcb7e83fc3c8383ebbc84aac4553df4ad3ef59a.
commit 5dcb7e83fc3c8383ebbc84aac4553df4ad3ef59a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Sep 15 09:46:06 2023 -0700
fix: use git dates by default, @napi/git is fast enough
commit 91f9ae2d71d5c28ba7d2182eed5a9f77da1fbe8d
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Fri Sep 15 18:39:16 2023 +0200
feat: implement file explorer component (closes #201) (#452)
* feat: add basic explorer structure„
* feat: integrate new component/plugin
* feat: add basic explorer structure
* feat: add sort to FileNodes
* style: improve style for explorer
* refactor: remove unused explorer plugin
* refactor: clean explorer structure, fix base (toc)
* refactor: clean css, respect displayClass
* style: add styling to chevron
* refactor: clean up debug statements
* refactor: remove unused import
* fix: clicking folder icon sometimes turns invisible
* refactor: clean css
* feat(explorer): add config for title
* feat: add config for folder click behavior
* fix: `no-pointer` not being set for all elements
new approach, have one `no-pointer` class, that removes pointer events and one `clickable` class on the svg and button (everything that can normally be clicked). then, find all children with `clickable` and toggle `no-pointer`
* fix: bug where nested folders got incorrect height
this fixes the bug where nested folders weren't calculating their total height correctly. done by adding class to main container of all children and calculating total
* feat: introduce `folderDefaultState` config
* feat: store depth for explorer nodes
* feat: implement option for collapsed state + bug fixes
folderBehavior: "link" still has bad styling, but major bugs with pointers fixed (not clean yet, but working)
* fix: default folder icon rotation
* fix: hitbox problem with folder links, fix style
* fix: redirect url for nested folders
* fix: inconsistent behavior with 'collapseFolders' opt
* chore: add comments to `ExplorerNode`
* feat: save explorer state to local storage (not clean)
* feat: rework `getFolders()`, fix localstorage read + write
* feat: set folder state from localStorage
needs serious refactoring but functional (except folder icon orientation)
* fix: folder icon orientation after local storage
* feat: add config for `useSavedState`
* refactor: clean `explorer.inline.ts`
remove unused functions, comments, unused code, add types to EventHandler
* refactor: clean explorer
merge `isSvg` paths, remove console logs
* refactor: add documentation, remove unused funcs
* feat: rework folder collapse logic
use grids instead of jank scuffed solution with calculating total heights
* refactor: remove depth arg from insert
* feat: restore collapse functionality to clicks
allow folder icon + folder label to collapse folders again
* refactor: remove `pointer-event` jank
* feat: improve svg viewbox + remove unused props
* feat: use css selector to toggle icon
rework folder icon to work purely with css instead of JS manipulation
* refactor: remove unused cfg
* feat: move TOC to right sidebar
* refactor: clean css
* style: fix overflow + overflow margin
* fix: use `resolveRelative` to resolve file paths
* fix: `defaultFolderState` config option
* refactor: rename import, rename `folderLi` + ul
* fix: use `QuartzPluginData` type
* docs: add explorer documentation
commit 14cbbdb8a2f69ebc51cd53a82b50206c543778b0
Author: Oskar Manhart <52569953+oskardotglobal@users.noreply.github.com>
Date: Thu Sep 14 05:55:59 2023 +0200
feat: display tag in graph view (#466)
* feat: tags in graph view
* fix: revert changing graph forces
* fix: run prettier
commit cce389c81d262d1d2a2bd8140c879efd68e3c6dd
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Sep 13 11:28:53 2023 -0700
feat: note transclusion (#475)
* basic transclude
* feat: note transclusion
commit 4461748a85b8795651d0c02451368dffff607938
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Sep 13 09:43:14 2023 -0700
fix dont show html in search when rssFullHtml is true (closes #474)
commit 6ecdcb5e24f2783e6fa73de69e848f0f319c4fc4
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Sep 12 22:55:50 2023 -0700
feat: resolve block references in obsidian markdown
commit e3b879741b6d32f56e1d1bfd0bac57f0d68c1113
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Sep 12 21:44:03 2023 -0700
feat: rich html rss (closes #460)
commit 60a3c543398aed8caf44b411a4dc10e8d1e26fcc
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Sep 12 21:29:57 2023 -0700
fix: 404 page styling for nested pages (closes #458)
commit 71d81bde1d12aa386ec70be31cc86a37a7426bce
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Sep 12 19:18:44 2023 -0700
feat: rss limit (closes #459)
commit a19df64be8423063c2484ab35300fb0bef324a14
Author: hcplantern <38579760+HCPlantern@users.noreply.github.com>
Date: Tue Sep 12 14:00:21 2023 +0800
fix: callout parsing (#469)
commit 4e23e6724493a8d112c6ff22e14cf4aabd5e9af1
Author: Oskar Manhart <52569953+oskardotglobal@users.noreply.github.com>
Date: Mon Sep 11 08:11:42 2023 +0200
feat: plugin for remark-breaks (#467)
* feat: plugin for remark-breaks
* fix: update package-lock.json
* fix: styling
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* Update linebreaks.ts
* Update index.ts
---------
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
commit a66c239797e3e80e2dc8b7059eee8c51bcf4ca8f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Sep 10 23:07:17 2023 -0700
ci: print bundleInfo
commit 53f1c88738550eb2646cc0a03469dc230839a258
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Sep 8 09:29:57 2023 -0700
fix: more lenient date parsing for templates
commit 06df00b18621f08a211bec33f566ecb7ef4ec22e
Author: Stefano Cecere <stefano.cecere@krur.com>
Date: Thu Sep 7 17:13:41 2023 +0200
typo (it's draft, not drafts) (#456)
commit 2525bfbab5553f970997ea3c60af180cbef1fdd2
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Sep 6 22:24:15 2023 -0700
fix: links to index not showing in graph (closes #450)
commit 828aa71fe34aae675a7552957e8a062c82f595f6
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Sep 6 21:47:59 2023 -0700
fix: escape encoding for titles in rss
commit ef1ead31dccd05f4275405b843ff47fa28a5116d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Sep 6 21:31:01 2023 -0700
fix: encodeuri for slugs in rss
commit 989bee597987bba2aeae4266cb32ac8e899f638c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Sep 6 21:08:08 2023 -0700
docs: correct field for ignorePatterns
commit 8d6029b7b844044d06fe17de89db6881954a8fec
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Sep 6 21:02:21 2023 -0700
feat: 404 page emitter
commit 2d52eba4133293a27f6df98c252785ba4ddee575
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Sep 6 20:25:38 2023 -0700
fix: dont transform external links
commit 6ef4246cf186414d1b8ee868cfa9d24314f0bc0a
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Mon Sep 4 07:36:30 2023 +0200
docs: update `full-text-search.md` (#447)
commit 616a7f148a283b2fd7c5204c60ddf1b08f42d125
Author: Dr Kim Foale <kim@gfsc.studio>
Date: Mon Sep 4 05:29:58 2023 +0100
docs: Make it clearer that wikilinks go to paths not page titles (#448)
commit e8a04efaf1b82560cbcf7694ac6c7dda1c82612f
Author: Adam Brangenberg <adambrangenberg@proton.me>
Date: Mon Sep 4 06:28:57 2023 +0200
feat(analytics): Support for Umami (#449)
commit 7e42be8e46501c752dda9bd174fb93ea9dccec22
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Sun Sep 3 18:32:46 2023 +0200
feat(search): add arrow key navigation (#442)
* feat(search): add arrow navigation
* chore: format
* refactor: simplify arrow navigation
* chore: remove comment
* feat: rework arrow navigation to work without state
* feat: make pressing enter work with arrow navigation
* fix: remove unused css class
* chore: correct comment
* refactor(search): use optional chaining
commit 8c354f6261dda6d9761f594002db53c9d7a8e8e2
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Sun Sep 3 18:06:05 2023 +0200
fix: clipboard button visible in search (#445)
commit 505673acd71e6b023abae19c706a736b257cff2a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Sep 2 18:07:26 2023 -0700
feat: pluralize things in lists
commit 23f43045c49f17fe5ace480f7026855acf2a30b8
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Fri Sep 1 23:12:32 2023 +0200
fix(search): matches getting highlighted in title (#440)
commit 90dac31216b5d3f59e65ec5778e21a308a744e11
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Fri Sep 1 19:09:58 2023 +0200
feat: Implement search for tags (#436)
* Quartz sync: Aug 29, 2023, 10:17 PM
* style: add basic style to tags in search
* feat: add SearchType + tags to search preview
* feat: support multiple matches
* style(search): add style to matching tags
* feat(search): add content to preview for tag search
* fix: only display tags on tag search
* feat: support basic + tag search
* refactor: extract common `fillDocument`, format
* feat: add hotkey to search for tags
* chore: remove logs
* fix: dont render empty `<ul>` if tags not present
* fix(search-tag): make case insensitive
* refactor: clean `hideSearch` and `showSearch`
* feat: trim content similar to `description.ts`
* fix(search-tag): hotkey for windows
* perf: re-use main index for tag search
commit 2d6dc176c3e1fbb520a5da1beb60bbb1d8e948ba
Author: Pelayo Arbués <gonzalezpelayo@gmail.com>
Date: Thu Aug 31 21:12:06 2023 +0200
Adds Pelayo Arbues to showcase (#435)
commit b213ba45e2e706332e057b131adc946f882f090b
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Thu Aug 31 20:55:04 2023 +0200
fix: regex for matching highlights (closes #437) (#438)
* fix: regex for matching highlights
* fix: regex for empty highlights
commit 5fa6fc97899c905b6fbc14fa1d24334f3e68fa77
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 29 10:37:00 2023 -0700
fix: aliasredirects not using full path, add permalink support
commit 1cc09ef76db129fb3670e95560312adeefab913c
Author: Jeffrey Fabian <jeffrey.fabian61@gmail.com>
Date: Tue Aug 29 13:14:54 2023 -0400
feat: support kebab-case and nested tags in Obsidian-flavored Markdown tag-in-content parsing (#425)
* enhancement: support kebab-case and nested tags in ofm transformer
* update regex/capture groups to allow for (arbitrarily) nested values and tags of only -/_
* Update quartz/plugins/transformers/ofm.ts
---------
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
commit c35cd422c65a58f1069302aad0cf9eef7f93d987
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Mon Aug 28 19:00:49 2023 +0200
fix: correct graph labels for `index.md` nodes (#431)
commit 082fdf2e8098ef6bcb46a7dfabf8c6b9fd096346
Author: Jeremy Press <jeremypress1@gmail.com>
Date: Sun Aug 27 20:57:19 2023 -0700
Fix typo :) (#430)
commit b6b1dabde0f63ca0ae743aa7f4266ca892d7b5e5
Author: Jeremy Press <jeremypress1@gmail.com>
Date: Sun Aug 27 17:39:42 2023 -0700
feat: support configurable ws port and remote development (#429)
Co-authored-by: Jeremy Press <jeremy@replit.com>
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
commit 4b89202f7e834cf8b5c5aa39e8f1778706492085
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Mon Aug 28 00:59:51 2023 +0200
cleanup: rework cli to allow invoking create and build outside of cli (#428)
* refactor: move `bootstrap-cli.mjs` tp cli
also update reference in docs
* refactor(cli): move build handler to `cli-functions`
* refactor(cli): move create to handler + helpers
* refactor(cli): extract arg definitions
* refactor: rename handlers and helpers
* refactor(cli): move update, await handlers
* refactor(cli): create constants, migrate to helpers
* refactor(cli): migrate `restore`
* refactor(cli): migrate `sync`
* format
* refactor(cli): remove old imports/functions
* refactor(cli): remove unused imports + format
* chore: remove old log statement
* fix: fix imports, clean duplicate code
* fix: relative import
* fix: simplified cacheFile path
* fix: update cacheFile import path
* refactor: move bootstrap-cli to quartz
* format
* revert: revert path to bootstrap-cli
* ci: re-run
* ci: fix execution permission
commit 52ca312f41ee6da5202cd9632d8501340ada3a67
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 27 12:27:42 2023 -0700
fix: slugify tag on page before adding (closes #411)
commit c91e62c376d481534d89084e5c04846878dff6d3
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Sun Aug 27 02:19:45 2023 +0200
Fix search bar after navigate (#424)
commit ad4145fb10dbf32d8f99e1de555339dba0979f72
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Sat Aug 26 22:21:44 2023 +0200
feat: support CLI arguments for `npx quartz create` (#421)
* feat(cli): add new args for content + link resolve
* feat(cli): validate cmd args
* feat(cli): add chalk + error code to errors
* feat(cli): support for setup/link via args
* refactor(cli): use yargs choices instead of manual
Scrap manual check if arguments are valid, use yargs "choices" field instead.
* feat(cli): add in-dir argument+ handle errors
add new "in-directory" argument, used if "setup" is "copy" or "symlink" to determine source. add error handling for invalid permutations of arguments or non existent path
* feat(cli): dynamically use cli or provided args
use "in-directory" arg as `originalFolder` if available, otherwise get it from manual cli process
* run format
* fix: use process.exit instead of return
* refactor: split CommonArgv and CreateArgv
* refactor(cli): rename create args, use ${} syntax
* fix(cli): fix link resolution strategy arg
* format
* feat(consistency): allow partial cmd args
commit 74c3ebb7bd7ef126246f8ea03565db73cd5e7f38
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 26 10:48:34 2023 -0700
style: fix mulitline callout styling
commit e3265f841637de197e5cf4a5471372b5178f1e4d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 26 10:42:55 2023 -0700
docs: simplify oxhugo page
commit bc543f81d9ada5e61cb9690834a5f83c02997d63
Author: Hrishikesh Barman <geekodour@users.noreply.github.com>
Date: Sat Aug 26 11:22:23 2023 +0530
feat(plugins): add OxHugoFlavouredMarkdown (#419)
* feat(plugins): add OxHugoFlavouredMarkdown
ox-hugo is an org exporter backend that exports org files to
hugo-compatible markdown in an opinionated way. This plugin adds some
tweaks to the generated markdown to make it compatible with quartz but
the list of changes applied it is not extensive.
In the future however, we could leapfrog ox-hugo altogether and
create a quartz site directly out of org-roam files. That way we won't
have to do all the ritual dancing that this plugin has to perform.
See https://github.com/k2052/org-to-markdown
* fix: add toml to remarkFrontmatter configuration
* docs: add docs for OxHugoFlavouredMarkdown
* fixup! docs: add docs for OxHugoFlavouredMarkdown
commit 5c6d1e27baef74a42cc292276c5832b010a38fd5
Author: Hrishikesh Barman <geekodour@users.noreply.github.com>
Date: Fri Aug 25 22:55:46 2023 +0530
feat(plugins): add toml support for frontmatter (#418)
* feat(plugins): add toml support for frontmatter
Currently frontmatter is expected to be yaml, with delimiter set to
"---". This might not always be the case, for example ox-hugo(a hugo
exporter for org-mode files) exports in toml format with the delimiter
set to "+++" by default.
With this change, the users will be able use frontmatter plugin to
support this toml frontmatter format.
Example usage: `Plugin.FrontMatter({delims: "+++", language: 'toml'})`
- [0] https://ox-hugo.scripter.co/doc/org-meta-data-to-hugo-front-matter/
* fixup! feat(plugins): add toml support for frontmatter
commit 340e3ef5116cd99c8ddfdbb3d9e0bbd914e07825
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Fri Aug 25 18:03:49 2023 +0200
feat(consistency): Add `.obsidian` to ignorePatterns (#420)
commit 953ef29f4e238ef9ae186ab79eeec1bf4f3921a6
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 24 12:31:15 2023 -0700
format, ensure ci runs on prs
commit 94ce0883e7fbf38252377af2f144c971a2ff591b
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Thu Aug 24 21:28:06 2023 +0200
style: integrate tertiary color to text-select (#413)
commit 8cf7280614f8c1f2c9aaba5671f388d63bbea4dd
Author: Zero King <l2dy@icloud.com>
Date: Fri Aug 25 02:41:20 2023 +0800
feat: reproducible build (#412)
for sitemap, RSS and contentIndex.json.
commit c8412a5b0ac90d9d7beb7e03ed9a4763e834a865
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 24 10:03:14 2023 -0700
format
commit fc4b8f3d3fad90b6f7d8dedc58201df68da1280e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 24 09:38:00 2023 -0700
fix: ensure recentnotes uses proper date
commit 6cd0612d40a5011f19f5ca2e5e804477779e393f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 24 09:17:43 2023 -0700
fix: add better warning when defaultDateType is not set due to upgrade
commit 9851697b583efdd40173ebbdd484030f2adb0732
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 24 09:05:19 2023 -0700
version bump to 4.0.10
commit c36a9f3fb7c2128610d20312ffb332bd238c89de
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 24 08:56:40 2023 -0700
feat: add defaultDateType config
commit 98d82415dc8d60c3a35ea4dee21c86e406605763
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 24 08:31:06 2023 -0700
fix: lock to never read when site is building
commit 9d2340e90b55fb9480e0901bc7360f3d72e688da
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Thu Aug 24 17:14:52 2023 +0200
docs: fix typo in `authoring content.md` (#408)
commit 8200c8d0402cb40e9f65c49dac5be621360a3a20
Author: bfahrenfort <59982409+bfahrenfort@users.noreply.github.com>
Date: Thu Aug 24 00:57:49 2023 -0500
Revert contentIndex to RSS 2.0 (#407)
commit 2e0e518f5dbddc3b55e9dd1a085c2a88d365b599
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 23 15:16:04 2023 -0700
format
commit 632c27b7ec133d15d890eb28c98eb9716ca01407
Author: Zane Helton <me@zaaane.com>
Date: Wed Aug 23 18:14:23 2023 -0400
docs: update `hosting.md` with Vercel hosting instructions (#406)
* Update hosting.md with Vercel hosting instructions
* Update docs/hosting.md
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* Update docs/hosting.md
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* Run npm run format
---------
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
commit bfb416b35a02dabbdaedc9e3c8980f8b4aadd9aa
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 23 13:10:23 2023 -0700
fix: text wrap in popover
commit 960c1814d07449dd9fd5e70eea770ba762780b53
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 23 12:23:49 2023 -0700
docs: make incompability of trailing slashes clear
commit eed4472aeecdcb0f2b233df69884f03bd45fc293
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 23 12:18:50 2023 -0700
fix: use proper full base for links.ts
commit b99eb7ebce21065b7ff59cdd3226d4fc173b3878
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 23 12:11:16 2023 -0700
docs: whitespace
commit 0aaf88b8521e2bc667cae525356eea3550ad9c96
Author: kanpov <71177577+kanpov@users.noreply.github.com>
Date: Wed Aug 23 22:09:04 2023 +0300
Fix #403 by moving documentation to separate directory to avoid merge conflicts (#405)
commit a1a1e7e1e0c06f2f7b759c5aecd6a9ceba3e2717
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 23 11:36:34 2023 -0700
fix: builds should no accumulate on repeated changes (closes #404)
commit 3209f7c3b7837fd845cbef645155a9484ea0253a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 23 09:19:00 2023 -0700
deps: native addons for lightningcss
commit cde1e26129f8cd6b183ccc1c35a06f76dedeff9c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 23 09:16:44 2023 -0700
deps: install exact
commit 1128efcf237d275343daaab16e1b1d3e228999b9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 23 09:10:30 2023 -0700
deps: esbuild and esbuild-sass-plugin
commit d2f52549955ff7600cc5897e67806df4ebf85f91
Author: Aaron Pham <29749331+aarnphm@users.noreply.github.com>
Date: Wed Aug 23 12:05:01 2023 -0400
fix(esbuild): conflict with esbuild-sass-plugin (#402)
commit 3064839c2d2ea0a9976bef83db12102647572083
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 22 23:37:02 2023 -0700
version bump to 4.0.9
commit b444c5c13b983bf80df8b6d020eb246e9fd3e78e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 22 23:33:58 2023 -0700
fix: percent-encoding for files with %, contentIndex for non-latin chars (closes #397, closes #399)
commit 36548d59866ab3236677ff25af106b882c0694f6
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 22 22:41:50 2023 -0700
fix: toc for cyrillic and other non-latin alphabets (closes #396)
commit 99dbe525d9b221bf12778ed899c94ef103a77c45
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 22 22:27:41 2023 -0700
fix: properly lock across source and content refresh by sharing a mutex
commit 8b63ff882ae28b1a1774293673a7531463d6a5e5
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 22 22:14:16 2023 -0700
fix: tag support for non-latin alphabets (fixes #398)
commit b991cf2ee8a456a15f2b566843d93a9b7a9a0c29
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 22 21:30:31 2023 -0700
fix: spa hijacks back button (closes #400)
commit bb677840fc1ff14637fab8a99841dd532f408fce
Author: 松浦 知也 Matsuura Tomoya <me@matsuuratomoya.com>
Date: Wed Aug 23 01:16:55 2023 +0900
fixed broken CJK links (#390)
commit c60b3d5e3444e46587c1143dab784c53204070ae
Author: Ikko Eltociear Ashimine <eltociear@gmail.com>
Date: Wed Aug 23 01:16:21 2023 +0900
fix: typo in bootstrap-cli.mjs (#394)
commit e10de3febffd3e3b7eaa3aed611aea03153e6a82
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Aug 21 17:01:18 2023 -0700
fix: server-handler crash from filename (closes #386)
commit b69556c918e2a4a27b047e8de6b02861f04d5a9e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Aug 21 16:43:22 2023 -0700
fix: async-mutex not exclusively locking correectly
commit ce7057107266c1d96a909977add472af83f0e9f9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Aug 21 09:14:47 2023 -0700
docs: use canonical quartz.jzhao.xyz, update bootstrap script to point to correct hosting link
commit 8c943f47d6ddedc5da4b9447fec173a16d91758c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Aug 21 09:00:13 2023 -0700
format, update default sidepanel width
commit 2774e976d20226df1554ebddd6c7d2e390cae42d
Author: 松浦 知也 Matsuura Tomoya <me@matsuuratomoya.com>
Date: Tue Aug 22 00:45:47 2023 +0900
fix: opts being overriden in graph option (#384)
commit bb93ac1c83fd8d13593f7f9688de02eba60de913
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 23:50:19 2023 -0700
docs: fix links to networked thought
commit 777ff51c7a704459f9708086845b62aa8fe4e89d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 20:48:35 2023 -0700
format
commit 4e42d52e166dcc3c62775cb3bf86c209d098c158
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 20:47:07 2023 -0700
fix: ctrl + k breaking after page nav
commit d0f67d993507219cfa0824db8a3e59286f0ebf09
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 18:41:37 2023 -0700
move wss server start after http
commit 952d6cb3dd63bb50056198c1d7782314f8976bbf
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 18:08:44 2023 -0700
fix: nav event with spa off, anchor nav refresh page
commit 173ec240d2ed5b25f18ef42823334ae800b3527d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 17:50:56 2023 -0700
fix: jump to anchor on deployed site triggering spa refresh
commit 425c9789a451e69adbba2d99193e38e8915e8804
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 16:59:25 2023 -0700
remove checkout step from instructions as v4 is the default branch
commit 7b7064ad2be68e8d6d43123c12529ca94a325fcb
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 15:38:37 2023 -0700
fix: ensure code exists inside pre before adding clipboard
commit ca17af4ae20b9310da52a3752b8d7744c932f3e2
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 15:02:24 2023 -0700
fix: dont show index page for folder in its own listing
commit 71471117c5ec4acdfc0b8335b4462ab43d86fce6
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 14:34:00 2023 -0700
fix: ci runs on v4
commit e65ea48fae5a279ad4e50594b03621904f84e477
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 14:27:44 2023 -0700
fix: add async-mutex to builds on large vaults
commit b99d4cd8ce99ea1e52a97654ab153774a6bc598a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 14:05:37 2023 -0700
recent notes css fixes
commit 1bb00e72bb4ab8fcac186ef6961e400c60fb07de
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 13:00:33 2023 -0700
add docs for recent notes
commit 236130ac221f7d254ec9881f529f4ca567e15234
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 12:46:37 2023 -0700
css fixes, add recent notes, more robust quartz update
commit 5adf3c67a8f1939b891fadd2c8c30cf201d87943
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 08:57:56 2023 -0700
add engines field
commit 9d77edaf94d23f207552b3a650189810ba2252cd
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 01:08:18 2023 -0700
fix description not being used in folder and tag listings
commit 0ef1b5b522d1d6c0c79cd0538a2d63a9bf71a973
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 00:54:13 2023 -0700
update plausible url
commit cfb7d1232e005736dc549fb24ec5a02d53fc5206
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 00:52:49 2023 -0700
docs: update notes for tag and folder listings
commit 03fd62496f94c7cc007f802fc10290581d08deb0
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 00:02:41 2023 -0700
docs: note about updating default branch
commit d205eb568686a718cae889d51fde5ae18d352b30
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 19 22:19:49 2023 -0700
docs: make setting upstream more clear, docs on npx quartz restore
commit 96a3bfeafbe3e46bdf3e217dd934b026bc1b9f9f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 19 22:04:29 2023 -0700
fix: put quotations around font
commit 95fb6ccfcb5d887f1085bc1b58204b4138a2e804
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 19 21:59:20 2023 -0700
readme fix
commit e26248292179ebb691dfa99621192b2258c9b9c3
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 19 21:59:01 2023 -0700
fix: string for aliases being treated as array of chars
commit eb4d3dc5b405fda29ccde917902483a76835894c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 19 21:55:09 2023 -0700
css: fix scrollbars on windows
commit 90d6c1ed24283d0b046ba7eee2e6533a73cf3683
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 19 21:38:10 2023 -0700
add git fetch to migration instructions
commit 443c1828901f364cb7f5708a64a32494eea28d28
Merge: 791b8e2d a6236d97
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 19 21:16:31 2023 -0700
Merge branch 'v4' of https://github.com/jackyzha0/quartz into v4
commit 791b8e2d9f826de8cd0e3db3aead04ad8c65bc6e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 19 21:16:24 2023 -0700
add sponsors
commit a6236d97cf847a88dc2f72450372d440561032ac
Author: Matt Dunn <55315824+TheRealMattDunn@users.noreply.github.com>
Date: Sun Aug 20 03:15:14 2023 +0100
Adding to Showcase page (#367)
commit b1debaebff5c5753149e02e990439e7e56528852
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 19 18:56:45 2023 -0700
update docs
commit 7b8017413c16c0153c58919ab30e0e2de6e71f02
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 19 18:04:17 2023 -0700
impl baseDir option for quartz build --serve for local testing
commit 6681f28af0bb753918699c41ef9a8421f6b7cd08
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 19 16:55:36 2023 -0700
fix trailing slash causing folder listing to not fetch content correctly
commit 78f4cdbe109308fa33cb87387952aef5a528ebbe
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 19 16:40:02 2023 -0700
avoid 404 on icon for spa navigations with anchors
commit dd47be1bc65d3a8050d6ce9e77cd0e3b10e2a1a9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 19 16:28:44 2023 -0700
improve path resolution stability
commit c874e7e9378a5ba895870e9680484fb4af5c6e93
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 19 15:52:25 2023 -0700
base path refactor to better support subpath hosting
commit 3201f83b70bb2ee1d1daeb585a26e8cd6b8ce95f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Aug 18 18:24:09 2023 -0700
v4-alpha -> v4
commit d8bec631b6dee8f5b9c42f75d154252e53e81b77
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Aug 18 18:22:38 2023 -0700
update docs on github pages and syncing
commit 6f1f820289ce37d328c4bc8cceba1f702df52e15
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 17 23:39:15 2023 -0700
fix typo in docs
commit 8bc7a50dfa91dd7ba6b657aca6dbc437fa6df6b7
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 17 21:54:42 2023 -0700
format
commit 569beb410b967b8511a5d18cdee74280df681d15
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 17 21:49:58 2023 -0700
ensure sync includes untracked files
commit 5713d30670fc9ca1f9d86e6f0698bd011a68f674
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 17 21:24:41 2023 -0700
ensure contentfolder is passed to popContentFolder
commit a13094544318b06902b54a24ea61691fe598a2fc
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 17 21:20:15 2023 -0700
fix when symlink targ is calculated and added npx quartz restore
commit e10f6da01140f483162fe33cc77b2255b0683ac7
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 17 21:08:26 2023 -0700
format
commit a7cca3242ad7adc5163d70aa2cc8ee23c92211e5
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 17 21:07:40 2023 -0700
deref symlink on quartz sync
commit 0998bc355e6425e6b2bdf3d2da7124aa7b63b2a2
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 17 01:58:11 2023 -0700
fix rebuild debouncing
commit 07a327e05aa2a48aa11faf9aa0e049201d622f8f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 17 01:34:50 2023 -0700
fix back button in spa not working between two pages that both have hash fragments
commit 58d9dc0528cc5d7232ac7a237c98213ff1075f39
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 17 00:55:52 2023 -0700
format
commit 0c199975f2d469ecdfd7efcf2ddd16ffa1dc492b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 17 00:55:28 2023 -0700
various path fixes for links to extensions, fix relative paths in links
commit 2dc0ae279cae87e37c94c42d4ad87107f2a5b5d2
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 16 22:09:11 2023 -0700
fix import paths
commit 2f6747b1666316e579c6e7238092ac6a65d00925
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 16 22:04:15 2023 -0700
fix relative path resolution in router and link crawling
commit 232652149a287054df7e7c5136dafd3f55a79bf0
Author: Sohaib <98542228+sohaibology@users.noreply.github.com>
Date: Mon Aug 14 20:59:47 2023 -0400
Update hosting.md (#371)
commit 7bde99b4e2d49e30dad1e0d58ccc34c2e7482005
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 13 17:47:07 2023 -0700
fix: add trailing slash to local serving
commit f1c9ca495e450ecb62dade70c4b60d86e106f79c
Author: vintro <77507980+vintrocode@users.noreply.github.com>
Date: Sun Aug 13 20:19:50 2023 -0400
docs: note about existing content at same path on different branches
commit 4f4b04eeb4f41067e4759bec5c2f5db181150520
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 12 21:18:51 2023 -0700
format docs
commit d6e73f221c3e52ce6591cbd01621530e5f6fd703
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 12 21:16:34 2023 -0700
fix relative path resolution logic, add more path tests
commit 6d9ffd6da508743407b3b88a89ed831b53321d59
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 12 17:44:35 2023 -0700
404 page styling on local
commit c89f8b1a9a20becd982ed0b4bc88b1685a15832d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 12 10:33:57 2023 -0700
fix nested callout folding
commit 8fd496bbef4bc62315f3a0893177da730d8c4262
Author: Sohaib <98542228+sohaibology@users.noreply.github.com>
Date: Sat Aug 12 16:52:16 2023 -0400
Update hosting.md (#368)
commit aed3f5fccbe6a70186b339af4716980a5950b989
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 12 10:17:07 2023 -0700
fmt
commit c55d54f068a102d85dc16c5c0e63db413bc56145
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 12 10:16:55 2023 -0700
enable rich text in callout title
commit 7bffc2183ece33e2d84909a5677dac0ae2563ddd
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 12 00:24:30 2023 -0700
include home page in search
commit 827dd918476e225238d8412551df2866e4f9e616
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 12 00:03:11 2023 -0700
format, make search async
commit e1dd6aee863878a02f51200b3878d619220c22f3
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Aug 11 23:55:17 2023 -0700
fix wikilinks to anchors in the same document
commit 83269ac26e41f8e81b56e000b4347ee60d4ff84b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Aug 11 23:40:06 2023 -0700
fix scanning for tags in content
commit ed62ece491310e75d336db844d8ce56d3d26be31
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Aug 11 23:27:59 2023 -0700
fix broken tag listing links to tags
commit 736c3981c4affff8dea1eb908ff760ee740ec4a3
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Aug 11 23:25:44 2023 -0700
fix emit filepaths, tag emit being overriden by content
commit 79e828696a9e53357f61bd89c36e41555575c2c2
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Aug 11 22:47:50 2023 -0700
feature docs
commit 259d0a6d9ac5a02f0281e3fc061861b23481348f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Aug 11 00:31:44 2023 -0700
more documentation
commit df02ea20d7e12e8b9ffdd2968afaf5893c433488
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 10 21:32:11 2023 -0700
spacing fix
commit 21cc6a5da9edefd199c0b2158b85b8cd10dd901c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 10 21:29:11 2023 -0700
run prettier
commit cefbca4753a7d98f93f57a6452a09f6308e2fe27
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 10 21:16:07 2023 -0700
docs on making plugins
commit ad3f7b2d5fe15af2626250463994f5a9e9ba6d0a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 9 09:18:44 2023 -0700
format
commit ebf3263b7efacc9ac499f3f1f1bbc91451899ae0
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 9 09:10:40 2023 -0700
update npx quartz update script
commit cea6834fef54da59fc1692d1db0221b93793238f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 9 00:26:33 2023 -0700
profiling, better concurrency heuristics
commit 68ccd1d79de7cef275605e238238c1a80bbb074f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 8 22:53:01 2023 -0700
format
commit 49bd6bc3ffe1d3507e00bae62c12d9b045363090
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 8 22:52:49 2023 -0700
better concurrency debugging, --concurrency flag for npx quartz build
commit e4950e06a15e34134b9feb064749748080bd59a1
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 8 21:31:36 2023 -0700
fix getFileExtension missing numeric extensions (e.g. mp4)
commit e21f0f9bb97cbc4bd59f6bce0e0fce451b6d2b01
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 8 21:28:09 2023 -0700
change reading time to content meta
commit ee9ed4f2877bff1a64104b6d97ed0d51b1bb6fa3
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 8 20:36:24 2023 -0700
fix head.tsx
commit 2706a137a042b4bf932b0ace9934914f290605f3
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 8 20:18:31 2023 -0700
guide to creating components
commit 09d4eb0684eac96747778656fc4a8f8085c41388
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Aug 7 23:57:24 2023 -0700
fix notes
commit 533d68e642ca82b540d57a449d0e2c98ed921d6e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Aug 7 23:56:50 2023 -0700
most of creating components, increase legibility of bold in article and callouts
commit 774a162850883468052fd5c5a79cf8786bd96989
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Aug 7 21:51:23 2023 -0700
format
commit 2ac5dd49da34d33e4086630d371cbaf1ed294153
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Aug 7 21:51:06 2023 -0700
fix regression in code block font-size boosting on safari mobile
commit 527ce6546e7ec50e7720ff7b9b6ff79a89c3b7fc
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Aug 7 21:41:18 2023 -0700
various css fixes, fix new image loading bug when previewing, path docs
commit d02af6a8ae4c3bea4c94ad63c118d517318146fe
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Aug 7 17:34:38 2023 -0700
architecture, fix vendor prefixing
commit b4cacd59569c066c52bbe163165c2a30d6ce3ad0
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 6 22:07:33 2023 -0700
format
commit cd9dc6ecb570c08291e73d9db001e6068df4d88a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 6 22:07:08 2023 -0700
fix css transforms for mobile
commit d8d9dd22c9e81f344f3ab56f7262d804c2720fcd
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 6 20:52:17 2023 -0700
fix shortest path for non-md files, mobile fix
commit 075ac33474d5d439b01daf5392738a3ea810b86d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 6 19:54:11 2023 -0700
note formatting
commit 3adc73a703142b3c0475570e4de16701b2797524
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 6 19:52:30 2023 -0700
docs upgrade, ci changes
commit 028bcec62c3ca019a96783f17eaee1ecce6e092b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 6 17:09:29 2023 -0700
mobile fixes, fix bug when linking to anchor on home, docs
commit db6054a8c19703345cfdd6dd4a08f35986c14acc
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 5 18:00:52 2023 -0700
format, remove markdown from being procesed
commit a0d651d64dfd766157324fd86791da2168028cf2
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 5 17:53:29 2023 -0700
reverse query param hack to re-add sourcemap support
commit 1da467d2143a260af8e5b7d2d2f68f0fcaa0260c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 5 16:43:50 2023 -0700
non-admonition callout fix
commit 7c09627df4bd61e3b4fbd6fd84a1971b40ff72b3
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 5 15:34:10 2023 -0700
improve hot reload robustness
commit c402f0c3857a75cc101c3459866c94e646fd2957
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 5 11:28:09 2023 -0700
more robust error handling, config hotreload
commit 9e76b257d4be4b9e6ea7b514074ef74d8d125f4b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Aug 4 22:35:21 2023 -0700
fix mermaid initialization
commit 21a7ec23078c04601acc4741ee141d7560e0d6f2
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 3 23:36:00 2023 -0700
bump mathjax version
commit 6423f85614dc87a320625d2efe2088d648c127ff
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 3 23:28:34 2023 -0700
fix execsync
commit 3a2eae0a16cfc275182f8a26af0a77f0e9bd07c1
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 3 23:24:34 2023 -0700
fix fetch flags
commit 2acfb9e8701d2b001a82a6af75969a1df7d97b67
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 3 23:08:04 2023 -0700
format, add upstream
commit 93986c6e7c8893ae3068bb3ea2ba187e5e1d6f43
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 3 22:29:46 2023 -0700
update pull strategy
commit 4877a9c934201e8f0e4e83821efe2dc3f9299d9a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 3 00:08:13 2023 -0700
fix callout aliases not being used properly
commit 6457496b4b8222d95d9b5ab47e8eda62d7241739
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 2 23:42:49 2023 -0700
readme fixes, force
commit fdf1e2a41d079c4f2d1f3df7c297fa0d92a18cc9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 2 23:29:28 2023 -0700
use checkout for pulling updates
commit 663c41fa41faad1528335a18c73a197ed5c6ea11
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 2 23:04:26 2023 -0700
use posix style paths for all path ops
commit de72dd4e4af550cd72847d7cc0924a5859edb9e1
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 2 22:16:46 2023 -0700
format
commit 5537ca41e0069725e98ef9ad59a2d4dbaa0bd8ae
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 2 22:16:32 2023 -0700
use autostash and pull
commit 558a50916446746768fa43bbdfc8e229d8ec7759
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 2 22:11:46 2023 -0700
format
commit d7842e0ce713e338f21374cea407a46cace18cca
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 2 22:10:13 2023 -0700
make path and globbing more platform invariant
commit 264ea3d54438b30bc7d9280e076e3f6e29d0ff8c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 2 20:59:56 2023 -0700
add gitattributes for windows
commit 0a33ff7a82658ecc6db3bb881db167f69893499c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 2 20:56:31 2023 -0700
fix test matrix for ci
commit 429f331c212d598b0d7ff44f20f75cf007bcf32b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 2 20:53:13 2023 -0700
make ci also run on windows, re-add css minification
commit 9a0f20012a8f5051aa2faac62f91dc4f2a38151c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 2 00:07:41 2023 -0700
windows patches
commit c8c108c7f702ca3710733d6d455ca2661e13e8d3
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 1 23:29:58 2023 -0700
change default strategy to be rebase
commit aaae7d46c21491397b1f723d5ae16cff4f258544
Merge: a70e846b cbae88fc
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 1 22:48:32 2023 -0700
Merge branch 'v4-alpha' of https://github.com/jackyzha0/quartz into v4-alpha
commit a70e846b0a14f3065bbf613221fee0e3b09c12ef
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 1 22:47:16 2023 -0700
flag to allow ofm replace in html embed
commit cbae88fc4e9b98764cfccca2e85f265c4b894573
Author: Adam Brangenberg <adambrangenberg@proton.me>
Date: Mon Jul 31 05:08:32 2023 +0100
Removing redundant properties (#356)
commit cc7950267089648e4329531105fe5f8ba011b1b4
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jul 25 23:37:24 2023 -0700
make layouts simpler to think about
commit 45f9087f03fde7e7d762e25a9f2966d1e6e907f3
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jul 25 22:27:59 2023 -0700
fix checkbox/tasklist styling
commit 1c1a56902371d20e35ad3849cc806a2272f8e8df
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jul 25 21:11:06 2023 -0700
fix formatting
commit cee2883c0889a65e2786d70eb81932f5ed017e59
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jul 25 21:10:37 2023 -0700
nested tag support and tag index page
commit c0278a8c65d74441a6237e0a90c08f8b7b263d95
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jul 24 21:54:47 2023 -0700
font loading options, optimize css
commit e82ba97a396e4e9d77486b48e6ee8b1dfd1c1b4c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jul 24 00:07:58 2023 -0700
actually add processed tag to frontmatter
commit 041a4ce7bc39c65483eaeeddc97e6946cb49f540
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jul 24 00:04:01 2023 -0700
fix watch-mode batching
commit 569ff1a801f92c0761b5ddc9dbff52833b193c94
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 23 21:53:34 2023 -0700
npm i on quartz update
commit 351b4ab13be6b1e43eb286ffac2646d0479ba678
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 23 21:41:09 2023 -0700
styling fixes for stacking order and overflow
commit 4811500b1b9c169aac82254d771677cd6dc2a86c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 23 18:20:43 2023 -0700
make component resources a proper emitter
commit 236ba56be17f53f701fcfc6ca81b867defa433bd
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 23 17:59:44 2023 -0700
version bump, update doc
commit 7c2bb4ee4c4ee4d6abc8f7f3757d40c039a1bcac
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 23 17:58:35 2023 -0700
bundleinfo flag, minify scripts
commit 8fd75ffbfda30edd5a134a1fbf9b81ac3cebb2ff
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 23 17:42:00 2023 -0700
support attachments folder
commit 55a1fb8c41b6a34cc5cdfc5ec2533ed1f642211d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 23 17:09:12 2023 -0700
format
commit 9e83af04a78d5988bd517bcc61c48998bbfa17ef
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 23 17:07:19 2023 -0700
refactor static and asset emission to be actual emitter plugins
commit 000eb4c3c0ce6451702202824b49f609a45ab6f6
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 23 15:37:06 2023 -0700
update feature list
commit 5599eb590e1b9163d41847153545764ed9b02ff6
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 23 14:02:57 2023 -0700
feat: process tags in content
commit ae2e3b463a91d94caa8bdf62e5c3a3d726b8b4e4
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 23 11:49:26 2023 -0700
improve error handling while serving
commit fd7c33c5372dd61283fc44f4dccbff0e71fcbf5b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 23 11:19:15 2023 -0700
style fixes for search bar and title on mobile
commit 76fdb3b4d8f2060cf742911d28c0654fe7280609
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 23 11:04:20 2023 -0700
fix styles
commit 27a5f7ef8ef0b52ade767138ebd1e202f8b66476
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 23 11:02:45 2023 -0700
various typography and styling fixes
commit ab228748abb85474a1c1f5f9410ad8e1167e2c23
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jul 22 17:42:13 2023 -0700
oops actually use npm run check
commit 76fa9bbe00eba4249b12ef7c86ccdac4faa6051f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jul 22 17:39:10 2023 -0700
run prettier on ci
commit 7db2eda76cf51fd631d385c12a7b411339406067
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jul 22 17:27:41 2023 -0700
run prettier
commit 2034b970b649b37347921842b5223a7274e34d89
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jul 22 17:26:03 2023 -0700
configure prettier
commit 8dd73704e6e95254d2addf51fede6329f90796b8
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jul 22 16:06:36 2023 -0700
hot content reload
commit b7966ff7fa2829ac9d128f1d560a2b98149514ac
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jul 20 21:51:55 2023 -0700
update features list
commit 01d7d8e55448abe0a929d8730c735bed5d929048
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jul 19 23:03:59 2023 -0700
fix tag pages to emit to tag/index.html to override content and folder pages
commit 83d47f7aaa247371ad8a51b8d5245afe8f4af620
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jul 19 22:00:44 2023 -0700
rename github action
commit 76c092dcf20959bc52fcb13b28cee50cd4217e40
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jul 19 21:59:48 2023 -0700
add custom.scss
commit 410fc9c8d37b0c4118c70678db5d2e55a842f486
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jul 19 21:59:39 2023 -0700
quartz update and quartz sync
commit 8e0ba45789a81ee28f6c67468f7fcf9ea45832db
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 16 10:39:35 2023 -0700
add link resolution prompt to quartz create
commit f82282367efd41192716fbb89e5a8756ff73bd5a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jul 15 23:33:06 2023 -0700
treat _index as index
commit a3e4c86a4cf18e31fe5b65d57ce120174c9f6aee
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jul 15 23:05:17 2023 -0700
fix ci, disable strict path type checks by default
commit 3ac6b42e16dca5a44ed3fec2c0314f1dbbc2322b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jul 15 23:02:12 2023 -0700
finish path refactoring, add sourcemap + better trace support
commit 906f91f8eed5e91a7afae95c7002a3e4553d6aae
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jul 13 00:19:35 2023 -0700
base path refactor, more docs
commit 08f8e3b4a4879dd7c91c16fbce80c4f2bc5e357f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 9 19:32:24 2023 -0700
docs + various polish
commit b90590b9f487cdd49f019375fa5a09aad2e8ec1f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jul 8 14:36:02 2023 -0700
polish
commit b3480bdc49120010da8d2805df02cbf84ca08bdc
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jul 6 19:18:18 2023 -0700
fix styling for bullet points
commit 9cbacca2d4062e2b2e512f761ab580218c623b33
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jul 6 18:45:38 2023 -0700
handle dates as tags
commit 05d1ca01c39e18fa08776d4800e201abf8779f3c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jul 6 18:32:48 2023 -0700
handle string tags
commit f7bf4038dc7fcf3adc09697797da1c68c932eadc
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jul 6 16:56:30 2023 -0700
fix path parsing
commit 465804a389f77807f68ca048cf9d7fac1314d8c5
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jul 5 00:16:06 2023 -0700
basic docs, remove publish, add quartz create
commit 92ca78709227c6117797c52eada7d471bb4ba96a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jul 4 18:26:11 2023 -0700
fix default callout state
commit fe2852ff258eabfab49af98619c9b5b9f41e004c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jul 4 18:08:36 2023 -0700
update package
commit 974b0da3086d21aabf5ef1a3eefa50675c0d4e95
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jul 4 18:02:59 2023 -0700
folder and tag descriptions, re-enable relative pathing
commit 2a17431460770b3375b455815f503781f7448c20
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jul 4 17:14:15 2023 -0700
fix popover zindex
commit 38cff2d670ecf7fd325aaaf776a4c250a72cc661
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jul 4 16:48:36 2023 -0700
more visual polish, adjust colours and spacing
commit ab9da02c60c962128820e6874e6f07c98bc3dda7
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jul 4 10:08:32 2023 -0700
fix indexing causing main thread freeze, various polish
commit e0ebee5aa9b3646de722f139f1d8d15591df538e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 2 13:08:29 2023 -0700
various polish
commit 4c904d88aba14d0d153bfac364630ad61832a73d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jul 1 13:35:27 2023 -0700
rss + sitemap
commit ba9f243728cab171f86b40b9d50db485af272a39
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jul 1 00:03:01 2023 -0700
tag and folder pages
commit 24348b24a94c5f9ca285642b751e6798b92eedd9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jun 19 22:50:25 2023 -0700
fix: parsing wikilinks that have codeblock anchors, scroll to anchor
commit fd5c8d17d3b3cd0a13b0a21a2b78d85010e02e12
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jun 19 20:37:45 2023 -0700
basic search implementation
commit c4cf0dcb022ff826433b63b8ff68830bb8503895
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jun 18 10:47:07 2023 -0700
local and global graph
commit 8bfee04c8c6948a88114d53769d4bb89b8ec7bf5
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jun 17 16:05:46 2023 -0700
popovers
commit cb89cce183215f6a8edcb6d166875e2982586002
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jun 17 14:36:06 2023 -0700
basic left,right layout
commit b5877824500a19c721c93eedc59704db94487a94
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jun 17 13:08:06 2023 -0700
collapsible callout
commit 6d5491fdcbccfad7af6c6dcc63ce2f67abd3850c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jun 17 12:07:40 2023 -0700
collapsible toc
commit 917d5791acd6361c691902b445bdc4f7129ba3fc
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Jun 16 19:41:59 2023 -0700
modern toc tweaks
commit 9d2024b11c7c24ec8112b5019504fc44b4e1a297
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jun 12 22:41:42 2023 -0700
taglist, mermaid
commit 2bfe90b7e64839d8ec6319fe93b76472b0285114
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jun 11 23:46:38 2023 -0700
add config to components
commit 352075ae81a3304a7bfa2512ef69b1cdacb26c12
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jun 11 23:26:43 2023 -0700
refactor plugins to be functions instead of classes
commit b8c011410d6bcd6837f4efd6a3948196a0f7aeea
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Jun 9 23:06:02 2023 -0700
toc
commit 3a29f4c86ee7ed13fb8683b2728a856581e32de7
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Jun 9 19:58:58 2023 -0700
add custom spa solution
commit 59109a8c1d505f516d50d6b7f88cfe070bc1ca84
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jun 7 22:38:45 2023 -0700
add flamethrower router
commit 317cce9314ad78d90714dc55aa82a2c3dfa75d1a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jun 7 22:27:32 2023 -0700
generic quartz component for layout
commit dde36fa5589a362b60b7b72eb7793a3f133e159c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jun 7 10:52:53 2023 -0700
update gh actions
commit 1cb4dadf13913009660685b6f2c163c939e2a51a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jun 6 21:19:00 2023 -0700
codeblock copy
commit 0813f127a30b376c5d5552a8cdb6e5cad5969c38
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jun 6 20:58:26 2023 -0700
fix darkmode script load
commit 4d3579ca9876d3ca6612589d116c3a300a60b446
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jun 6 19:48:37 2023 -0700
darkmode scripts
commit 89e0311a98732201651a6a6c1eea3e9656e28fb2
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jun 6 00:00:38 2023 -0700
embeds
commit 700036e84c805ab0a59f88b368006a28a97b76d1
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jun 5 22:14:17 2023 -0700
callouts
commit 1406ee0f05dc688e1b7635d3ce14e63d1c42a973
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jun 4 13:37:43 2023 -0400
update spinners
commit 9ad89997a533744695b380b315f1f70293bb30c4
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jun 4 12:35:45 2023 -0400
multi-core builds
commit 4bdc17d4a11f0ba517c6d9124d296458332c536b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jun 3 15:07:19 2023 -0400
inline scripts
commit fcd81353f88b613e5e93c089e10e530d08695b3f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jun 1 19:48:38 2023 -0400
heading linking
commit 04eeb2d10c2bb8cac595a879446c1dcbfac4d6a6
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jun 1 19:05:14 2023 -0400
syntax higlighting
commit 42d3a7de1711bbd40a2b6857e3bf7ff17685f5d9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jun 1 17:35:31 2023 -0400
scss support
commit c1c46ad67e58884389fb59c17d81845fe0fbcad0
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jun 1 12:33:20 2023 -0400
obsidian flavored markdown support
commit 3636c052eb054d93a8a3ddfb9fdd873d5fe83a5d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed May 31 17:41:44 2023 -0400
link processing
commit 21c007e2fcf73fe4ef04dd07db7116afed46047a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed May 31 17:01:23 2023 -0400
rendering, link resolution, asset copying
commit ad6ce0d73fbd015e00e59ec30bda3cc8de777832
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue May 30 08:02:20 2023 -0700
plugin integration round 2
commit a757521313fb2c623d4dfda95eb97d3189bfe253
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun May 28 17:44:08 2023 -0700
base setup
commit 7b1da7a8456b0404ad4ebcb8afd523a6618439ff
Author: BSD-Yassin <103321053+BSD-Yassin@users.noreply.github.com>
Date: Thu Apr 27 20:12:56 2023 +0200
i18n: Update fr.toml (#313)
commit e482fa10970fd6a0c1c0ec836db84ba4187bc8f7
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Apr 6 15:06:01 2023 -0700
fix: graph and tooltip sometimes not showing
commit ba7a968881083b9d3b3b6ecd65df076e76bcb164
Author: Mattia Ippoliti <Ippolitimattia@gmail.com>
Date: Sat Apr 1 22:50:08 2023 +0200
fix: padding for empty title callouts (#308)
commit db27557aa307921cf035b7f62d9d9f2b452b1018
Author: Md Jawad Noor Asif <jawad.asif.bd@gmail.com>
Date: Thu Mar 30 17:14:06 2023 +0600
fix: search highlight not showing because for trailing slash (#306)
commit b7c305e0024ca78c1d9f9d7a5107ffc124c56ab1
Author: Mike Walton <walton.myke@gmail.com>
Date: Wed Mar 22 22:56:20 2023 -0700
adding myself to the showcase (#301)
commit 74fe4d6813dfce9760464141410b683bd8964d45
Author: Daniel Lazaro <daniel@dlazaro.ca>
Date: Sat Mar 18 12:20:56 2023 -0400
docs: Update link to callouts documentation (#300)
commit d6c31595b320562313010ca68002942ac951a069
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Mar 16 10:33:01 2023 -0700
deps: bump hugo-obsidian
commit aa5ab03d4ad6e7cb4d9efd3f9c177ebde7e4c4af
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Mar 2 09:14:29 2023 -0800
docs: update to account for github changes
commit ecba6071b899d62492c3970924bbf24c2ba951f3
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Feb 25 13:04:15 2023 -0800
deps: bump hugo-obsidian
commit 983efab94c31bb19b532e120f2f70f45f788b7c8
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Feb 12 16:46:11 2023 -0800
fix: recent notes partial sorting
commit 10e41743e5df81195479aa2dd3ba4d5fb5b1ebf3
Author: Dev Uni <wlwhsvkdlxh@gmail.com>
Date: Wed Feb 8 01:38:20 2023 +0900
fix: Bad UI due to head.html (#284)
commit bde44fadf20a1f91a466653f9552ce8bd658e2f9
Author: Simon Späti <simu@sspaeti.com>
Date: Tue Feb 7 09:16:15 2023 +0100
feat: Adding Twitter and Social image preview including description (#207)
commit 6885651f7b4504446b456a2e61a85f1b787b3873
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Feb 6 12:58:34 2023 -0800
feat: max-width for large screens
commit 7df2bb6f5e681ce3329e4faf6ac6cbcda7a3f14e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Feb 5 12:01:49 2023 -0800
fix: fix duplicate link click tracking
commit 11959de11ce76f0f47284b946a577481c0ffaeaa
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Feb 5 11:34:39 2023 -0800
feat: add more plausible events
commit a73aca8ed9c16915928206bad6fa0ccf4e9b2b8b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Feb 5 10:39:58 2023 -0800
feat: switch from GA to Plausible for analytics
commit 93610e232b366c6f6cb9695d4755fa578dc28aa0
Author: Adam Brangenberg <adambrangenberg@proton.me>
Date: Wed Feb 1 21:34:18 2023 +0100
feat: Remove leading slash of folders in graph view (#282)
commit 712dab5c8cd8933d9cdb63d4c833940c461a09da
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jan 31 11:00:28 2023 -0800
docs: remove broken links from showcase
commit 77b3907b23b6d453dd7bfa04e4cef6f28d68ca54
Author: Olivér Falvai <ofalvai@gmail.com>
Date: Tue Jan 31 19:48:20 2023 +0100
docs: Clarify Obsidian settings (#280)
commit 8fc63586c428f1d9dcb1e084c0d9a48802b15582
Author: herrwinfried <ozgurarslln@icloud.com>
Date: Sun Jan 29 23:14:11 2023 +0300
feat: Added Turkish translation (#275)
commit 24c9777a5202a9fc9a86525955ba08ec3b2dc6ec
Author: Apoorv Khandelwal <mail@apoorvkh.com>
Date: Sat Jan 21 10:01:05 2023 -0800
feat: Embedding multimodal assets (#274)
commit 7a8811a184c8bd6206ee041d6486b7e456d5a84a
Author: Quadrubo <71718414+Quadrubo@users.noreply.github.com>
Date: Wed Jan 18 17:25:01 2023 +0100
added the liveReloadPort as an option for docker (#272)
commit eb2f6aeca891135389e58da0016c60af1363df61
Author: chaosarium <38693485+chaosarium@users.noreply.github.com>
Date: Mon Jan 9 17:14:11 2023 -0500
Fix callout behaviour inconsistent with Obsidian (closes #168) (#268)
commit b78008532f09dce26018ea7ea544f0e40d36756d
Author: Md Jawad Noor Asif <jawad.asif.bd@gmail.com>
Date: Tue Jan 10 04:12:52 2023 +0600
feat: Added Bangla translations (#266)
commit c5b103c85feafa96d5e5ecc572b043331d4a6bd4
Author: Md Jawad Noor Asif <jawad.asif.bd@gmail.com>
Date: Wed Jan 4 09:10:25 2023 +0600
fix: fix unicode broken tags (#261)
commit 614a6222a1638c159d2ac9c005be5b2ddec78dd2
Author: Adam Brangenberg <adambrangenberg@proton.me>
Date: Thu Dec 29 16:43:41 2022 +0100
refactor: General performance/style improvements (#262)
commit dc4373789617a58d517eac59c3e60fabb47eafd0
Author: chaosarium <38693485+chaosarium@users.noreply.github.com>
Date: Sat Dec 24 12:10:59 2022 -0500
fix edge cases link processing (#258)
Fixes https://github.com/jackyzha0/quartz/issues/176
commit ea37486309409048681496fb2449c1182d0f44eb
Author: toof <toof@toof.jp>
Date: Sun Dec 25 00:38:49 2022 +0900
fix: fix misspelling (#259)
commit c1b0eafce668c0c7498a5875c23c074eeb71e842
Author: chaosarium <38693485+chaosarium@users.noreply.github.com>
Date: Thu Dec 22 13:34:21 2022 -0500
feat: Added simplified Chinese translations (#257)
commit ce5df837f5f6ed57f9e9f85439ee9a40ebf234dc
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Dec 3 21:03:12 2022 -0800
feat: latex in search results
commit 4cd6f7efdf9161f1a1c7ad381d5bc4f2828eedb8
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Nov 30 18:00:12 2022 -0800
fix: text highlighting
commit 5a7936e23af000d7cefbf2dcb2ba4c16f1f993dc
Author: Apoorv Khandelwal <mail@apoorvkh.com>
Date: Wed Nov 30 17:41:05 2022 -0800
fix: Replacing "internal-link broken" with link to asset (#232)
commit 5fd707714faaaac5c3d39ec056ff88446fcb3cc2
Author: Jon Erling Hustadnes <jonerling.hustadnes@gmail.com>
Date: Sun Nov 27 19:55:43 2022 +0100
feat: Added Norwegian localization (#242)
commit 717a13a580fb82063d40525bcc63cd1d36f5994a
Author: Filippo Andrea Sighinolfi <83777862+Sighi-04@users.noreply.github.com>
Date: Sun Nov 27 19:55:13 2022 +0100
feat: Added italian localization in i18n/it.toml (#239)
commit 5f3d4306997e87437b4c9de97aa9eed355133965
Author: Brendan Ang <53790951+bbawj@users.noreply.github.com>
Date: Mon Nov 28 02:53:52 2022 +0800
feat: add support for mermaid diagrams (#244)
commit 66f3e249fe90cba366a99fe08f0898af27fe59e6
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Nov 23 08:34:19 2022 -0800
fix: only run docker publish on main repository
commit e374e3abd42c1719ad1fdc6bd9c641efb2ddf954
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Nov 21 23:36:27 2022 -0800
fix: jump to search for operand
commit f08a76a738235d1ad8e0b17f74988386dcfd86cd
Author: SafEight <43656822+SafEight@users.noreply.github.com>
Date: Mon Nov 21 21:05:46 2022 +0000
fix: External links ending in .md don't get trimmed (#236)
Co-authored-by: SAF <saf@saf.saf>
fixes https://github.com/jackyzha0/quartz/issues/229
commit d80f6946c854365336062f71f0c922fb42beea54
Author: Morgan Gallant <morgan@morgangallant.com>
Date: Tue Nov 22 01:54:45 2022 +0900
fix: Semantic Search: Use Operand Beta API (#235)
commit 120d104230b1c762a57eb41240e18aee6c289c08
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Nov 20 15:14:48 2022 -0800
update config for search
commit e9aa6ae9e7ec1792b11ebcb6cac606c47ae3cf7d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Nov 20 15:09:58 2022 -0800
feat: docker docs, semantic search alpha
commit c12af32a5ade0240630ff3b9fc11d877d6a16825
Author: Apoorv Khandelwal <apoorv.khand@gmail.com>
Date: Sun Nov 20 17:03:53 2022 -0500
feat: Dockerfile and automated container build (#230)
commit de2b6b9a1b95cb6af7eb421d9a4de054e7e41315
Author: SafEight <43656822+SafEight@users.noreply.github.com>
Date: Sat Nov 19 21:17:55 2022 +0000
feat: Replace == with <mark> (#234)
Co-authored-by: SAF <saf@saf.saf>
commit 7f9f58860dc98038798e362e52c5d39c750858cb
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 19 11:18:57 2022 -0800
feat: allow enableToc to override default no TOC on a per-page basis
commit 151b9851d6828ef28ed75a40e12be01e421b94d8
Author: jet457 <abhmul@gmail.com>
Date: Sat Nov 19 13:10:41 2022 -0600
docs: add Abhijeet's math-wiki to the showcase (#228)
commit d56a58044dcc619f6e26674316e7c38fc8ace8c4
Author: saucecoat <43880196+saucecoat@users.noreply.github.com>
Date: Sun Oct 30 06:08:44 2022 +0000
Added German translation (#223)
commit 689201bfbde5bd48b001bfa2b54db6a1d5a4aa81
Author: Conor <hzk@konor.fr>
Date: Wed Oct 26 18:12:35 2022 +0200
feat: Add French translation (#221)
commit 9b72edcd9cce10d6064e4e8b2f61b7db2966515d
Merge: 8704edcc 0a602eda
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Oct 25 13:14:13 2022 -0700
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit 8704edcca2f14c8662affa5a730083949f3f5749
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Oct 25 13:14:06 2022 -0700
deps: bump ubuntu version (closes #218)
commit 0a602eda1bc0c5446dbbc2917b3c3dcd1ad99c6b
Author: Evan Cater <evan.ecater@gmail.com>
Date: Mon Oct 24 12:13:35 2022 -0400
fix euler's identity (#220)
commit 72571a75884a10cd78205d79a5e475e17a4d9451
Author: Javier Zaleta Martínez <94091554+javierzaleta@users.noreply.github.com>
Date: Tue Oct 18 19:25:55 2022 -0500
feat: Add Spanish translation (#217)
commit 3409a49f156263aa36ca866e0d2b0b16645c2162
Author: Charles Chamberlain <charlesetc@users.noreply.github.com>
Date: Sun Oct 16 12:43:43 2022 -0400
fix: Apply monospace style to all meta in a popover (#216)
commit 666ffebe90c04dc7fe064a98232538826af70738
Author: Pavol Komlos <62595149+plundration@users.noreply.github.com>
Date: Wed Oct 12 17:21:28 2022 +0200
Decode the heading id from split link (#214)
commit 8ea1525df40751af2702a508c3ecf2edf2d76107
Author: Seth <37915796+iSaluki@users.noreply.github.com>
Date: Mon Oct 3 19:45:54 2022 +0100
Add SethMB Work (#203)
commit dd11d56dd986c82914ce529fb43c8e2beb78a094
Merge: cd7e2088 169ef442
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Sep 23 10:17:34 2022 -0700
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit cd7e2088d564023b073a458282e3a63b7a108c0b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Sep 23 10:17:28 2022 -0700
feat: hide TOC when no headers (closes #204)
commit 169ef442b9ae1a61af516edc5c90ff0299d91a25
Author: Simon Späti <simon@airbyte.io>
Date: Wed Sep 14 19:05:51 2022 +0200
Adding reference projects (#196)
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
commit 8e3042df4901885b051300c5ae2131bdcc613a57
Author: DongDong Chen <cdd2zju@gmail.com>
Date: Thu Sep 15 01:05:20 2022 +0800
add my showcase : oldwinterの数字花园 (#192)
commit 2145e92b004909070bd4a20d0f9fd1c0ddc70756
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Sep 12 11:08:07 2022 -0700
fix: make latex rendering size more simialr to obsidian
commit e6c7a4e1e2e3b0437b5dbbbeb7abc4e05622db16
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Sep 11 18:03:55 2022 -0700
fix: latex rendering bugs + patch for #195
commit ca84da5b31fa00ca6c729a9b500efeb28f90b41b
Author: Nikola Georgiev <42315052+nikolageorgiev2000@users.noreply.github.com>
Date: Mon Sep 12 01:05:14 2022 +0100
feat: Hide full path to file in Wikilinks by default (#195)
commit 0d1670adbaa63e4972bd560efd3c046eb03e48ca
Merge: 5c770f96 ce55eca7
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Aug 29 14:23:19 2022 -0400
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit 5c770f965a6af0d40926640d957e7841f71b908b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Aug 29 14:23:04 2022 -0400
Update Quartz version in documentation
commit ce55eca73bdfc6c043137dcbd7a2bda24cfce9af
Author: Andrii Yefremov <56955307+decatetsu@users.noreply.github.com>
Date: Mon Aug 29 21:15:18 2022 +0300
Add Ukrainian translation (#191)
commit 591c4813ec8ee700caa45253464290d315d57603
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 28 01:09:52 2022 -0400
deps: bump hugo-obsidian version
commit 83e7aec3c9dca4dba4b25605f5c88a7a3cecf386
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 24 00:45:08 2022 -0400
fix: tag list styling
commit 25ba1159ad5cabfe79c80a40ead158c389a68bef
Author: Youssif Shaaban Alsager <ysh-alsager@hotmail.com>
Date: Wed Aug 24 05:32:40 2022 +0200
feat: Add internationalization (i18n) support (#182)
commit e38eaa94d6d0d91486bd3b778102658a36ee254f
Author: Vincent Huang <vincenthuang75025@yahoo.com>
Date: Sat Aug 20 20:31:06 2022 -0500
Popover preview should show relevant heading (#180)
commit a78926ede5a951b2ba48e506c93d25060e240c0e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 11 11:42:16 2022 -0700
feat: link previews to page-list (closes #173)
commit 5c76d8dad9d993010c4e57c6de4e90911a3cd11a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Aug 5 11:08:52 2022 -0700
fix: make callout detection case-insensitive (closes #171)
commit 3dcc1f1106c1ad81cf6cd0a45f51249d719d694f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Aug 5 11:04:01 2022 -0700
feat: better graph scaling (closes #170)
commit ff770927fdbb13e07572b3993686686da4493cc9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 4 14:50:24 2022 -0700
style: _callouts.scss simplification (#169)
commit 7ffc907907b14722bf691d1cbd5f178c1c0943a6
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 3 23:46:55 2022 -0700
fix: CJK search (closes #163)
commit 6dd4c64a4c09eed71718fe67491dda95f286d345
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Aug 1 07:59:49 2022 -0700
fix: highlights being stripped in non-semantic search mode
commit 8fc6b8e28ebd08eb05aea80e602b9f279f660b5b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 31 18:21:17 2022 -0700
docs: update, re-added debounce
commit b10b23a47bb822bc3eee671d24fd954ec8d74a7d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 31 18:02:06 2022 -0700
docs: add documentation for Operand Search, remove debounce
commit 23380d0519365d09cb629a66fe2ccba1c56e91f2
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 31 16:55:25 2022 -0700
fix: title not being selected properly, bump hugo-obsidian for uri fix
commit dd047305afa0618d2a5cd11baec064a1c74ccb90
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 31 12:33:36 2022 -0700
deps: bump hugo-obsidian to fix bug of writing to non-existent directory during build
commit 54a8fd4a563bd3de815aaae2c9d9efd57e65be22
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 31 12:24:53 2022 -0700
deps: bump hugo-obsidian to properly copy linkmap
commit 5ef9aad501f17b57107a35508a093211ecf2dbd8
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 31 12:16:36 2022 -0700
feat: add support for semantic search using operand
commit 14b89105dc10eeb3b9b48abf16eda2b9420c64a0
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 31 10:54:23 2022 -0700
refactor: move search utils to util.js
commit 93d039fe7cf14246477844aa1b116585a260003d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 31 10:14:36 2022 -0700
deps: bump hugo-obsidian version
commit 234c707a93e1dbe438d0a45f1348cc6c39e2a265
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jul 30 18:46:19 2022 -0700
docs: improve scss structure and admonition styling, update docs
commit 728d8529ec1a782752abd9254fbc4cae11b8468a
Author: Emile Bangma <ewjbangma@hotmail.com>
Date: Sun Jul 31 02:29:26 2022 +0200
Support Admonition callouts (#166) (closes #88)
commit e142f37e8dea7f6f502026cc35ea02390be63556
Merge: d747b19e 1f3da4b8
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jul 19 09:03:26 2022 -0700
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit d747b19e6104def4b550d86b2ce6ce923773d8ad
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jul 19 09:03:19 2022 -0700
docs: copy edits
commit 1f3da4b8292a7c2ef7eafe9b3a00ef40eb30edac
Author: Pranav M <pranavm7@outlook.com>
Date: Mon Jul 18 11:45:36 2022 -0400
feat: edit the clipboard button to change border colour on success (#162)
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
commit e15e39155de54dc1624bab80eefbccd6a783cd0c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Jul 15 14:26:31 2022 -0700
fix: give precedence to date created over last modified if defined (#101)
commit dff5ae0d4debfdb2de226984e86a987d99d039ad
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jul 14 13:09:21 2022 -0700
style: improve header anchor styling
commit b2555ced61628008e9a1321921376c3f9fb53791
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jul 14 12:02:35 2022 -0700
feat: add description section to section/term/taxonomies, fix header margin
commit 7ccff2cf3d4f7a96be2cf890093798067951fd2e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jul 14 11:49:47 2022 -0700
fix: styling on page-list for smaller screens
commit e0b6606d500e69cc52715729f075808de90f376b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jul 14 10:38:34 2022 -0700
fix: make section-li scss more generic
commit d7a42a2fd7919ac37ff98be31edc34c3511d255f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jul 14 10:30:07 2022 -0700
feat: improve styling for lists, fix anchor offset
commit 422b6cc25bec38785e52f304261f7a7f392ec9e4
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jul 13 23:51:33 2022 -0700
feat: css typography improvements
commit 22c8981bb9a97743f02ab5d5feabda7ff5a6afc4
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jul 13 23:37:54 2022 -0700
feat: css refactor for easy font change
commit 8b2a82a96a2c7c3f40fd5648c756db3408947fdb
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jul 13 22:27:13 2022 -0700
fix: change / to use base url
commit 81af8c459bc9924b8c7137aee9385ed5f5deeb3c
Author: y1450 <107429941+y1450@users.noreply.github.com>
Date: Thu Jul 14 00:02:11 2022 +0200
fix: remove console log (#159)
commit ffe22689eb43f42afc2d6bcf9b8b190b19a7e5d1
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jul 13 15:01:50 2022 -0700
feat: use floating-ui for better popover positioning
commit c1b8fe1221e3367f0632ce43f602e811c0fd0284
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jul 13 14:32:32 2022 -0700
feat: restyle search icon
commit b7a619bbd73f9220f8c1fcbad203792c78343464
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jul 12 14:37:10 2022 -0700
fix: tabsize not being respected
commit 74993d19b72aee78e89b0b13b8f1d4a72fe5fe29
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jul 5 15:42:57 2022 -0700
docs + fix: broken partial and description of enableGitHubEdit
commit 25a4d3b6e17c2a5f6a935446ea97d06a323f71f6
Author: rphla <101242699+rphla@users.noreply.github.com>
Date: Wed Jul 6 06:39:29 2022 +0800
Add GitHub "edit" button (#157)
commit aaf31f419eb167dbb7582fb103be29f0bef95ba9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 3 11:50:13 2022 -0700
fix: copy code block logic for non code pages
commit f54df35767dcda9bc4853decff86d57323593685
Author: Geoffrey Garrett <g.h.garrett13@gmail.com>
Date: Sun Jul 3 20:42:35 2022 +0200
Copy to clipboard feature for code block (#152)
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
commit 015ed4cfa2db4636e03debcda0d4201f24346098
Author: Aiden Bai 白宇彤 <aiden.bai05@gmail.com>
Date: Sat Jul 2 19:40:18 2022 -0700
Fix `width: auto` for SPA routing (#156)
commit a8137edf247c46ef3a5af78c48bcd299a13c1a7d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jul 2 17:14:17 2022 -0700
fix: adjust weird colours for err highlighting
commit eda370334a3798070c2f79ec38021edb3b33a84f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Jul 1 11:27:50 2022 -0700
fix: image scaling for md-style links (closes #155)
commit d3e20b8b94c9229e94fccbe54c867efde6847c6e
Author: Geoffrey Garrett <g.h.garrett13@gmail.com>
Date: Fri Jul 1 20:03:52 2022 +0200
Added optional rendering of code block titles (#148)
commit 8d7a7b712f5a4ee49e3687de8fb00f76d7571368
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Jul 1 11:02:42 2022 -0700
fix: non-SPA fn defs (closes #154)
commit 0896814959e912cabaf9ec83bc0a3eb77d152842
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jun 29 17:35:29 2022 -0700
docs: remove test image from hosting
commit 8b2fba895aa804e895eaa02a622f318113a35663
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jun 29 17:34:05 2022 -0700
feat: image scaling (closes #131)
commit e884f4927f3e48285ca6689507f5e0f61072de04
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jun 29 17:17:53 2022 -0700
fix: anchor formatting (closes #141)
commit 2b0482ae4c5ef7d5c7cc5d33419c1fb440c0238a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jun 29 17:03:41 2022 -0700
docs: fix page weight
commit 8a100edeb81382dc838f600ee1b8dbd3e7560e37
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jun 29 16:57:36 2022 -0700
docs: polish and update
commit 200c60514207d7970968e31740797fad76f56ee7
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jun 29 16:16:06 2022 -0700
feat: enable raw html by default (fixes #143)
commit f2078ee621b7137c49b176156ff70ddb5359d5a8
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jun 29 16:12:33 2022 -0700
fix: prefix images with base url for non-root quartz
commit 916c51c19c3aa5406cf1d5062f10a0b858f487cc
Merge: 72941965 67a7ba37
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jun 28 23:21:25 2022 -0700
Merge pull request #150 from aidenybai/bump-million
commit 67a7ba37e899ca0555fa37e159af6d599cf468ee
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue Jun 28 21:43:28 2022 -0700
Bump million to 1.11.3
commit 72941965abc135f8df28b47a90a7b2965fb075bd
Merge: 34b03537 b732293f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jun 27 16:27:57 2022 -0700
Merge pull request #146 from geoffreygarrett/hugo
commit b732293f65999e9a1d3a40a5ddeccf53a385b1f3
Author: Geoffrey Garrett <g.h.garrett13@gmail.com>
Date: Tue Jun 28 01:21:22 2022 +0200
fix(head.html): Adds robustness to `config.yaml` favicon definitions
Initially assumed that `href` definitions should have `/...` as their
pattern, and `baseURL` would always end with `/`, however the omission
of `/` as the prefix of the former and suffix of the latter
simultaneously, would result in broken favicon paths. Final comment:
`..///...` is not breaking, which is worst case scenario with this fix.
commit 7070a1992a6c9462d50afcc7139f8f97e1dce2b8
Author: Geoffrey Garrett <g.h.garrett13@gmail.com>
Date: Tue Jun 28 01:15:33 2022 +0200
docs(config.md): Fixed multi-favicon examples and general favicon explanation throughout
commit 997937af5a6dc317da56ae294dce927ec5930a4b
Author: Geoffrey Garrett <g.h.garrett13@gmail.com>
Date: Tue Jun 28 00:45:48 2022 +0200
docs(config.md): Added short explainer on favicons
commit a334b45b17f0966214d44a5b775c273e1ba7874b
Author: Geoffrey Garrett <g.h.garrett13@gmail.com>
Date: Mon Jun 27 22:05:35 2022 +0200
docs(content/notes/config.md): Adds documentation for the new favicon support
commit 473ea2c66f9122cec2647c281ca47cc073ca5fd0
Author: Geoffrey Garrett <g.h.garrett13@gmail.com>
Date: Mon Jun 27 22:04:32 2022 +0200
feat(layouts/partials/head.html): Adds general favicon support with dict and string input format
commit 34b0353797a0d24c309139034918ad2060f504f5
Merge: dbd4fb75 52a185f7
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jun 7 08:43:52 2022 -0700
Merge pull request #140 from DhammaCharts/hugo
commit 52a185f73b18d8e5a564c2144401de750b0e025a
Author: DhammaCharts <100090806+DhammaCharts@users.noreply.github.com>
Date: Mon Jun 6 16:49:01 2022 +0100
change enableGlobalGraph to false
commit 69c74ca6b5854cbb3e7dd895dca0539f51f49720
Author: DhammaCharts <100090806+DhammaCharts@users.noreply.github.com>
Date: Mon Jun 6 16:48:16 2022 +0100
minor adjustment
commit ab809249c8f57c1980de2fa850eef66301619307
Author: DhammaCharts <100090806+DhammaCharts@users.noreply.github.com>
Date: Mon Jun 6 16:42:53 2022 +0100
Update layouts/partials/head.html
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
commit 84c75d05460dd2974ff04a43f6a770fc31deca63
Merge: a275123b dbd4fb75
Author: DhammaCharts <100090806+DhammaCharts@users.noreply.github.com>
Date: Mon Jun 6 12:56:47 2022 +0100
Merge branch 'hugo' into hugo
commit dbd4fb7595055551118e7dab59a11459bcdc3d9b
Merge: 84c6e1ef a1293f82
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Jun 3 10:59:18 2022 -0700
Merge pull request #139 from aidenybai/prerender-latex
commit a275123be2b1d528dbde23beb9880933c4e22c3e
Author: DhammaCharts <100090806+DhammaCharts@users.noreply.github.com>
Date: Thu Jun 2 08:35:28 2022 +0100
better font behaviour
commit c88f31c3645bb0002171bf21850c7ca6d217c73f
Author: DhammaCharts <100090806+DhammaCharts@users.noreply.github.com>
Date: Thu Jun 2 08:16:02 2022 +0100
change to object destructuring for drawGraph() arguments
commit d261655d96f9ed084a176ed113b0d11f1351c6de
Author: DhammaCharts <100090806+DhammaCharts@users.noreply.github.com>
Date: Thu Jun 2 07:49:09 2022 +0100
remove unnecessary ternary
commit c0800a874980ab0f24fc2e350d70792d9c7f2956
Author: DhammaCharts <100090806+DhammaCharts@users.noreply.github.com>
Date: Thu Jun 2 07:45:44 2022 +0100
change baseURL back to original
commit ac0dd50c048d68884b0ada42e3ab0476fb29ef65
Author: DhammaCharts <100090806+DhammaCharts@users.noreply.github.com>
Date: Wed Jun 1 21:30:40 2022 +0100
uncomment window.Million
commit e809896338b51e65ca862809e79884469476f2de
Author: DhammaCharts <100090806+DhammaCharts@users.noreply.github.com>
Date: Wed Jun 1 21:22:31 2022 +0100
increase scale
commit 19606ba63d15edd1e4a98bf1ce5cd510a24880e0
Author: DhammaCharts <100090806+DhammaCharts@users.noreply.github.com>
Date: Wed Jun 1 21:19:03 2022 +0100
add www.
commit 1e237ef677f3b958597460175269eed4b0638112
Author: DhammaCharts <100090806+DhammaCharts@users.noreply.github.com>
Date: Wed Jun 1 20:15:44 2022 +0100
change baseURL
commit 5a1fbc937470b4f43b318dd0fa9af01b4a47b188
Author: DhammaCharts <100090806+DhammaCharts@users.noreply.github.com>
Date: Wed Jun 1 13:49:27 2022 +0100
Improve graph display, options and ability to have a global graph on the home page, local graphs on subpage.
commit a1293f820a733978f1da8ebd13e676f46634f60d
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Sun May 29 20:40:44 2022 -0700
Prerender latex
commit 84c6e1efed856b2e03100e4cfd88f2d9cd44cb9c
Merge: 775a1b24 8673a7bc
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat May 28 23:27:54 2022 -0700
Merge pull request #138 from aidenybai/add-footer-config
commit 8673a7bc3d1061eb11381e8d7e85dd0d2e1fa64c
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Sat May 28 22:52:18 2022 -0700
Add option to toggle footer
commit 775a1b2490883e1eefa1c87f5477007365d694d6
Merge: cbc2bea4 006b74ec
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri May 27 19:21:05 2022 -0700
Merge pull request #137 from aidenybai/fix-non-spa-routing
commit 006b74ec6feed2d01099754c888bac4a9474a6b1
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Fri May 27 18:45:42 2022 -0700
Fix formatting
commit 8aba612a0013e84f0b3f9d60863c02ad1b0bfd6e
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Fri May 27 18:42:01 2022 -0700
Fix non-spa fallback
commit cbc2bea413ddf58c6316e49c45b5a5a55f4271e2
Merge: ba586adc ae240ff8
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri May 27 18:32:49 2022 -0700
Merge pull request #136 from aidenybai/custom-progress-bar-color
commit ae240ff82cd8de66c28b1608e72db6ed397cab13
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Fri May 27 18:31:36 2022 -0700
Remove redundant CSS rule
commit ba586adc76df6d75048a61e5dd529704496f6bda
Merge: 232bd2f0 159deabf
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri May 27 17:14:55 2022 -0700
Merge pull request #135 from aidenybai/bump-million
commit 159deabfe160c7570679269873f18776cb586437
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Fri May 27 16:14:17 2022 -0700
Bump to 1.9.6
commit 44984cdaf4dfca8c25e9b73066ee22c775ed6d2e
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Fri May 27 13:27:13 2022 -0700
Add support for progress bar
commit 683cb53cbd4d581a061b64a26da54285ef479e19
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Fri May 27 13:19:19 2022 -0700
Bump million to 1.9.5
commit 232bd2f016f7d57602fe39703407100f5d26f278
Merge: 0293c122 e0fd9570
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri May 27 11:01:20 2022 -0700
Merge pull request #134 from aidenybai/add-prefetching-within-graph
commit e0fd9570d746cb2aa270dbe64dae038fc02bdbac
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Fri May 27 09:49:28 2022 -0700
Bump million to 1.9.4
commit bc32bbeaed10eac3094fcaa899ca626dc8e56771
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Fri May 27 09:02:01 2022 -0700
Bump milliomn to 1.9.3
commit efb6c7845f0a2743dd07b81f1d03b03d058ede0d
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Fri May 27 08:40:00 2022 -0700
Add prefetch to graph
commit bd316d8249f096c4d5616d682f142f49d4ca914f
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Fri May 27 08:39:44 2022 -0700
Bump million to 1.9.2
commit 0293c122177bf8c595cda8b4dfb513d90b1e6b03
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon May 23 22:25:13 2022 -0700
feat: recent posts section/partial
commit 0439c163a03fc50487fbe1cbfc09dc38af7ed2f2
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri May 20 16:50:56 2022 -0400
fix: js not executing if spa disabled
commit 0b6711c2185abbde7e95125b672ee8b5d827cb8b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat May 14 16:47:50 2022 -0400
fix: tag boxes overlapping for content with many tags (closes #130)
commit ed9a8efd1ff4ee569fa4256e044151670abaea82
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu May 5 21:11:23 2022 -0400
fix inline link highlighting, safer latex render
commit e302f6c423136d1dbdfda48c2b241e62bb5654e7
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu May 5 20:35:32 2022 -0400
fix: more generic style to match bad nesting generated by popover interp
commit b21b27d1d3d68bfb4d285f39122a154fceefb9ab
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu May 5 20:30:55 2022 -0400
fix: clean wikilinks and render latex in popover
commit 364aee36fc8891c48ab2bd20c396ce321cd7a0a6
Merge: cea0f3eb 8b855b52
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu May 5 01:03:09 2022 -0400
fix: merge conf
commit cea0f3eb743b26db0d5297ab10e229617585fe0c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu May 5 00:58:50 2022 -0400
feat: contextual backlinks (closes #106)
commit 8b855b522ac472b666379743dafeace6ae37fb1a
Merge: b67a389b 7b3696b8
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed May 4 11:40:38 2022 -0400
Merge pull request #125 from aidenybai/fix-latex
commit 7b3696b877c33f8dc605be1f4f4a688fe0df5b84
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Wed May 4 08:39:25 2022 -0700
Remove pnpm debug log
commit b4ff12ca0b1b5179c20a1ea57f182caa703b0826
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Wed May 4 08:10:59 2022 -0700
Fix latex
commit b67a389beacfade21276461f3e275c07969664e5
Merge: a0997444 2b5c03c9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue May 3 13:59:02 2022 -0400
Merge pull request #124 from aidenybai/hugo
commit 2b5c03c97286e06e94e8a27634678e64473a2ec8
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 10:55:45 2022 -0700
Remove redundant URL construction
commit aaed5dc1f1849a54869743596a6133548e83392d
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 10:54:39 2022 -0700
Support /path root sites
commit 1a5d158fce648492c48644acfea039261ac1dffa
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 10:38:41 2022 -0700
Support active node with other data at end of url
commit a09974446d5be617267c2e6ad8c956e88ce83176
Merge: 03742621 9fc71603
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue May 3 13:21:32 2022 -0400
Merge pull request #123 from aidenybai/fix-popover
commit 9fc71603ba3fb58239e7c2647c92996076442900
Merge: d38f9bec 3789df80
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 10:18:41 2022 -0700
Merge
commit d38f9bec70c7e46d9e7662ba3925abc9cdd9370a
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 10:16:09 2022 -0700
Rename API and generalize router API
commit 771ebd8031819dcaf9e3d6744643677e30c14b64
Merge: e4cc625c 03742621
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 10:07:38 2022 -0700
Merge
commit e4cc625c33ecd2992dcf60f408417c3067b4fa2b
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 09:34:27 2022 -0700
Add future note about init function
commit 3789df80e437f9e31560e7eed14e33d80e5ff3a0
Merge: 32c79a56 03742621
Author: Aiden Bai 白宇彤 <aiden.bai05@gmail.com>
Date: Tue May 3 09:33:00 2022 -0700
Merge branch 'hugo' into fix-popover
commit 037426217c5bee94f7c619f62e63d71c1f31b5bb
Merge: 6e6dd4cb e646cdb0
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue May 3 12:29:26 2022 -0400
Merge pull request #122 from aidenybai/fix-active-graph-node
commit e646cdb0be7977f31fa1d619a5b9125875c73475
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 09:27:25 2022 -0700
Use explicit regex for trailing slash trim
commit 8d092a3a4aca9561f3ac852e01518f48c8ef68fe
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 09:22:51 2022 -0700
Remove unnecessary 'url' argument in graph.html
commit 32c79a561fa82dbf6537b96e83ab3da2a848b211
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 09:21:44 2022 -0700
Remove unnecessary 'url' argument in graph.html
commit 3c660dd9b5f9e1133bc8a1228287508504b7c132
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 09:20:01 2022 -0700
Remove unnecessary 'url' param in drawGraph
commit 4cca3c1f2df91ba7bb111346447279087e04069a
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 09:04:15 2022 -0700
Peg router version
commit 9d3bbd607687899d173e9087f2782d7460ebee82
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 08:53:18 2022 -0700
Fix active node on graph
commit 9c71f07355d8e98478e755875e53596f66c58fa9
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 08:48:35 2022 -0700
Enable config for testing
commit 77485b754dbb3d08e437b4157f3eafb5871624b9
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 08:47:42 2022 -0700
Fix popover
commit 6e6dd4cb0b396ae7ec4f273bccd254bc0f9885d5
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue May 3 10:57:20 2022 -0400
fix: trim trailing slash when calculating popover
commit 81fe2d24936ad4b783f41b260b4a4801bacb654b
Merge: 24d08d58 321e19dc
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue May 3 10:44:56 2022 -0400
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit 24d08d580d61363faab495a8a022248a7499dc26
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue May 3 10:43:22 2022 -0400
cfg: make SPA optional
commit 321e19dc415a316c71ba50e11ab0428bda92b0e6
Merge: 12d33619 97607c3c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue May 3 09:48:50 2022 -0400
Merge pull request #121 from benbohmer/patch-1
commit 12d33619a28a2e1a27fca109e3ba966bef65ebab
Merge: fc89ff26 4197ad46
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue May 3 09:47:48 2022 -0400
Merge pull request #120 from straightupjac/fix/github-info
commit 97607c3ca5ac837f7f6bc7a048b72a8271fbd570
Author: benbohmer <103453816+benbohmer@users.noreply.github.com>
Date: Tue May 3 09:10:45 2022 +0200
fix: keep / at end of URL to avoid redirects
Removed strings.TrimRight "/" in line 10 to keep the trailing slash at the end of URLs in regular links. This avoids having every single internal link being a 301 redirect.
commit 4197ad460afd96ab508d421939b92f80bbcdc5ca
Author: straightupjac <jdc.jaclyn@gmail.com>
Date: Tue May 3 01:51:15 2022 -0400
fix github info
commit fc89ff2680977dbaf1dabb91be01ad2b84903d8a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon May 2 13:00:41 2022 -0400
fix: broken semi and graph min-height
commit e9a33c04b5efcf01e9ba5a5bb1ec6619ea510122
Merge: 9ba0a4b3 b0e15e0c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon May 2 12:56:44 2022 -0400
fmt: remove semis for good
commit b0e15e0cbc445e12e3aabfe90ee2fc6bf2c33782
Merge: 66304da0 f1b85fb6
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon May 2 12:19:26 2022 -0400
Merge pull request #118 from aidenybai/add-router
commit 9ba0a4b34fa2e4993b8be021ee79d10d2674eba4
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon May 2 12:14:51 2022 -0400
fmt: remove semis :)
commit f1b85fb6d9612d9c9d5293e27e489576800ed219
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Mon May 2 09:10:40 2022 -0700
Fix clarification comment
commit 66304da027e35abff31f05e5a895ebca52976ccb
Merge: 416dc0b8 87144fca
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon May 2 12:06:57 2022 -0400
Merge pull request #119 from aidenybai/add-prettier
Add prettier config
commit 40d216759cb88e101aac06a7c02070336d2907ce
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Mon May 2 09:05:02 2022 -0700
Expand template
commit 5c602ab16f1f5e46bee5f44cec15860f785039ee
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Mon May 2 09:04:36 2022 -0700
Add clarification comments
commit 87144fca212b25093adbf743014d5c0d5b1d9c0d
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Mon May 2 08:57:25 2022 -0700
Use semi: false for prettier config
commit a9523dd39bf931e491750bb832dd13678e0e0c0d
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Sun May 1 22:08:14 2022 -0700
Add prettier config
commit bcb166c21cf4cf6d923608c12729373cf926eddb
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Sun May 1 22:06:33 2022 -0700
Add router
commit 416dc0b85cabfbb1dced0262b11256fa258f5ee9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Apr 30 13:13:30 2022 -0700
fix: add update for local hugo-obsidian on make update
commit b8a660e208333ea8ef4998c2f815411f12ce7067
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Apr 30 13:10:12 2022 -0700
feat: copyable header anchors (fixes #86)
commit ec86cca97bef277a3b3a84580c4164ce721a92a4
Merge: 87b5a7a2 f7027e7e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Apr 28 15:53:57 2022 -0700
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit 87b5a7a2519c70b6f6e678c6b86a3aefc4dd3218
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Apr 28 15:49:16 2022 -0700
feat: show graph titles on zoom (fixes #92)
commit c8d390dbc5a749af533f1ec05de2d5b6f37fa156
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Apr 28 13:45:29 2022 -0700
fix: always hide popover on mobile (fixes #104)
commit 3c7ece5405436c85282f156cf387b11d08cc2d87
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Apr 28 10:48:31 2022 -0700
fix: append trailing slash, fixes #111
commit f7027e7ecd26abe2a99ea1bb280808a4294bb4f2
Merge: f05ff5e6 0cfd93c5
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Apr 20 09:20:21 2022 -0700
Merge pull request #108 from exu3/patch-1
commit 0cfd93c57cdb31c0f0c48bddb407158ea2e0d7db
Author: Ella <git@ella.cx>
Date: Sun Apr 17 02:11:17 2022 -0700
Fix another typo
commit 3f8c47367830f9686b91c2c32158940de4c65466
Author: Ella <git@ella.cx>
Date: Sun Apr 17 01:33:16 2022 -0700
Fix typo: recomment -> recommend
commit f05ff5e62d5e2720a05cc3cde33f110686ab5268
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Apr 5 23:19:33 2022 -0700
fix: add dropshadow to popover, cleanup animation
commit 12ed9722d80e2ae517ac0face184339f07ae10fd
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Apr 5 22:43:11 2022 -0700
fix: popover selection wrongly including line breaks
commit 887d4d4f5ecb21e436f9a0c88cc690fc245c9747
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Apr 5 21:40:59 2022 -0700
deps: bump hugo -> v0.96.0
commit f9c7cdf928e8068532d2630336a7b08d5085548e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Apr 5 20:44:39 2022 -0700
fix: check for src before attempting to add popover
commit 2d55b6ac2e0580ee8f831e46065fc94db7c9d687
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Apr 5 18:07:40 2022 -0700
fix: missing whitespace chomp in link render hook
commit d5884aedb7dcd4e7711e53b7b462d1ac0bbc242e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Apr 5 14:14:19 2022 -0700
fix: wikilink patch not applying to transformed text like apostrophes
commit 66eaa444a41d1bd87bb1f28f9786412db6e7e274
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Apr 5 14:08:36 2022 -0700
fix: wikilink image relURL for images with spaces
commit 0ddc48a4529a06b48e10e0917c815d99220eebd3
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Apr 5 13:47:24 2022 -0700
fix: wikilink-like text in code fences #95, #97
commit cd19159c53a5f774275edc72bdc9bcb679b77242
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Apr 5 12:47:28 2022 -0700
feat: wikilink img support
commit 7808c66c4dd64ee1a4dc0255533a74f2996ab957
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Apr 5 09:41:13 2022 -0700
fix: align footer links
commit a7abc6ab96002d103e5e349f345d4108550256f5
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Apr 5 00:09:56 2022 -0700
docs: make update command and clarify update steps/potential danger
commit 9509a64354f40981ec0efccb7dda0c1c5da2c190
Merge: 53242b1e 3ce6944c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Apr 5 00:02:48 2022 -0700
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit 53242b1e5742d0730515b6e104ee626dfd5a14f2
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Apr 5 00:02:37 2022 -0700
add update target to Makefile
commit 3ce6944c189097cfde3415434cf33b56b3ceaf41
Merge: e2455050 3583265f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Apr 4 23:56:28 2022 -0700
Merge pull request #93 from meleu/patch-3
commit 3cec4fd950f69762daf7f44c46619cd31b1fc61e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Apr 4 23:30:28 2022 -0700
update screenshot
commit e245505082eedb720873e20331c36952ded67d09
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Apr 4 23:25:24 2022 -0700
feat: hide toc for short notes
commit fc4b9ded76c31ef940e281d9c1bfda850df23d5d
Merge: 3781b677 27c4761f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Apr 4 23:20:43 2022 -0700
Merge pull request #94 from meleu/patch-4
commit 27c4761fe01433b971ba6c2f67af3f003df56aed
Author: meleu <meleu@users.noreply.github.com>
Date: Mon Apr 4 20:15:40 2022 -0300
link to home goes to baseURL
commit 3583265f80afa081bf7a1fe996a9b3fe3c4e32e0
Author: meleu <meleu@users.noreply.github.com>
Date: Mon Apr 4 17:30:23 2022 -0300
docs: warn about possible lost of customization
commit 3781b67707ed9992a5aec843dc5ede7c2cb8a608
Merge: 1613511f 671fe053
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Apr 4 13:08:42 2022 -0700
Merge pull request #91 from meleu/patch-2
commit 671fe05312ded0e96ba16140290a375c51c975ba
Author: meleu <meleu@users.noreply.github.com>
Date: Mon Apr 4 17:07:43 2022 -0300
padding and border-radius matching bottom cards
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
commit 1613511f393fe9460937e7e88cc731d269bb6621
Merge: acab4887 575288ec
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Apr 4 09:45:05 2022 -0700
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit acab488784b52edfb176c5a455580abeb142324f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Apr 4 09:44:58 2022 -0700
re-add obsidian file
commit ff91dcd196d71356b021ec9d381767e7c38b0756
Merge: a287d112 575288ec
Author: meleu <meleu@users.noreply.github.com>
Date: Sun Apr 3 22:14:12 2022 -0300
Merge branch 'jackyzha0:hugo' into patch-2
commit a287d11246cc0c18a9bf4435bddffc9e163e64fd
Author: meleu <meleu.dev@gmail.com>
Date: Sun Apr 3 22:12:55 2022 -0300
add a collapsible ToC
commit 575288ece94d2093bda7467be1a25092bab9c366
Merge: 25b5ac43 1d9c0e4a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Apr 3 17:57:46 2022 -0700
Merge pull request #88 from meleu/patch-2
commit 25b5ac43ddbf9899e9a11b4ad8083a4c66bcf637
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Apr 3 17:43:37 2022 -0700
fix: favicon not showing on non-root domain #89
commit 1d9c0e4a44d4551b7d57678928600aed1428a243
Author: meleu <meleu.dev@gmail.com>
Date: Sun Apr 3 16:31:29 2022 -0300
use "enableToc: false"
commit e62d512d95bc52f3113cae5e3763665364fa7c72
Author: meleu <meleu.dev@gmail.com>
Date: Sun Apr 3 16:29:10 2022 -0300
disable ToC if frontmatter has "enableToc: false"
commit 8f15c5f8c1a0650d3c757f8cdf8ea12e4128ee97
Author: meleu <meleu@users.noreply.github.com>
Date: Sun Apr 3 16:22:32 2022 -0300
disable ToC if enableToc: false
commit efeaf9b49ccbc2e595277f6c558057e863e0ac8c
Merge: 91c4e3fb 22f11711
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Apr 3 11:44:39 2022 -0700
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit 91c4e3fb3a5d9e86e5fb513bb65da89d4b061b08
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Apr 3 11:42:42 2022 -0700
fix: multiline code block #87
commit 22f11711b2500b739e56ddb7d39660c4e8856be6
Merge: 16b177ce 5c3ef884
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Apr 3 08:17:13 2022 -0700
Merge pull request #85 from meleu/patch-1
Ah my git was being really weird with cases :')) thank you
commit 5c3ef884c78b190e5fc22e122d55af097d8bef3e
Author: meleu <meleu@users.noreply.github.com>
Date: Sun Apr 3 11:19:21 2022 -0300
duplicated file
commit 16b177ce6603db9bc242104c0ef5692e2832d3f7
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Apr 2 21:04:20 2022 -0700
README update
commit 14c6181d240e69f48f6a2548136613b2b0739720
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Apr 2 20:37:42 2022 -0700
bump hugo version v0.82 -> v0.92.2
commit e6e04c03c473175961e1d5f9c815c3671f237c8e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Apr 2 20:34:55 2022 -0700
fix latex misrendering
commit 146e975932a80634500720f88843041fdf62bfec
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Apr 2 20:21:16 2022 -0700
bump hugo obsidian, fix backlinks for subpathed quartz, update homepage
commit c117e38899a7e122fb4dee87f5d091e654e0939f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Apr 2 20:06:31 2022 -0700
feat: wikilinks implementation
commit 4fd983277e36e323675e2d77048fb3daaa016dc6
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Apr 2 17:38:39 2022 -0700
fix: cjk support + demo page
commit cc86136bcb4cc61219a8ee7573e792e6a6043dcd
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Apr 2 17:00:14 2022 -0700
feat: basic latex support
commit 8e083d4a93383214d5d020c925dc5d7b65cc04db
Merge: c51573ef 03b574b1
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Apr 2 14:53:05 2022 -0700
Merge pull request #83 from meleu/patch-2
commit 03b574b1606c836eda158c8fdfe0e251a1364fe8
Author: meleu <meleu.dev@gmail.com>
Date: Sat Apr 2 18:51:45 2022 -0300
cleanup
commit a469653f7575ae604ec3e979768f4ddfecf5e2b5
Author: meleu <meleu.dev@gmail.com>
Date: Sat Apr 2 18:50:58 2022 -0300
separate contact links semantically
commit c51573efa98de6b5b5e79fb60b49f31daca70527
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Apr 2 13:34:26 2022 -0700
feat: grey out broken links
commit 902d0f2a0fe84d383eb1b011aee636ccb9687f6f
Merge: 1ddd15af 9c5ecccf
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Apr 2 12:59:47 2022 -0700
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit 1ddd15afc6e69202080ffb91e8d82deb653a80b7
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Apr 2 12:59:38 2022 -0700
fix: non-unicode character in popover and search #67, #68
commit 16f8cd7100c7733b8ee29296fb0369ae24f899cd
Author: meleu <meleu@users.noreply.github.com>
Date: Sat Apr 2 13:37:12 2022 -0300
separate links with ​
commit 9c5ecccf25c35cd94bc6c7468d45e4c3e6a932bc
Merge: 3674df48 e3cd531c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Apr 1 14:17:35 2022 -0700
Merge pull request #82 from meleu/patch-1
commit e3cd531c537d4d82400275c1b018382a19041b4b
Author: meleu <meleu@users.noreply.github.com>
Date: Fri Apr 1 18:13:49 2022 -0300
fix custom.scss path
commit 3674df48b8eed55728780d05bc9b577e8aab0a3b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Apr 1 10:13:01 2022 -0700
fix pagination styling
commit 9e8c5587e433b3d1440803d7f995a2a8b55ba45e
Merge: 6605b13b 6edc9798
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Mar 31 23:16:00 2022 -0700
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit 6605b13b86c5e15bcaa2821937f97a59c4d2bbae
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Mar 31 23:15:54 2022 -0700
more troubleshooting, backlinks reference private page fix
commit 6edc979896f7548a8f9efe1c167fe9cd9d9e4c1c
Merge: 54a68e6e fc439224
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Mar 21 09:15:35 2022 -0700
Merge pull request #71 from siyangsun/patch-1
commit fc439224456010aad4802c9003c0dcebf1e38157
Author: Siyang <siyangsun2007@gmail.com>
Date: Sun Mar 20 22:37:05 2022 -0700
add to showcase and fix link to file
commit 54a68e6e5c020fa1e4eacf7942eb37974f332887
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Mar 18 10:53:39 2022 -0700
patch image
commit a6ab2f92ef8cb62d0399b1121cfabaa137906d51
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Mar 16 17:54:24 2022 -0700
add update
commit fda481fbb91fee6fc9e99c56c2cf80ff8835a946
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Mar 15 01:12:08 2022 -0700
fix: bump hugo-obsidian version to account for contentIndex paths on windows
commit 94e987dab5a50196bc2273addc6f908178abd0fb
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Mar 15 00:37:56 2022 -0700
feat: better titles for empty pages #61
commit e981c76ed4b2d220c0394bdcbf5a22a282561fd3
Merge: 651bfc5c f70128a3
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Mar 9 10:11:36 2022 -0800
Merge pull request #65 from claudio4/fix-text
commit f70128a3deacc26ceccb7d397ce6cd73acceb7f9
Author: Claudio Yanes <me@claudio4.com>
Date: Wed Mar 9 17:58:01 2022 +0000
Prevent overflow of long links and words
When a word (or any string withtout breakpoints (spaces, dashes....), making links the most common place where this becamoes an issue) is wider than its container, the text will simply overflow any container, including the viewport. This commit fixes this behaviour by making the word-drap strategy of the browser more aggresive.
commit 651bfc5cd284a259f429b50839c619dd1b94498a
Merge: 90727099 60794201
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Mar 7 10:45:07 2022 -0800
Merge pull request #62 from claudio4/hugo
commit 6079420178788ca74e574e35ad0212d1e6f41b6e
Merge: 978d5ca1 b96c60ed
Author: Claudio Yanes <me@claudio4.com>
Date: Mon Mar 7 18:28:14 2022 +0000
Merge branch 'jackyzha0-hugo' into hugo
commit b96c60edfc3429a2c478b2d1eb809fb9f20b4219
Merge: 978d5ca1 90727099
Author: Claudio Yanes <me@claudio4.com>
Date: Mon Mar 7 18:27:45 2022 +0000
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into jackyzha0-hugo
commit 978d5ca1aee23d6663e508aa24b389b6c9003d04
Author: Claudio Yanes <me@claudio4.com>
Date: Mon Mar 7 18:25:02 2022 +0000
Format JS
commit 907270992d7718f26d0a401ab700c6a0a414b440
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Mar 4 23:55:07 2022 -0800
fix: hide popover on mobile to prevent overflow
commit 6f9283e95b9f0b85c0d9dc7374ed75eff2a9149d
Author: Claudio Yanes <me@claudio4.com>
Date: Fri Mar 4 22:27:21 2022 +0000
Update makefile and docs
The artifacts produced by hugo-obsidian are now expected to be placed in
the assets/indices directory. This commit reflects this change in the
Makefile and in the docs.
commit 0fad5570d38b6a15e9a0cf2c1b1f24e6c2897551
Author: Claudio Yanes <me@claudio4.com>
Date: Fri Mar 4 04:14:42 2022 +0000
Add .gitkeep to assets/indices
commit dc9b421e21d02e9d247d1640cb518c416a5dcbab
Author: Claudio Yanes <me@claudio4.com>
Date: Fri Mar 4 04:12:43 2022 +0000
Remove unnecessary scrollbars
The margin property can escape the parent node and move it alongside
its child. This happens with singlePage div and the body, resulting in
scrollbars appearing as the body has the size of the viewport but
does not align with it. This phenomenon can be always observed
in the vertical axis and it can also be observed in the horizontal axis
when the viewport it’s not wide enough (mostly in mobile).
Using paddings prevents this “extra space” from scraping and displacing
the body.
Also, the value 100vw does not take into account the space taken by the
vertical scrollbar, thus making the body wider than the actual viewport,
producing a horizontal scrollbar.
commit 8779e72c77c2e454d444b86d3d5ebda9bfab46d7
Author: Claudio Yanes <me@claudio4.com>
Date: Fri Mar 4 03:34:45 2022 +0000
Add attribute property to scripts from jsdelivr
Adding the integrity attribute protects the website (by refusing to load
the script) against malicious modifications of the script
in the case of jsdelivr gets hacked
commit 7f6523337c96e631e80b18c888b2f237ea8a4482
Author: Claudio Yanes <me@claudio4.com>
Date: Fri Mar 4 03:24:32 2022 +0000
Move popover to the end of the page
The popover script doesn’t ever start in until the DOM has finished
Loading, so wait for the script to be downloaded and parsed before
Showing the content to the user makes no sense.
commit 7e0f2e44497adeade4aa5a99da897be29cb49016
Author: Claudio Yanes <me@claudio4.com>
Date: Fri Mar 4 02:25:30 2022 +0000
Fix fetchData
The fetchData function suffer from a race condition. If the function is
called before the promise finishes, it will result in another pair of
HTTP request. This does not only make the function useless but
Actually, it makes it harmful as the data might be redownloaded twice.
Now fetchData is not a function but rather the promise by itself.
Previous callers are expected to await the variable instead, this
should be not concern as awaiting a promise multiple time in
JavaScript is completely safe.
commit 1313bd9779c638f09b8901f8432d6bc39910bce3
Author: Claudio Yanes <me@claudio4.com>
Date: Fri Mar 4 02:07:51 2022 +0000
Move css and js to appropriate files
Having the CSS and JS in the html template produces pages larger
than necessary, as each page need to contain all the js/css.
Separating them in appropriate files allow the browser to just download
them once and use them for all the pages. This is even more effective
with an aggressive cache policy for the js and css, something that can
be done without fear thanks to the implemented cache-busting.
Also, having then in separate files allows us to use Hugo pipelines
for minimizing the code.
commit 5234fae080f1d3dca4f105438e3e0151f12ca61c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Feb 28 08:24:29 2022 -0800
fix backlinks not using baseurl
commit 0ee0855e1c1843a86a7bcd58aee520784c165dba
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Feb 28 07:30:59 2022 -0800
bump hugo-obsidian to support root
commit e06e341468202eebd928dee6a222ea118ef06331
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Feb 28 07:14:55 2022 -0800
fix: explicitly set root as current directory to fix ignore files
commit 73e526a7d50315b9177c2c11d12ebcde71b05fbd
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Feb 23 12:28:25 2022 -0500
add screenshot to readme
commit cdc4f1a8407449be7a514414795f27ff3b70bf37
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Feb 22 13:36:08 2022 -0500
fix: relink search button (move outside content load listener)
commit 714b4fcfa30ac1155747b9af90bc0e9519cb4bba
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Feb 20 21:40:10 2022 -0500
fix links being broken for pages with spaces
commit 9c04ca026676445849081d32efb8e840465994d5
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Feb 17 10:49:41 2022 -0500
rtl docs
commit 388a2bf78bb08c2b37e918c3a2e0acc72803e187
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Feb 17 10:44:39 2022 -0500
docs updates
commit f192f9a23df34d30e223e20ab5e8cb8210a7dfe9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Feb 15 23:03:02 2022 -0500
fix #54: root all image urls
commit 3b3e6ec3b2a56ee4d03b6f4c84af886821bfbe84
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Feb 15 22:54:20 2022 -0500
fix relative pathing for dynamic fetch
commit 8e85e274f6e5913694b67319f1beb7a2ec5b5bed
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Feb 15 19:42:45 2022 -0500
change output to static instead of data
commit fcd5d2807d2bab68c6776e031e85d65fe88a6f7a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Feb 15 19:39:14 2022 -0500
feat: dynamically fetch indices
commit 4587b133600ac59e38d1fccc7c7dba9f2c8f4af5
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Feb 15 17:12:08 2022 -0500
feat: add rtl support as part of #47
commit fb9ea8dcb85e6d2ac6c2a8cf5057f2fb00871b26
Merge: c520db48 10f9843b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Feb 15 16:52:49 2022 -0500
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit c520db488213f6d7844a382fe4f621a85decd60e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Feb 15 16:52:32 2022 -0500
fix: #50, change css load order
commit 10f9843bb6476134532d2002b2d29841755767e1
Merge: 0dc51ff3 31297b7e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Feb 15 14:51:29 2022 -0500
Merge pull request #51 from brandonkboswell/patch-1
commit 0dc51ff39c9c867dd85c37a01c366cd5f278f032
Merge: c35086c5 fa3bc3de
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Feb 15 14:50:34 2022 -0500
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit c35086c5104aedcaae1aba00892b0b4359a8e3cf
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Feb 15 14:50:25 2022 -0500
visibility fix
commit 31297b7e5adfda0def68ac848c4e81789c7278b2
Author: Brandon Boswell <brandonkboswell@gmail.com>
Date: Sat Feb 12 22:35:03 2022 -0500
Added to the Showcase
commit fa3bc3de9273d2cb437605d1b229d9a8d79331b5
Merge: a271fb9d 41c443db
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Feb 11 17:24:54 2022 -0500
Merge pull request #48 from earnestma/earne/configurable-page-toc
commit 41c443dbf079e65ed69f57d3b9a5ce58dc403e6d
Author: earnest ma <me@earne.link>
Date: Fri Feb 11 17:05:38 2022 -0500
Add disableToc parameter to not show TOC on a page
commit a271fb9d74f56b9e44817c7f61300db8d7e713cd
Merge: 9645f003 49cdca5d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jan 31 12:28:40 2022 -0800
Merge pull request #46 from adube/patch-1
commit 49cdca5dfc32e56788f30a9a7e8b5a6225013edb
Author: Alexandre Dubé <adube@mapgears.com>
Date: Mon Jan 31 15:18:26 2022 -0500
Specify Hugo requires extended Sass/SCSS version
Hugo needs to be installed with its "extended" Sass/SCSS version, otherwise this template does not work.
commit 9645f0031756faf815b1df5501d736795cbccc62
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jan 27 09:38:28 2022 -0800
link fixing
commit 57ebf4c21c8b4f7c2ef5126ded39a9facaa848ee
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jan 10 13:08:50 2022 -0800
underscore fix, fix relative path being weird for graph
commit 54e3e071d1c66dec3e04e8246c58fc2067877044
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jan 10 09:00:45 2022 -0800
fix popover regex
commit d46e22383133b944201bf5cdf85d44c48c891d07
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jan 10 08:51:00 2022 -0800
revert baseurl fix
commit 6f9a29c174f8657a90d7dda8d39e933c220fa717
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jan 10 08:49:29 2022 -0800
various path fixes
commit 532bc610254db096807453bf223acaa91634fd81
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jan 5 19:42:13 2022 -0500
set relativeUrls to true
commit 99aea4826068564f81e7f1b402e00e3e101a1476
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jan 4 11:39:22 2022 -0500
docs update
commit 4a3766db56bd08990b59f73e805008e03817556c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jan 3 16:37:24 2022 -0500
update featurelist
commit 4e639979f8175b0a639ba2e25bbd8fa550d728bf
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jan 3 15:36:58 2022 -0500
fix copy selection
commit e49a1ac9db92c6c967be404b5a3b9e3194a4ed99
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jan 3 13:22:04 2022 -0500
made link preview optional
commit 4a3c4fdef550547aa80947ebaff1bda44b943d4d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jan 3 13:18:31 2022 -0500
popover implementation
commit 2b432d7f0b35987ca6886e7041dce861b7e21abb
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jan 2 20:02:47 2022 -0500
fix flex gap
commit 7507fd29912015a72f990b23023ae2946c6cd51b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jan 2 19:49:41 2022 -0500
fix search styling
commit ca886e40752a8a30762708ea87d7228f737c0cd2
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Dec 28 14:28:08 2021 -0500
fix render link for apostrophe
commit 3722e600ee3bd75130e4e228ea45c2074649329c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Dec 27 20:52:30 2021 -0500
bump hugo-obsidian
commit efeaf0f4e47c3484ad84b7b9f755735ae0d810cd
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Dec 27 20:16:21 2021 -0500
add pagination to section, fix graph linking
commit 1a8cdaad24789d75d9453351aff19b434e1ea5c9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Dec 27 19:43:01 2021 -0500
remove console.log
commit e4caa0d1d7fb3bdca6dee07fee299a3acdf40043
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Dec 27 19:35:42 2021 -0500
add taxonomy and term lists
commit a45856d7884fedd3a3bd6b80489c206c75427112
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Dec 27 17:53:33 2021 -0500
fix last modified not working for capitalized pages
commit dbe9b338ccc5df23882ebfa26c9020fb863a4124
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Dec 27 17:44:39 2021 -0500
fix capitalization
commit 000fcdbf991dcc7f81b4cf1b6d7116590070ffd0
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Dec 27 17:43:27 2021 -0500
fix casing
commit 612c44d719f1b47b3c7b3fc5b6ffb48ccec33ded
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Dec 27 17:34:53 2021 -0500
modify obsidian
commit e1911a58fff3b96754b3b49837ac2d4dd4fcf5aa
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Dec 27 17:28:53 2021 -0500
enable last modified info
commit b4e26971165d49604014a1ed38aaa18b2c20fc23
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Dec 27 15:59:19 2021 -0500
content section
commit 094ab9d064b8e3d24f0cb656aaf4e0ea08365ac5
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Dec 27 13:15:10 2021 -0500
dedupe backlinks
commit 39592347cc742838a1d078031b897fe26a94adaf
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Dec 27 13:06:58 2021 -0500
add graph depth config
commit 165d33810d63f98953f4dd8c40f6d7741f967664
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Dec 26 21:13:21 2021 -0500
base tags
commit 6fbfa7170b17e062abd4c26e4b55a3934fb4ff1c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Dec 26 00:09:15 2021 -0500
various font and colour fixes
commit 43837f9e2ec4033722cb6957bd67c688afb3ae2c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Dec 25 23:45:30 2021 -0500
add makefile, fix link padding, test capitalization
commit 2ba01c831178facd35c62adcb22f3cc39ead6975
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Dec 24 15:51:37 2021 -0500
fix untitled #36
commit 114b7ca913b4250d594b711d7bfbe98ab23b562d
Merge: 5bd5642c 091be704
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Dec 24 09:48:41 2021 -0500
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit 5bd5642c99d6d144c9932533dfdc3484bdb72b71
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Dec 24 09:48:22 2021 -0500
add toLowerCase to id
commit 48d01810c4629341d9481632fc7f769dcffe0bd7
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Dec 23 14:40:59 2021 -0800
fix config setting, fix font size for h1 in article
commit 3a98c8b554c4b0e141f46a777c0fefe5ad4d4178
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Dec 23 14:32:47 2021 -0800
actually display site title
commit 69c86e407fa14ea94c75de82ca55ec9efaf6fb37
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Dec 23 14:21:39 2021 -0800
update subdomain docs
commit 56d2382c282431115b2964d440b790ce11f19e72
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Dec 23 14:05:27 2021 -0800
fix relative link styling, change graph and backlinks to refer to name rather than path
commit 091be7040b2f3da212a68a491bb8872543fddfea
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Dec 23 13:37:29 2021 -0800
Create CODE_OF_CONDUCT.md
commit 09b5522a488177129bfc7b35b700d7e76c64d5f8
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Dec 23 13:22:22 2021 -0800
Update issue templates
commit b9d7adafccc7a77f735afe11c80e0e8db534a31d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Dec 23 13:18:03 2021 -0800
Create FUNDING.yml
commit afeb18212d62663b7bbec5a08c05851bd584acd3
Merge: c64322ad bc909559
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Dec 2 20:06:18 2021 -0800
Merge pull request #28 from juaoose/overflow
commit bc90955959d818797e84c944247736e871faee3f
Author: Juaoose <jjrg1994@gmail.com>
Date: Thu Dec 2 22:58:34 2021 -0500
remove horizontal scrollbar
commit c64322ad3f1b72f83e675a53060b005d57704901
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 20 22:55:53 2021 -0800
remove bad wikilink
commit 48eb9ebc5fdba0845c6295e8abb6f574ec75171d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 20 22:53:26 2021 -0800
better search, fix spacing support, bump hugo-obsidian
commit 82ba843e42198d2ef2829eb6e668377bc9ebe4be
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Nov 15 15:54:18 2021 -0800
search styling
commit 8ca31df3f22e2678cf201105c1cb2925aca3c7d3
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Oct 31 09:59:38 2021 -0700
search patch
commit df23b99951fd7cb3bdf839639bce58b3e98c2d26
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Oct 30 23:27:33 2021 -0700
more search improvements
commit 6005a2e0a0667e9b78bfd419d3e8590a7fcc25f8
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Oct 27 20:10:04 2021 -0700
css fixes
commit de940d6a4b8a51f308b4544d21941bdb9a99aa66
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Oct 26 17:06:00 2021 -0700
update graph redir
commit 806d11f874119a1207332850e3263d87334a573d
Merge: 03bb3a3b 1fc2da4f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Oct 26 17:03:07 2021 -0700
Merge pull request #23 from bur3ku/hugo
commit 1fc2da4fe293f47ec47a7b5d33fa94fa3a06bb3b
Merge: 9292de63 24776624
Author: Blake Allen <blakesnake100@gmail.com>
Date: Tue Oct 26 16:58:37 2021 -0700
Merge branch 'hugo' of https://github.com/bur3ku/quartz into hugo
commit 9292de63336da42651c646253ef6000621d5328b
Author: Blake Allen <blakesnake100@gmail.com>
Date: Tue Oct 26 16:58:08 2021 -0700
remove unnecessary regex, use encodeuri for label instead of replace
commit 24776624047bea380c51dbb503cdf335d37b83b0
Merge: a14d06aa 03bb3a3b
Author: Blake Allen <blake.edward.allen@gmail.com>
Date: Tue Oct 26 12:46:03 2021 -0700
Merge branch 'hugo' into hugo
commit a14d06aa3d37396531dbfe09bb3b18b7eb9b96ad
Author: Blake Allen <blakesnake100@gmail.com>
Date: Tue Oct 26 12:44:25 2021 -0700
fix conflict fix
commit e0535dbe3219e297945284ca2af9862bd457a893
Author: Blake Allen <blakesnake100@gmail.com>
Date: Tue Oct 26 12:43:55 2021 -0700
fix conflict
commit 8eca1e60f78f40d6b598aa397bb315adfc53d9ad
Author: Blake Allen <blakesnake100@gmail.com>
Date: Tue Oct 26 12:36:20 2021 -0700
change %20 in node labels to whitespace, change %20 in node hrefs to hyphen
commit 03bb3a3bae297b51ffabb0d428f2c555771033f9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Oct 25 15:06:29 2021 -0700
normalize search styling
commit f7b89db8ee85e54a438db2e2cac3c55e805281c9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Oct 25 15:00:55 2021 -0700
search fix
commit 1835b97a7a2faf23809bb39d0bec7a2b77b3b81c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Oct 24 23:45:55 2021 -0700
better homepage
commit f56642f13cb5bffb8c05b239c6a7b90e1b6453e5
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Oct 24 23:32:55 2021 -0700
forgot string lol
commit 22a9c0ddfcb38a15d4340f532faca7733349702b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Oct 24 23:31:09 2021 -0700
docs updates, add search to main page, fix redir bug
commit c1c061fbea8f6cdc6aec4992d21d2df73dc6ba4e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Oct 24 23:17:20 2021 -0700
bump docs
commit 6fd19069deb06988b3d34482a151a79a53b589d0
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Oct 24 23:17:13 2021 -0700
search improvements
commit 299533a4f47d2379ddbc209bcd6923a70a81e65d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Oct 24 23:17:00 2021 -0700
bump hugo-obsidian version
commit e1366ecb6173b7c5e799c46e3ed8acbb50aaf447
Author: Blake Allen <blakesnake100@gmail.com>
Date: Fri Oct 22 18:56:26 2021 -0700
fix accidental code
commit 776ef084c9c98163f96cce62621cb8b0cf59bbdd
Author: Blake Allen <blakesnake100@gmail.com>
Date: Fri Oct 22 18:32:57 2021 -0700
fix last commit
commit fc00ad5bffcd5a1b89a4c1cb19b12d77238cc4c2
Author: Blake Allen <blakesnake100@gmail.com>
Date: Fri Oct 22 14:04:09 2021 -0700
fix for notes with spaces not linking properly
commit 228f96e74dd0caae6514a230418812103527d439
Merge: ae2f7efd 071984a1
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 31 18:32:14 2021 -0400
Merge pull request #14 from juaoose/hugo
fix product typo in external hosting section
commit 071984a12d1c7887d0ef41b206e01bc5afefb95d
Author: Juan José Rodríguez <juaoose@users.noreply.github.com>
Date: Tue Aug 31 16:40:31 2021 -0500
fix product typo in external hosting section
commit ae2f7efde0eb997ab2f7be1cf1513af7f99df599
Author: jackyzha0 <j.zhao2k19@gmail.com>
Date: Sat Aug 28 20:58:14 2021 -0400
update showcase
commit cb38667c1df7d752a1a9ef45505a7e106ff03ef8
Merge: 1c851271 27c33f83
Author: jackyzha0 <j.zhao2k19@gmail.com>
Date: Fri Aug 27 14:08:18 2021 -0400
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit 27c33f8334f6ac4a67c2a12b8eed219e6d8aeb2b
Merge: 8850976d f9920f6d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Aug 13 17:45:32 2021 -0400
Merge pull request #9 from brechtcs/template
Execute darkmode script before first render
commit f9920f6d736754372075c8f1014ab9440e333317
Author: Brecht Savelkoul <brecht.savelkoul@alumni.lse.ac.uk>
Date: Fri Aug 13 22:46:00 2021 +0200
Execute darkmode script before first render
commit 8850976d8dbb9a67d0224ed1ea30bd90fdbf4faa
Merge: 9b427faa bb6a1e8c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 12 23:49:05 2021 -0400
Merge pull request #8 from SlRvb/patch-1
Add SlRvb Site to Showcase
commit bb6a1e8c349075f40ac96be25509951ad5dce715
Author: SlRvb <54087190+SlRvb@users.noreply.github.com>
Date: Thu Aug 12 20:46:23 2021 -0700
Add SlRvb Site to Showcase
2023-11-24 18:08:37 +00:00
|
|
|
padding: 0.4rem 0.7rem;
|
2023-08-07 02:52:30 +00:00
|
|
|
border-bottom: 2px solid var(--gray);
|
|
|
|
}
|
|
|
|
|
|
|
|
td {
|
Squashed commit of the following:
commit 76f2664277e07a7d1b011fac236840c6e8e69fdd
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Nov 13 22:57:05 2023 -0800
versioning: bump to v4.1.1
commit 74777118a7fd19e4a296706c2a4b5fdca546c4fa
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Nov 13 22:51:40 2023 -0800
feat: header and full-page transcludes (closes #557)
commit 8223465bda1e7b6085a9752ead806be85ff58b57
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Nov 12 14:33:19 2023 -0800
fix: make :has img selector direct
commit cf6ab9e9333b5f76cb9e06f6687f2b4f8fbe91bd
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Nov 12 14:27:53 2023 -0800
feat: option to specify npx quartz sync message (closes #583)
commit 74c63e448e28d9766f7ec631aac2645384b0975f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 11 21:13:10 2023 -0800
fix(style): dont internal-link highlight when image (closes #581)
commit 43d638a6de5a8a11c1a719c596b07ea957c7329a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 11 21:06:37 2023 -0800
perf: compute mapping of folder name to file data for faster breadcrumbs
commit d1551872ffeb08c34f59dc2042b43562c499b620
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 11 20:46:57 2023 -0800
fix: check if popover exists after fetching and before inserting
commit 275bea3051a6f2a7da65fef6dccc7cc52a0a15e3
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 11 20:46:29 2023 -0800
style + cfg: resolve breadcrumb titles by default and change arrow character
commit bc02791734aa969ff388c5f7068e402bd0e3862a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 11 20:27:51 2023 -0800
fix: .date.getTime() based sort
commit bf603c49c2edaa5fcbe42479421a336dcacf92b9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 11 12:08:54 2023 -0800
fix: sort rss feed by date
commit f67356c3d2d609a8a6b674ac650fc41d6dfb4cc7
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 11 12:02:34 2023 -0800
lint: format
commit 5d666d1860be721c573ebd24cb82d210a8567bbf
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 11 11:59:05 2023 -0800
fix: normalize relative urls (closes #569)
commit 22b7cf135e8b031550553947c48aa0dc00b3abbd
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 11 11:41:44 2023 -0800
types: cast in jsx.tsx to avoid @ts-ignore
commit 50a87d0d8673dbce6ebafef83f71f197df9bc196
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 11 11:39:56 2023 -0800
style: scrollable tables
commit 134b6ed582d6ce9d8fb8f1e58d2bae89c07c2d5d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 11 10:11:31 2023 -0800
fix: anchors links shouldnt cause reload (closes #574)
commit 99e8f5944fdd83110fbac4c9edc37cdcaf2c25f7
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 11 09:56:30 2023 -0800
fix: trailing slash aliases (closes #577)
commit e9f4e28a2d3e0b529586ddb5a50680a6e66412f3
Author: Yes365 <ninfovores365@gmail.com>
Date: Fri Nov 10 11:44:16 2023 +0800
fix: adapt vercel cleanurls (#487)
Co-authored-by: Harrison <Harrison@fanruan.com>
commit 2a6b9a9ea01e8e6a80fe51d01dc865595b67a612
Author: Niklas Schröder <33390735+lnschroeder@users.noreply.github.com>
Date: Tue Nov 7 18:16:48 2023 +0100
docs: fix property name for ToC toggle (#573)
commit e806c30fa1a7ab941969da01c05ac4adeeeeeb9e
Author: Mau Camargo <52770775+camargomau@users.noreply.github.com>
Date: Sun Nov 5 13:30:10 2023 -0600
docs: Add Mau Camargo's Notkesto to showcase (#570)
commit aac7b7e97d32580f6a9bd974b8a9068e5218ab9c
Author: Anson Yu <ansonyu24@gmail.com>
Date: Sat Nov 4 17:20:16 2023 -0400
docs: Update making plugins.md (#567)
:)
commit 101e9946bddd053a42d269e19e35feae46fe4305
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 4 12:11:42 2023 -0700
feat: add collapseByDefault option to TableOfContents (closes #566)
commit a62a97c7abcabea4509760e5af957eed66fa0755
Author: Emil Rofors <emirof@gmail.com>
Date: Fri Nov 3 16:40:43 2023 -0700
docs: add GitLab pages CI (#549)
* add .gitlab-ci.yml
* move GitLab CI to hosting.md
* remove extra folder name
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* remove test from gitlab instructions
* run prettier
---------
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
commit 923b72fb67cf3ee9842df630feaed72644470074
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Nov 1 10:03:45 2023 -0700
feat: auto-tag releases (closes #560)
commit 05a1c34c6f6973eebcbcc50f50b64c2a0d62e8fa
Author: Florence <59734957+Pydes-boop@users.noreply.github.com>
Date: Wed Nov 1 17:57:32 2023 +0100
docs: remove dead link (#561)
commit 06ccb89cd7d5a3cade1eb5c2155b9b06e5395b0b
Author: Blue Rose <134471273+bluerosegarden@users.noreply.github.com>
Date: Tue Oct 31 15:53:49 2023 -0500
docs: clarifications about globs (#559)
* Add note about fast-glob
* Add warning about non-markdown files
Also added a glob pattern to filter out all non-markdown files outside of a specified folder.
* run npm format
---------
Co-authored-by: wych <wychwitchcraft@gmail.com>
commit 01fc8e46409ee0fb7311f212726113d35aced82d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Oct 25 09:40:43 2023 -0700
fix: disable semi-broken flexsearch cache
commit 7c01e8dde06abb1a80118b5eddce3e238830ede0
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Oct 22 09:54:12 2023 -0700
feat: openLinksInNewTab option for link transformer
commit b7ae7a99dbd40ffc852642202031b29e98304c1f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Oct 21 21:12:11 2023 -0700
fix: styling for nested popover tag in page list
commit 60b3bc34cb07b5bec87cbd667ea9f804ff14cf3c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Oct 21 21:05:46 2023 -0700
fix: catch html to jsx errors (closes #547)
commit dc834015d02adcc7edb119fb5224a2a86c614142
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Oct 21 20:27:49 2023 -0700
fix(style): tag float orientation for long tags on page listing
commit 1e357ef5ac85ab55ad19f832513f5ca7a7e54a52
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Oct 21 20:09:49 2023 -0700
fix(style): prioritize base and custom scss over component css
commit 54e722a55d58f4bab86184ffc970159628fa6967
Author: freenandes <42041153+freenandes@users.noreply.github.com>
Date: Wed Oct 18 03:43:41 2023 +0100
docs: Update showcase.md (#540)
changed URL
commit 86d16b12a224d125ba469f91e885eedf97a9dfe8
Author: Thomas <65691606+NotTacoz@users.noreply.github.com>
Date: Wed Oct 18 10:43:20 2023 +0800
docs(explorer): Fixed small typo with extra } in explorer.md (#541)
commit ed971800c0a683f7096922fee0a6901250e239ae
Author: freenandes <42041153+freenandes@users.noreply.github.com>
Date: Tue Oct 17 16:58:28 2023 +0100
Update showcase.md (#539)
commit af9ddadc4de513f2bbaf75f70079970215ed6406
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Oct 14 13:45:56 2023 -0700
fix(css): import base from custom instead of the other way around (#536)
commit da0a062c05db18d8c1521661ac0ab735abff3c3f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Oct 8 09:59:18 2023 -0700
feat: docker support for v4 (closes #530)
commit f66d2c23aca2944abcb1a6e3d83977a9b2edf37a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Oct 8 09:15:06 2023 -0700
fix: ctrl+click with spa enabled
commit 3268d45a20fbead24f3a111064364574408aa926
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Oct 5 13:48:52 2023 -0700
css: make article relative
commit afa163f2fe9c52d4b3bf1a2e4d48887916b67c24
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Oct 5 13:30:06 2023 -0700
style: styling for codeblocks without langs (#527)
commit cec4877adb7e89f4d4e0a442e82655e0d35dbe16
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Thu Oct 5 18:19:56 2023 +0200
fix(breadcrumbs): problem with folder whitespace (#522)
* fix(breadcrumbs): problem with folder whitespace
use slugs for folder hrefs so folder paths get resolved properly
* feat: only use `slug` for constructing crumbs
* fix: remove capitalization
commit cf0c090e3c5af86097e2460b00adc52ef8555e9d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Oct 4 09:23:56 2023 -0700
specify minimum npm version
commit c8f5dbbad3a85749d8a74f5e3e3b222fe547d5d6
Author: Luca Salvarani <lucasalvarani99@gmail.com>
Date: Mon Oct 2 02:20:55 2023 +0200
fix: Fix `Backlinks` not applying the display class (#519)
* fix: Fix `Backlinks` not applying the display class
Fix #518
* fix: Apply `displayClass` to all layout components
* refactor: Use same style
* fix: Remove `undefined` class using coalescing operator
commit ab5efac75fb0f20afe74bef33a2cf7e9ba0ba40f
Author: bfahrenfort <59982409+bfahrenfort@users.noreply.github.com>
Date: Sun Oct 1 11:47:22 2023 -0500
Fix: RSS title escaping (#521)
* Fix title escaping
* npm run format
commit 2f99339dcf93ef50b766263297785a32d9c35250
Author: Hrishikesh Barman <geekodour@users.noreply.github.com>
Date: Sat Sep 30 00:05:26 2023 +0530
feat: add transformations for latex in oxhugofm (#510)
ox-hugo currently supports the following syntax for latex equations:
- https://orgmode.org/manual/LaTeX-fragments.html
- https://ox-hugo.scripter.co/doc/equations
This syntax is supported by mathjax as is mentioned in the ox-hugo documentation.
But quartz uses remark-math which has some issues with the \( \) syntax.
See https://github.com/remarkjs/remark-math/issues/39
This change adds few more transformations to the OxHugoFlavouredMarkdown
plugin, which makes a best effort conversion of this syntax into what
the Quartz Latex transformer plugin supports.
With these changes, the generated files show latex formatting with
default quartz configuration.
Sidenote on `\_` escape by ox-hugo:
ox-hugo escapes, _ using \_, we match against it after we transform
equations into what quartz supports($$ and $).
This could be achieved using lookaround like regex as follows
```js
(?<=(\$|\$\$)[\s\S]*) -> Positive lookbehind for $ or $$
\\_ -> Matches \_
(?=[\s\S]*(?:\1)) Positive lookahead for $ or $$ if matched
const escapedUnderscoreRegex = new RegExp(/(?<=(\$|\$\$)[\s\S]*)\\_(?=[\s\S]*(?:\1))/, "g")
````
But since lookahead/behind can slow things down on large files, we just
look up all equations with $ and $$ delimiters and then try replacing \_
commit 5232d09af520e12bc421cf19ae5d231a7e36cd4d
Author: ArtfulAzeria <146041757+ArtfulAzeria@users.noreply.github.com>
Date: Fri Sep 29 20:17:48 2023 +0200
feat: Better and more responsive tag behavior (#515)
* fix(explorer): default sortFn implementation (#511)
* fix: use `numeric` + `base` for localeCompare
* docs(explorer): update default sortFn
* fix: better and more responsive tag behavior
* tags css moved to TagList.tsx
* used npm run format
* merged tag declarations
---------
Co-authored-by: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
commit 0138085c16856d20d1d2cad5670f1f61c8e500d1
Author: Catchears <57631841+Catchears@users.noreply.github.com>
Date: Fri Sep 29 17:19:10 2023 +0200
docs: fix typo in breadcrumbs documentation (#513)
commit 0b61f6fbfd20556102ce23444ae7eb9348472952
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Fri Sep 29 10:26:15 2023 +0200
feat: implement breadcrumb component (#508)
* feat: implement breadcrumbs
* style: fix styling, move breadcrumbs to top
* refactor: move `capitalize to `lang.ts``
* refactor: clean breadcrumb generation
* feat: add options to breadcrumbs
* feat: implement `resolveFrontmatterTitle`
* feat: add `hideOnRoot` option
* feat(consistency): capitalize every crumb
* style: add `flex-wrap` to parent container
* refactor: clean `Breadcrumbs.tsx`
* feat(accessibility): use `nav`, add aria label
* style: improve look in popovers by adding margin
* docs: write docs for breadcrumb component
* refactor: collapse `if` condition for hideOnRoot
* chore: add todo for perf optimization
* docs: update introduction
commit d4c122646ccd6fc989b4436e16b2dffdc931dee6
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Thu Sep 28 17:39:44 2023 +0200
fix(explorer): default sortFn implementation (#511)
* fix: use `numeric` + `base` for localeCompare
* docs(explorer): update default sortFn
commit d22c3c107a9c6422ef251bd1076ddd9c4fe47a42
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Sep 25 18:15:55 2023 -0700
fix: coerce title to string
commit 697bffdb8b1bef143823f77a118de90286fe325a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Sep 24 14:47:30 2023 -0700
fix: treat the 0 time as invalid too
commit ea5742c328c97a20f7add4994aa7e443fc6f7f39
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Sep 24 10:31:47 2023 -0700
fix: mermaid copy source position
commit 95eec5b49db53801e23b4b47778cb0b6153db83f
Author: Chad Lee <git@chadly.net>
Date: Sun Sep 24 12:27:42 2023 -0500
add site to showcase (#504)
commit c5b9137f12ea372d9196e41ffffc91eee7ad772e
Author: Vince Imbat <96913392+vinceimbat@users.noreply.github.com>
Date: Sat Sep 23 10:39:02 2023 +0800
docs: Adds Vince Imbat to showcase (#501)
commit 13c867322629f5ee59c54b95679585b370e1442b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Sep 22 10:04:37 2023 -0700
feat: add warning for invalid date format
commit a897cc1f531844a2e4da36f8712b7aedec0c5824
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Sep 22 09:43:34 2023 -0700
feat: add warning for missing home page
commit d93599364a3dd0b46068826cf14ed7b25aa59fc3
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Fri Sep 22 17:20:19 2023 +0200
docs(showcase): fix pull request redirect link (#500)
commit fa69c2a5656254251b74dbd5545bef000f67af2f
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Thu Sep 21 19:35:11 2023 +0200
fix(explorer): increase consistency, explicitly use font-family (#496)
* fix(explorer): display name for folders without `index` file
* docs(explorer): add section for folder display names
* docs(explorer): fix broken wikilink
* fix(consistency): explicitly set font + label/link fix
Use consistent styling between folders with `folderClickBehavior: "link"` and `"collapse`
* Update quartz/components/styles/explorer.scss
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* Update quartz/components/styles/explorer.scss
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
---------
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
commit 8eb1554b13532a2441b41d2018800c56cfa84ce9
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Thu Sep 21 18:54:33 2023 +0200
fix(explorer): display names for folders without frontmatter (#494)
* fix(explorer): display name for folders without `index` file
* docs(explorer): add section for folder display names
commit dcdeae4e7bd527945b887ca347b3b4408c03055b
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Thu Sep 21 18:53:19 2023 +0200
docs(explorer): update default config + new example (#493)
commit 48452231d5fcd14ef218928bde9ae7e5bc745f4a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Sep 20 16:09:18 2023 -0700
perf: memoize filetree computation (#490)
* perf: memoize filetree computation
* format
* var -> let
commit 16d33fb77193710bede887d6a177d2144b78fb67
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Sep 20 16:08:54 2023 -0700
feat: display name for folders, expand explorer a little bit (#489)
* feat: display name for folders, expand explorer a little bit
* update docs
commit b029eeadabe0877df6ec11443c68743f1494bc40
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Wed Sep 20 22:55:29 2023 +0200
feat(explorer): improve accessibility and consistency (+ bug fix) (#488)
* feat(consistency): use `all: unset` on button
* style: improve accessibility and consistency for explorer
* fix: localStorage bug with folder name changes
* chore: bump quartz version
commit 6a9e6352e88aa9ff18e5b33cf2de442a250bd960
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Sep 20 13:52:45 2023 -0700
Revert "feat: Making Quartz available offline by making it a PWA (#465)"
This reverts commit d6301fae90d9f922618bf0f413e273156731eef7.
commit 70e029d151ccbb9aeab30a0f811b9f529b7f8818
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Sep 20 13:52:29 2023 -0700
Revert "docs: wording changes for offline support"
This reverts commit 52a172d1a4911080444ff797183e29ba8175741e.
commit 0bad3ce7990aa4ef417128f9d74c2947fe5117fd
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Sep 20 11:58:52 2023 -0700
docs: document enableToc
commit 52a172d1a4911080444ff797183e29ba8175741e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Sep 20 11:40:36 2023 -0700
docs: wording changes for offline support
commit d6301fae90d9f922618bf0f413e273156731eef7
Author: Adam Brangenberg <adambrangenberg@proton.me>
Date: Wed Sep 20 20:38:13 2023 +0200
feat: Making Quartz available offline by making it a PWA (#465)
* Adding PWA and chaching for offline aviability
* renamed workbox config to fit Quartz' scheme
* Documenting new configuration
* Added missig umami documentation
* Fixed formatting so the build passes, thank you prettier :)
* specified caching strategies to improve performance
* formatting...
* fixing "404 manifest.json not found" on subdirectories by adding a / to manifestpath
* turning it into a plugin
* Removed Workbox-cli and updated @types/node
* Added Serviceworkercode to offline.ts
* formatting
* Removing workbox from docs
* applied suggestions
* Removed path.join for sw path
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* Removed path.join for manifest path
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* Removing path module import
* Added absolute path to manifests start_url and manifest "import" using baseUrl
* Adding protocol to baseurl
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* Adding protocol to start_url too then
* formatting...
* Adding fallback page
* Documenting offline plugin
* formatting...
* merge suggestion
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* merge suggestion
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* merge suggestion
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* merge suggestion
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* merge suggestion
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* merge suggestion
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* merge suggestion
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* merge suggestion
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* merge suggestion
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* merge suggestion
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* merge suggestion
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* merge suggestion
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* formatting...
* Fixing manifest path, all these nits hiding the actual issues .-.
* Offline fallback page through plugins, most things taken from 404 Plugin
* adding Offline Plugin to config
* formatting...
* Turned offline off as default and removed offline.md
---------
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
commit 27a6087dd5a25dd5031b86b9917adde6ef4b211a
Author: rwutscher <richard.wutscher@gmail.com>
Date: Tue Sep 19 21:26:30 2023 +0200
fix: tag regex no longer includes purely numerical 'tags' (#485)
* fix: tag regex no longer includes purely numerical 'tags'
* fix: formatting
* fix: use guard in findAndReplace() instead of expanding the regex
commit 1bf7e3d8b3966590ebfa3418d6fb2ce6a520c846
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Sep 19 10:22:39 2023 -0700
fix(nit): make defaultOptions on explorer not a function
commit cc31a40b0cb53cba7f51187cb6d68076c3f54c0f
Author: David Fischer <david@konst.fish>
Date: Tue Sep 19 18:25:51 2023 +0200
feat: support changes in system theme (#484)
* feat: support changes in system theme
* fix: run prettier
* fix: add content/.gitkeep
commit 0d3cf2922618774fc397dca8cb92fcf76fb0db02
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Mon Sep 18 23:32:00 2023 +0200
docs: fix explorer example (#483)
commit 6a2e0b3ad3a928247a03a76817d239e61cce0fe0
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Sun Sep 17 22:04:44 2023 +0200
fix: bad visibility for last explorer item (#478)
* fix: bad visibility for last explorer item
* feat(explorer): add pseudo element for observer
commit e67f409ec1fa36779f59a635eb3e16408275575d
Merge: af41f34b 4afb099b
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Sun Sep 17 21:36:04 2023 +0200
Merge pull request #479 from benschlegel/explorer-config
feat(explorer): add config for custom sort/map/filter functions
commit 4afb099bf3ec96e5d795e871ecb19575271c0714
Author: Ben Schlegel <ben5.schlegel@gmail.com>
Date: Sun Sep 17 21:32:23 2023 +0200
docs: fix examples
commit 6914d4b40caff901ccf3e9d9113c15129a68a80c
Author: Ben Schlegel <ben5.schlegel@gmail.com>
Date: Sun Sep 17 21:20:09 2023 +0200
docs: fix intra page links
commit af41f34bfd4126756e594ce4d6a46d4f4907754b
Author: Christian Gill <gillchristiang@gmail.com>
Date: Sun Sep 17 20:02:00 2023 +0200
fix(slug): Handle question mark (#481)
commit 7ac772fca8bf26c1023f905cdb77e6972a0d4b61
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Sun Sep 17 19:29:20 2023 +0200
fix: darkmode scroll bars (#480)
commit 5cc9253c41fda87ba473df7023567ba66ce3c32b
Author: Ben Schlegel <ben5.schlegel@gmail.com>
Date: Sun Sep 17 16:41:23 2023 +0200
docs(explorer): write docs for new features
commit 94a04ab1c9fd099c808f3f4e6633722e0d13ac85
Author: Ben Schlegel <ben5.schlegel@gmail.com>
Date: Sun Sep 17 15:51:08 2023 +0200
fix(explorer): filter function in `ExplorerNode`
commit 9358f73f1c939ce459d7835457527e35e1bdf857
Author: Ben Schlegel <ben5.schlegel@gmail.com>
Date: Sun Sep 17 12:41:06 2023 +0200
fix: display name for file nodes
commit f7029012dfb73ce04405bfe44e4e4d984818bf5f
Author: Ben Schlegel <ben5.schlegel@gmail.com>
Date: Sat Sep 16 21:58:38 2023 +0200
feat: black magic
add config for `order` array, which determines the order in which all passed config functions for explorer will get executed in.
functions will now dynamically be called on `fileTree` via array accessor (e.g. fileTree["sort"].call(...)) with corresponding function from options being passed to call)
commit fea352849c6972da4b3b8935eb2e86f6cefc76ed
Author: Ben Schlegel <ben5.schlegel@gmail.com>
Date: Sat Sep 16 19:45:21 2023 +0200
fix: create deep copy of file passed into tree
commit 3d8c470c0d298f720614318fb4c14575e72bbd2e
Author: Ben Schlegel <ben5.schlegel@gmail.com>
Date: Sat Sep 16 19:35:27 2023 +0200
feat(explorer): implement `map` fn argument
Add a function for mapping over all FileNodes as an option for `Explorer`
commit 31d16fbd2c82380af586e458b2c1ff29b90b53ae
Author: Ben Schlegel <ben5.schlegel@gmail.com>
Date: Sat Sep 16 19:18:59 2023 +0200
feat(explorer): integrate filter option
commit 036a33f70bcabc17469956740847796a5f13b9ab
Author: Ben Schlegel <ben5.schlegel@gmail.com>
Date: Sat Sep 16 17:47:44 2023 +0200
fix: use correct import for `QuartzPluginData`
commit 58aea1cb0791e18cd092d88de5374431eba7f1d3
Author: Ben Schlegel <ben5.schlegel@gmail.com>
Date: Sat Sep 16 17:28:58 2023 +0200
feat: implement filter function for explorer
commit c7d3474ba8cb49ab0f1978216d80b08ec2c8e5d7
Author: Ben Schlegel <ben5.schlegel@gmail.com>
Date: Sat Sep 16 12:40:19 2023 +0200
feat(explorer): add config to support custom sort fn
commit 422ba5c36586c7ebc31141da8bb539b4157aa01a
Author: Yuto Nagata <38714187+mouse484@users.noreply.github.com>
Date: Sat Sep 16 11:17:20 2023 +0900
fix: umami analytics date attribute (#477)
commit 9ae6343dd0104d44e6bdf083572f987b70ba50c9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Sep 15 10:33:38 2023 -0700
Revert "fix: use git dates by default, @napi/git is fast enough"
This reverts commit 5dcb7e83fc3c8383ebbc84aac4553df4ad3ef59a.
commit 5dcb7e83fc3c8383ebbc84aac4553df4ad3ef59a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Sep 15 09:46:06 2023 -0700
fix: use git dates by default, @napi/git is fast enough
commit 91f9ae2d71d5c28ba7d2182eed5a9f77da1fbe8d
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Fri Sep 15 18:39:16 2023 +0200
feat: implement file explorer component (closes #201) (#452)
* feat: add basic explorer structure„
* feat: integrate new component/plugin
* feat: add basic explorer structure
* feat: add sort to FileNodes
* style: improve style for explorer
* refactor: remove unused explorer plugin
* refactor: clean explorer structure, fix base (toc)
* refactor: clean css, respect displayClass
* style: add styling to chevron
* refactor: clean up debug statements
* refactor: remove unused import
* fix: clicking folder icon sometimes turns invisible
* refactor: clean css
* feat(explorer): add config for title
* feat: add config for folder click behavior
* fix: `no-pointer` not being set for all elements
new approach, have one `no-pointer` class, that removes pointer events and one `clickable` class on the svg and button (everything that can normally be clicked). then, find all children with `clickable` and toggle `no-pointer`
* fix: bug where nested folders got incorrect height
this fixes the bug where nested folders weren't calculating their total height correctly. done by adding class to main container of all children and calculating total
* feat: introduce `folderDefaultState` config
* feat: store depth for explorer nodes
* feat: implement option for collapsed state + bug fixes
folderBehavior: "link" still has bad styling, but major bugs with pointers fixed (not clean yet, but working)
* fix: default folder icon rotation
* fix: hitbox problem with folder links, fix style
* fix: redirect url for nested folders
* fix: inconsistent behavior with 'collapseFolders' opt
* chore: add comments to `ExplorerNode`
* feat: save explorer state to local storage (not clean)
* feat: rework `getFolders()`, fix localstorage read + write
* feat: set folder state from localStorage
needs serious refactoring but functional (except folder icon orientation)
* fix: folder icon orientation after local storage
* feat: add config for `useSavedState`
* refactor: clean `explorer.inline.ts`
remove unused functions, comments, unused code, add types to EventHandler
* refactor: clean explorer
merge `isSvg` paths, remove console logs
* refactor: add documentation, remove unused funcs
* feat: rework folder collapse logic
use grids instead of jank scuffed solution with calculating total heights
* refactor: remove depth arg from insert
* feat: restore collapse functionality to clicks
allow folder icon + folder label to collapse folders again
* refactor: remove `pointer-event` jank
* feat: improve svg viewbox + remove unused props
* feat: use css selector to toggle icon
rework folder icon to work purely with css instead of JS manipulation
* refactor: remove unused cfg
* feat: move TOC to right sidebar
* refactor: clean css
* style: fix overflow + overflow margin
* fix: use `resolveRelative` to resolve file paths
* fix: `defaultFolderState` config option
* refactor: rename import, rename `folderLi` + ul
* fix: use `QuartzPluginData` type
* docs: add explorer documentation
commit 14cbbdb8a2f69ebc51cd53a82b50206c543778b0
Author: Oskar Manhart <52569953+oskardotglobal@users.noreply.github.com>
Date: Thu Sep 14 05:55:59 2023 +0200
feat: display tag in graph view (#466)
* feat: tags in graph view
* fix: revert changing graph forces
* fix: run prettier
commit cce389c81d262d1d2a2bd8140c879efd68e3c6dd
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Sep 13 11:28:53 2023 -0700
feat: note transclusion (#475)
* basic transclude
* feat: note transclusion
commit 4461748a85b8795651d0c02451368dffff607938
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Sep 13 09:43:14 2023 -0700
fix dont show html in search when rssFullHtml is true (closes #474)
commit 6ecdcb5e24f2783e6fa73de69e848f0f319c4fc4
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Sep 12 22:55:50 2023 -0700
feat: resolve block references in obsidian markdown
commit e3b879741b6d32f56e1d1bfd0bac57f0d68c1113
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Sep 12 21:44:03 2023 -0700
feat: rich html rss (closes #460)
commit 60a3c543398aed8caf44b411a4dc10e8d1e26fcc
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Sep 12 21:29:57 2023 -0700
fix: 404 page styling for nested pages (closes #458)
commit 71d81bde1d12aa386ec70be31cc86a37a7426bce
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Sep 12 19:18:44 2023 -0700
feat: rss limit (closes #459)
commit a19df64be8423063c2484ab35300fb0bef324a14
Author: hcplantern <38579760+HCPlantern@users.noreply.github.com>
Date: Tue Sep 12 14:00:21 2023 +0800
fix: callout parsing (#469)
commit 4e23e6724493a8d112c6ff22e14cf4aabd5e9af1
Author: Oskar Manhart <52569953+oskardotglobal@users.noreply.github.com>
Date: Mon Sep 11 08:11:42 2023 +0200
feat: plugin for remark-breaks (#467)
* feat: plugin for remark-breaks
* fix: update package-lock.json
* fix: styling
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* Update linebreaks.ts
* Update index.ts
---------
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
commit a66c239797e3e80e2dc8b7059eee8c51bcf4ca8f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Sep 10 23:07:17 2023 -0700
ci: print bundleInfo
commit 53f1c88738550eb2646cc0a03469dc230839a258
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Sep 8 09:29:57 2023 -0700
fix: more lenient date parsing for templates
commit 06df00b18621f08a211bec33f566ecb7ef4ec22e
Author: Stefano Cecere <stefano.cecere@krur.com>
Date: Thu Sep 7 17:13:41 2023 +0200
typo (it's draft, not drafts) (#456)
commit 2525bfbab5553f970997ea3c60af180cbef1fdd2
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Sep 6 22:24:15 2023 -0700
fix: links to index not showing in graph (closes #450)
commit 828aa71fe34aae675a7552957e8a062c82f595f6
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Sep 6 21:47:59 2023 -0700
fix: escape encoding for titles in rss
commit ef1ead31dccd05f4275405b843ff47fa28a5116d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Sep 6 21:31:01 2023 -0700
fix: encodeuri for slugs in rss
commit 989bee597987bba2aeae4266cb32ac8e899f638c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Sep 6 21:08:08 2023 -0700
docs: correct field for ignorePatterns
commit 8d6029b7b844044d06fe17de89db6881954a8fec
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Sep 6 21:02:21 2023 -0700
feat: 404 page emitter
commit 2d52eba4133293a27f6df98c252785ba4ddee575
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Sep 6 20:25:38 2023 -0700
fix: dont transform external links
commit 6ef4246cf186414d1b8ee868cfa9d24314f0bc0a
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Mon Sep 4 07:36:30 2023 +0200
docs: update `full-text-search.md` (#447)
commit 616a7f148a283b2fd7c5204c60ddf1b08f42d125
Author: Dr Kim Foale <kim@gfsc.studio>
Date: Mon Sep 4 05:29:58 2023 +0100
docs: Make it clearer that wikilinks go to paths not page titles (#448)
commit e8a04efaf1b82560cbcf7694ac6c7dda1c82612f
Author: Adam Brangenberg <adambrangenberg@proton.me>
Date: Mon Sep 4 06:28:57 2023 +0200
feat(analytics): Support for Umami (#449)
commit 7e42be8e46501c752dda9bd174fb93ea9dccec22
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Sun Sep 3 18:32:46 2023 +0200
feat(search): add arrow key navigation (#442)
* feat(search): add arrow navigation
* chore: format
* refactor: simplify arrow navigation
* chore: remove comment
* feat: rework arrow navigation to work without state
* feat: make pressing enter work with arrow navigation
* fix: remove unused css class
* chore: correct comment
* refactor(search): use optional chaining
commit 8c354f6261dda6d9761f594002db53c9d7a8e8e2
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Sun Sep 3 18:06:05 2023 +0200
fix: clipboard button visible in search (#445)
commit 505673acd71e6b023abae19c706a736b257cff2a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Sep 2 18:07:26 2023 -0700
feat: pluralize things in lists
commit 23f43045c49f17fe5ace480f7026855acf2a30b8
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Fri Sep 1 23:12:32 2023 +0200
fix(search): matches getting highlighted in title (#440)
commit 90dac31216b5d3f59e65ec5778e21a308a744e11
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Fri Sep 1 19:09:58 2023 +0200
feat: Implement search for tags (#436)
* Quartz sync: Aug 29, 2023, 10:17 PM
* style: add basic style to tags in search
* feat: add SearchType + tags to search preview
* feat: support multiple matches
* style(search): add style to matching tags
* feat(search): add content to preview for tag search
* fix: only display tags on tag search
* feat: support basic + tag search
* refactor: extract common `fillDocument`, format
* feat: add hotkey to search for tags
* chore: remove logs
* fix: dont render empty `<ul>` if tags not present
* fix(search-tag): make case insensitive
* refactor: clean `hideSearch` and `showSearch`
* feat: trim content similar to `description.ts`
* fix(search-tag): hotkey for windows
* perf: re-use main index for tag search
commit 2d6dc176c3e1fbb520a5da1beb60bbb1d8e948ba
Author: Pelayo Arbués <gonzalezpelayo@gmail.com>
Date: Thu Aug 31 21:12:06 2023 +0200
Adds Pelayo Arbues to showcase (#435)
commit b213ba45e2e706332e057b131adc946f882f090b
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Thu Aug 31 20:55:04 2023 +0200
fix: regex for matching highlights (closes #437) (#438)
* fix: regex for matching highlights
* fix: regex for empty highlights
commit 5fa6fc97899c905b6fbc14fa1d24334f3e68fa77
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 29 10:37:00 2023 -0700
fix: aliasredirects not using full path, add permalink support
commit 1cc09ef76db129fb3670e95560312adeefab913c
Author: Jeffrey Fabian <jeffrey.fabian61@gmail.com>
Date: Tue Aug 29 13:14:54 2023 -0400
feat: support kebab-case and nested tags in Obsidian-flavored Markdown tag-in-content parsing (#425)
* enhancement: support kebab-case and nested tags in ofm transformer
* update regex/capture groups to allow for (arbitrarily) nested values and tags of only -/_
* Update quartz/plugins/transformers/ofm.ts
---------
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
commit c35cd422c65a58f1069302aad0cf9eef7f93d987
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Mon Aug 28 19:00:49 2023 +0200
fix: correct graph labels for `index.md` nodes (#431)
commit 082fdf2e8098ef6bcb46a7dfabf8c6b9fd096346
Author: Jeremy Press <jeremypress1@gmail.com>
Date: Sun Aug 27 20:57:19 2023 -0700
Fix typo :) (#430)
commit b6b1dabde0f63ca0ae743aa7f4266ca892d7b5e5
Author: Jeremy Press <jeremypress1@gmail.com>
Date: Sun Aug 27 17:39:42 2023 -0700
feat: support configurable ws port and remote development (#429)
Co-authored-by: Jeremy Press <jeremy@replit.com>
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
commit 4b89202f7e834cf8b5c5aa39e8f1778706492085
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Mon Aug 28 00:59:51 2023 +0200
cleanup: rework cli to allow invoking create and build outside of cli (#428)
* refactor: move `bootstrap-cli.mjs` tp cli
also update reference in docs
* refactor(cli): move build handler to `cli-functions`
* refactor(cli): move create to handler + helpers
* refactor(cli): extract arg definitions
* refactor: rename handlers and helpers
* refactor(cli): move update, await handlers
* refactor(cli): create constants, migrate to helpers
* refactor(cli): migrate `restore`
* refactor(cli): migrate `sync`
* format
* refactor(cli): remove old imports/functions
* refactor(cli): remove unused imports + format
* chore: remove old log statement
* fix: fix imports, clean duplicate code
* fix: relative import
* fix: simplified cacheFile path
* fix: update cacheFile import path
* refactor: move bootstrap-cli to quartz
* format
* revert: revert path to bootstrap-cli
* ci: re-run
* ci: fix execution permission
commit 52ca312f41ee6da5202cd9632d8501340ada3a67
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 27 12:27:42 2023 -0700
fix: slugify tag on page before adding (closes #411)
commit c91e62c376d481534d89084e5c04846878dff6d3
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Sun Aug 27 02:19:45 2023 +0200
Fix search bar after navigate (#424)
commit ad4145fb10dbf32d8f99e1de555339dba0979f72
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Sat Aug 26 22:21:44 2023 +0200
feat: support CLI arguments for `npx quartz create` (#421)
* feat(cli): add new args for content + link resolve
* feat(cli): validate cmd args
* feat(cli): add chalk + error code to errors
* feat(cli): support for setup/link via args
* refactor(cli): use yargs choices instead of manual
Scrap manual check if arguments are valid, use yargs "choices" field instead.
* feat(cli): add in-dir argument+ handle errors
add new "in-directory" argument, used if "setup" is "copy" or "symlink" to determine source. add error handling for invalid permutations of arguments or non existent path
* feat(cli): dynamically use cli or provided args
use "in-directory" arg as `originalFolder` if available, otherwise get it from manual cli process
* run format
* fix: use process.exit instead of return
* refactor: split CommonArgv and CreateArgv
* refactor(cli): rename create args, use ${} syntax
* fix(cli): fix link resolution strategy arg
* format
* feat(consistency): allow partial cmd args
commit 74c3ebb7bd7ef126246f8ea03565db73cd5e7f38
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 26 10:48:34 2023 -0700
style: fix mulitline callout styling
commit e3265f841637de197e5cf4a5471372b5178f1e4d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 26 10:42:55 2023 -0700
docs: simplify oxhugo page
commit bc543f81d9ada5e61cb9690834a5f83c02997d63
Author: Hrishikesh Barman <geekodour@users.noreply.github.com>
Date: Sat Aug 26 11:22:23 2023 +0530
feat(plugins): add OxHugoFlavouredMarkdown (#419)
* feat(plugins): add OxHugoFlavouredMarkdown
ox-hugo is an org exporter backend that exports org files to
hugo-compatible markdown in an opinionated way. This plugin adds some
tweaks to the generated markdown to make it compatible with quartz but
the list of changes applied it is not extensive.
In the future however, we could leapfrog ox-hugo altogether and
create a quartz site directly out of org-roam files. That way we won't
have to do all the ritual dancing that this plugin has to perform.
See https://github.com/k2052/org-to-markdown
* fix: add toml to remarkFrontmatter configuration
* docs: add docs for OxHugoFlavouredMarkdown
* fixup! docs: add docs for OxHugoFlavouredMarkdown
commit 5c6d1e27baef74a42cc292276c5832b010a38fd5
Author: Hrishikesh Barman <geekodour@users.noreply.github.com>
Date: Fri Aug 25 22:55:46 2023 +0530
feat(plugins): add toml support for frontmatter (#418)
* feat(plugins): add toml support for frontmatter
Currently frontmatter is expected to be yaml, with delimiter set to
"---". This might not always be the case, for example ox-hugo(a hugo
exporter for org-mode files) exports in toml format with the delimiter
set to "+++" by default.
With this change, the users will be able use frontmatter plugin to
support this toml frontmatter format.
Example usage: `Plugin.FrontMatter({delims: "+++", language: 'toml'})`
- [0] https://ox-hugo.scripter.co/doc/org-meta-data-to-hugo-front-matter/
* fixup! feat(plugins): add toml support for frontmatter
commit 340e3ef5116cd99c8ddfdbb3d9e0bbd914e07825
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Fri Aug 25 18:03:49 2023 +0200
feat(consistency): Add `.obsidian` to ignorePatterns (#420)
commit 953ef29f4e238ef9ae186ab79eeec1bf4f3921a6
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 24 12:31:15 2023 -0700
format, ensure ci runs on prs
commit 94ce0883e7fbf38252377af2f144c971a2ff591b
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Thu Aug 24 21:28:06 2023 +0200
style: integrate tertiary color to text-select (#413)
commit 8cf7280614f8c1f2c9aaba5671f388d63bbea4dd
Author: Zero King <l2dy@icloud.com>
Date: Fri Aug 25 02:41:20 2023 +0800
feat: reproducible build (#412)
for sitemap, RSS and contentIndex.json.
commit c8412a5b0ac90d9d7beb7e03ed9a4763e834a865
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 24 10:03:14 2023 -0700
format
commit fc4b8f3d3fad90b6f7d8dedc58201df68da1280e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 24 09:38:00 2023 -0700
fix: ensure recentnotes uses proper date
commit 6cd0612d40a5011f19f5ca2e5e804477779e393f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 24 09:17:43 2023 -0700
fix: add better warning when defaultDateType is not set due to upgrade
commit 9851697b583efdd40173ebbdd484030f2adb0732
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 24 09:05:19 2023 -0700
version bump to 4.0.10
commit c36a9f3fb7c2128610d20312ffb332bd238c89de
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 24 08:56:40 2023 -0700
feat: add defaultDateType config
commit 98d82415dc8d60c3a35ea4dee21c86e406605763
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 24 08:31:06 2023 -0700
fix: lock to never read when site is building
commit 9d2340e90b55fb9480e0901bc7360f3d72e688da
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Thu Aug 24 17:14:52 2023 +0200
docs: fix typo in `authoring content.md` (#408)
commit 8200c8d0402cb40e9f65c49dac5be621360a3a20
Author: bfahrenfort <59982409+bfahrenfort@users.noreply.github.com>
Date: Thu Aug 24 00:57:49 2023 -0500
Revert contentIndex to RSS 2.0 (#407)
commit 2e0e518f5dbddc3b55e9dd1a085c2a88d365b599
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 23 15:16:04 2023 -0700
format
commit 632c27b7ec133d15d890eb28c98eb9716ca01407
Author: Zane Helton <me@zaaane.com>
Date: Wed Aug 23 18:14:23 2023 -0400
docs: update `hosting.md` with Vercel hosting instructions (#406)
* Update hosting.md with Vercel hosting instructions
* Update docs/hosting.md
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* Update docs/hosting.md
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* Run npm run format
---------
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
commit bfb416b35a02dabbdaedc9e3c8980f8b4aadd9aa
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 23 13:10:23 2023 -0700
fix: text wrap in popover
commit 960c1814d07449dd9fd5e70eea770ba762780b53
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 23 12:23:49 2023 -0700
docs: make incompability of trailing slashes clear
commit eed4472aeecdcb0f2b233df69884f03bd45fc293
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 23 12:18:50 2023 -0700
fix: use proper full base for links.ts
commit b99eb7ebce21065b7ff59cdd3226d4fc173b3878
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 23 12:11:16 2023 -0700
docs: whitespace
commit 0aaf88b8521e2bc667cae525356eea3550ad9c96
Author: kanpov <71177577+kanpov@users.noreply.github.com>
Date: Wed Aug 23 22:09:04 2023 +0300
Fix #403 by moving documentation to separate directory to avoid merge conflicts (#405)
commit a1a1e7e1e0c06f2f7b759c5aecd6a9ceba3e2717
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 23 11:36:34 2023 -0700
fix: builds should no accumulate on repeated changes (closes #404)
commit 3209f7c3b7837fd845cbef645155a9484ea0253a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 23 09:19:00 2023 -0700
deps: native addons for lightningcss
commit cde1e26129f8cd6b183ccc1c35a06f76dedeff9c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 23 09:16:44 2023 -0700
deps: install exact
commit 1128efcf237d275343daaab16e1b1d3e228999b9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 23 09:10:30 2023 -0700
deps: esbuild and esbuild-sass-plugin
commit d2f52549955ff7600cc5897e67806df4ebf85f91
Author: Aaron Pham <29749331+aarnphm@users.noreply.github.com>
Date: Wed Aug 23 12:05:01 2023 -0400
fix(esbuild): conflict with esbuild-sass-plugin (#402)
commit 3064839c2d2ea0a9976bef83db12102647572083
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 22 23:37:02 2023 -0700
version bump to 4.0.9
commit b444c5c13b983bf80df8b6d020eb246e9fd3e78e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 22 23:33:58 2023 -0700
fix: percent-encoding for files with %, contentIndex for non-latin chars (closes #397, closes #399)
commit 36548d59866ab3236677ff25af106b882c0694f6
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 22 22:41:50 2023 -0700
fix: toc for cyrillic and other non-latin alphabets (closes #396)
commit 99dbe525d9b221bf12778ed899c94ef103a77c45
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 22 22:27:41 2023 -0700
fix: properly lock across source and content refresh by sharing a mutex
commit 8b63ff882ae28b1a1774293673a7531463d6a5e5
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 22 22:14:16 2023 -0700
fix: tag support for non-latin alphabets (fixes #398)
commit b991cf2ee8a456a15f2b566843d93a9b7a9a0c29
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 22 21:30:31 2023 -0700
fix: spa hijacks back button (closes #400)
commit bb677840fc1ff14637fab8a99841dd532f408fce
Author: 松浦 知也 Matsuura Tomoya <me@matsuuratomoya.com>
Date: Wed Aug 23 01:16:55 2023 +0900
fixed broken CJK links (#390)
commit c60b3d5e3444e46587c1143dab784c53204070ae
Author: Ikko Eltociear Ashimine <eltociear@gmail.com>
Date: Wed Aug 23 01:16:21 2023 +0900
fix: typo in bootstrap-cli.mjs (#394)
commit e10de3febffd3e3b7eaa3aed611aea03153e6a82
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Aug 21 17:01:18 2023 -0700
fix: server-handler crash from filename (closes #386)
commit b69556c918e2a4a27b047e8de6b02861f04d5a9e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Aug 21 16:43:22 2023 -0700
fix: async-mutex not exclusively locking correectly
commit ce7057107266c1d96a909977add472af83f0e9f9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Aug 21 09:14:47 2023 -0700
docs: use canonical quartz.jzhao.xyz, update bootstrap script to point to correct hosting link
commit 8c943f47d6ddedc5da4b9447fec173a16d91758c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Aug 21 09:00:13 2023 -0700
format, update default sidepanel width
commit 2774e976d20226df1554ebddd6c7d2e390cae42d
Author: 松浦 知也 Matsuura Tomoya <me@matsuuratomoya.com>
Date: Tue Aug 22 00:45:47 2023 +0900
fix: opts being overriden in graph option (#384)
commit bb93ac1c83fd8d13593f7f9688de02eba60de913
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 23:50:19 2023 -0700
docs: fix links to networked thought
commit 777ff51c7a704459f9708086845b62aa8fe4e89d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 20:48:35 2023 -0700
format
commit 4e42d52e166dcc3c62775cb3bf86c209d098c158
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 20:47:07 2023 -0700
fix: ctrl + k breaking after page nav
commit d0f67d993507219cfa0824db8a3e59286f0ebf09
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 18:41:37 2023 -0700
move wss server start after http
commit 952d6cb3dd63bb50056198c1d7782314f8976bbf
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 18:08:44 2023 -0700
fix: nav event with spa off, anchor nav refresh page
commit 173ec240d2ed5b25f18ef42823334ae800b3527d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 17:50:56 2023 -0700
fix: jump to anchor on deployed site triggering spa refresh
commit 425c9789a451e69adbba2d99193e38e8915e8804
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 16:59:25 2023 -0700
remove checkout step from instructions as v4 is the default branch
commit 7b7064ad2be68e8d6d43123c12529ca94a325fcb
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 15:38:37 2023 -0700
fix: ensure code exists inside pre before adding clipboard
commit ca17af4ae20b9310da52a3752b8d7744c932f3e2
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 15:02:24 2023 -0700
fix: dont show index page for folder in its own listing
commit 71471117c5ec4acdfc0b8335b4462ab43d86fce6
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 14:34:00 2023 -0700
fix: ci runs on v4
commit e65ea48fae5a279ad4e50594b03621904f84e477
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 14:27:44 2023 -0700
fix: add async-mutex to builds on large vaults
commit b99d4cd8ce99ea1e52a97654ab153774a6bc598a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 14:05:37 2023 -0700
recent notes css fixes
commit 1bb00e72bb4ab8fcac186ef6961e400c60fb07de
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 13:00:33 2023 -0700
add docs for recent notes
commit 236130ac221f7d254ec9881f529f4ca567e15234
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 12:46:37 2023 -0700
css fixes, add recent notes, more robust quartz update
commit 5adf3c67a8f1939b891fadd2c8c30cf201d87943
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 08:57:56 2023 -0700
add engines field
commit 9d77edaf94d23f207552b3a650189810ba2252cd
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 01:08:18 2023 -0700
fix description not being used in folder and tag listings
commit 0ef1b5b522d1d6c0c79cd0538a2d63a9bf71a973
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 00:54:13 2023 -0700
update plausible url
commit cfb7d1232e005736dc549fb24ec5a02d53fc5206
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 00:52:49 2023 -0700
docs: update notes for tag and folder listings
commit 03fd62496f94c7cc007f802fc10290581d08deb0
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 00:02:41 2023 -0700
docs: note about updating default branch
commit d205eb568686a718cae889d51fde5ae18d352b30
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 19 22:19:49 2023 -0700
docs: make setting upstream more clear, docs on npx quartz restore
commit 96a3bfeafbe3e46bdf3e217dd934b026bc1b9f9f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 19 22:04:29 2023 -0700
fix: put quotations around font
commit 95fb6ccfcb5d887f1085bc1b58204b4138a2e804
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 19 21:59:20 2023 -0700
readme fix
commit e26248292179ebb691dfa99621192b2258c9b9c3
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 19 21:59:01 2023 -0700
fix: string for aliases being treated as array of chars
commit eb4d3dc5b405fda29ccde917902483a76835894c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 19 21:55:09 2023 -0700
css: fix scrollbars on windows
commit 90d6c1ed24283d0b046ba7eee2e6533a73cf3683
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 19 21:38:10 2023 -0700
add git fetch to migration instructions
commit 443c1828901f364cb7f5708a64a32494eea28d28
Merge: 791b8e2d a6236d97
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 19 21:16:31 2023 -0700
Merge branch 'v4' of https://github.com/jackyzha0/quartz into v4
commit 791b8e2d9f826de8cd0e3db3aead04ad8c65bc6e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 19 21:16:24 2023 -0700
add sponsors
commit a6236d97cf847a88dc2f72450372d440561032ac
Author: Matt Dunn <55315824+TheRealMattDunn@users.noreply.github.com>
Date: Sun Aug 20 03:15:14 2023 +0100
Adding to Showcase page (#367)
commit b1debaebff5c5753149e02e990439e7e56528852
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 19 18:56:45 2023 -0700
update docs
commit 7b8017413c16c0153c58919ab30e0e2de6e71f02
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 19 18:04:17 2023 -0700
impl baseDir option for quartz build --serve for local testing
commit 6681f28af0bb753918699c41ef9a8421f6b7cd08
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 19 16:55:36 2023 -0700
fix trailing slash causing folder listing to not fetch content correctly
commit 78f4cdbe109308fa33cb87387952aef5a528ebbe
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 19 16:40:02 2023 -0700
avoid 404 on icon for spa navigations with anchors
commit dd47be1bc65d3a8050d6ce9e77cd0e3b10e2a1a9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 19 16:28:44 2023 -0700
improve path resolution stability
commit c874e7e9378a5ba895870e9680484fb4af5c6e93
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 19 15:52:25 2023 -0700
base path refactor to better support subpath hosting
commit 3201f83b70bb2ee1d1daeb585a26e8cd6b8ce95f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Aug 18 18:24:09 2023 -0700
v4-alpha -> v4
commit d8bec631b6dee8f5b9c42f75d154252e53e81b77
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Aug 18 18:22:38 2023 -0700
update docs on github pages and syncing
commit 6f1f820289ce37d328c4bc8cceba1f702df52e15
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 17 23:39:15 2023 -0700
fix typo in docs
commit 8bc7a50dfa91dd7ba6b657aca6dbc437fa6df6b7
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 17 21:54:42 2023 -0700
format
commit 569beb410b967b8511a5d18cdee74280df681d15
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 17 21:49:58 2023 -0700
ensure sync includes untracked files
commit 5713d30670fc9ca1f9d86e6f0698bd011a68f674
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 17 21:24:41 2023 -0700
ensure contentfolder is passed to popContentFolder
commit a13094544318b06902b54a24ea61691fe598a2fc
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 17 21:20:15 2023 -0700
fix when symlink targ is calculated and added npx quartz restore
commit e10f6da01140f483162fe33cc77b2255b0683ac7
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 17 21:08:26 2023 -0700
format
commit a7cca3242ad7adc5163d70aa2cc8ee23c92211e5
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 17 21:07:40 2023 -0700
deref symlink on quartz sync
commit 0998bc355e6425e6b2bdf3d2da7124aa7b63b2a2
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 17 01:58:11 2023 -0700
fix rebuild debouncing
commit 07a327e05aa2a48aa11faf9aa0e049201d622f8f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 17 01:34:50 2023 -0700
fix back button in spa not working between two pages that both have hash fragments
commit 58d9dc0528cc5d7232ac7a237c98213ff1075f39
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 17 00:55:52 2023 -0700
format
commit 0c199975f2d469ecdfd7efcf2ddd16ffa1dc492b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 17 00:55:28 2023 -0700
various path fixes for links to extensions, fix relative paths in links
commit 2dc0ae279cae87e37c94c42d4ad87107f2a5b5d2
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 16 22:09:11 2023 -0700
fix import paths
commit 2f6747b1666316e579c6e7238092ac6a65d00925
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 16 22:04:15 2023 -0700
fix relative path resolution in router and link crawling
commit 232652149a287054df7e7c5136dafd3f55a79bf0
Author: Sohaib <98542228+sohaibology@users.noreply.github.com>
Date: Mon Aug 14 20:59:47 2023 -0400
Update hosting.md (#371)
commit 7bde99b4e2d49e30dad1e0d58ccc34c2e7482005
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 13 17:47:07 2023 -0700
fix: add trailing slash to local serving
commit f1c9ca495e450ecb62dade70c4b60d86e106f79c
Author: vintro <77507980+vintrocode@users.noreply.github.com>
Date: Sun Aug 13 20:19:50 2023 -0400
docs: note about existing content at same path on different branches
commit 4f4b04eeb4f41067e4759bec5c2f5db181150520
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 12 21:18:51 2023 -0700
format docs
commit d6e73f221c3e52ce6591cbd01621530e5f6fd703
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 12 21:16:34 2023 -0700
fix relative path resolution logic, add more path tests
commit 6d9ffd6da508743407b3b88a89ed831b53321d59
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 12 17:44:35 2023 -0700
404 page styling on local
commit c89f8b1a9a20becd982ed0b4bc88b1685a15832d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 12 10:33:57 2023 -0700
fix nested callout folding
commit 8fd496bbef4bc62315f3a0893177da730d8c4262
Author: Sohaib <98542228+sohaibology@users.noreply.github.com>
Date: Sat Aug 12 16:52:16 2023 -0400
Update hosting.md (#368)
commit aed3f5fccbe6a70186b339af4716980a5950b989
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 12 10:17:07 2023 -0700
fmt
commit c55d54f068a102d85dc16c5c0e63db413bc56145
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 12 10:16:55 2023 -0700
enable rich text in callout title
commit 7bffc2183ece33e2d84909a5677dac0ae2563ddd
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 12 00:24:30 2023 -0700
include home page in search
commit 827dd918476e225238d8412551df2866e4f9e616
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 12 00:03:11 2023 -0700
format, make search async
commit e1dd6aee863878a02f51200b3878d619220c22f3
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Aug 11 23:55:17 2023 -0700
fix wikilinks to anchors in the same document
commit 83269ac26e41f8e81b56e000b4347ee60d4ff84b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Aug 11 23:40:06 2023 -0700
fix scanning for tags in content
commit ed62ece491310e75d336db844d8ce56d3d26be31
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Aug 11 23:27:59 2023 -0700
fix broken tag listing links to tags
commit 736c3981c4affff8dea1eb908ff760ee740ec4a3
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Aug 11 23:25:44 2023 -0700
fix emit filepaths, tag emit being overriden by content
commit 79e828696a9e53357f61bd89c36e41555575c2c2
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Aug 11 22:47:50 2023 -0700
feature docs
commit 259d0a6d9ac5a02f0281e3fc061861b23481348f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Aug 11 00:31:44 2023 -0700
more documentation
commit df02ea20d7e12e8b9ffdd2968afaf5893c433488
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 10 21:32:11 2023 -0700
spacing fix
commit 21cc6a5da9edefd199c0b2158b85b8cd10dd901c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 10 21:29:11 2023 -0700
run prettier
commit cefbca4753a7d98f93f57a6452a09f6308e2fe27
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 10 21:16:07 2023 -0700
docs on making plugins
commit ad3f7b2d5fe15af2626250463994f5a9e9ba6d0a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 9 09:18:44 2023 -0700
format
commit ebf3263b7efacc9ac499f3f1f1bbc91451899ae0
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 9 09:10:40 2023 -0700
update npx quartz update script
commit cea6834fef54da59fc1692d1db0221b93793238f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 9 00:26:33 2023 -0700
profiling, better concurrency heuristics
commit 68ccd1d79de7cef275605e238238c1a80bbb074f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 8 22:53:01 2023 -0700
format
commit 49bd6bc3ffe1d3507e00bae62c12d9b045363090
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 8 22:52:49 2023 -0700
better concurrency debugging, --concurrency flag for npx quartz build
commit e4950e06a15e34134b9feb064749748080bd59a1
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 8 21:31:36 2023 -0700
fix getFileExtension missing numeric extensions (e.g. mp4)
commit e21f0f9bb97cbc4bd59f6bce0e0fce451b6d2b01
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 8 21:28:09 2023 -0700
change reading time to content meta
commit ee9ed4f2877bff1a64104b6d97ed0d51b1bb6fa3
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 8 20:36:24 2023 -0700
fix head.tsx
commit 2706a137a042b4bf932b0ace9934914f290605f3
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 8 20:18:31 2023 -0700
guide to creating components
commit 09d4eb0684eac96747778656fc4a8f8085c41388
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Aug 7 23:57:24 2023 -0700
fix notes
commit 533d68e642ca82b540d57a449d0e2c98ed921d6e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Aug 7 23:56:50 2023 -0700
most of creating components, increase legibility of bold in article and callouts
commit 774a162850883468052fd5c5a79cf8786bd96989
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Aug 7 21:51:23 2023 -0700
format
commit 2ac5dd49da34d33e4086630d371cbaf1ed294153
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Aug 7 21:51:06 2023 -0700
fix regression in code block font-size boosting on safari mobile
commit 527ce6546e7ec50e7720ff7b9b6ff79a89c3b7fc
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Aug 7 21:41:18 2023 -0700
various css fixes, fix new image loading bug when previewing, path docs
commit d02af6a8ae4c3bea4c94ad63c118d517318146fe
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Aug 7 17:34:38 2023 -0700
architecture, fix vendor prefixing
commit b4cacd59569c066c52bbe163165c2a30d6ce3ad0
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 6 22:07:33 2023 -0700
format
commit cd9dc6ecb570c08291e73d9db001e6068df4d88a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 6 22:07:08 2023 -0700
fix css transforms for mobile
commit d8d9dd22c9e81f344f3ab56f7262d804c2720fcd
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 6 20:52:17 2023 -0700
fix shortest path for non-md files, mobile fix
commit 075ac33474d5d439b01daf5392738a3ea810b86d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 6 19:54:11 2023 -0700
note formatting
commit 3adc73a703142b3c0475570e4de16701b2797524
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 6 19:52:30 2023 -0700
docs upgrade, ci changes
commit 028bcec62c3ca019a96783f17eaee1ecce6e092b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 6 17:09:29 2023 -0700
mobile fixes, fix bug when linking to anchor on home, docs
commit db6054a8c19703345cfdd6dd4a08f35986c14acc
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 5 18:00:52 2023 -0700
format, remove markdown from being procesed
commit a0d651d64dfd766157324fd86791da2168028cf2
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 5 17:53:29 2023 -0700
reverse query param hack to re-add sourcemap support
commit 1da467d2143a260af8e5b7d2d2f68f0fcaa0260c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 5 16:43:50 2023 -0700
non-admonition callout fix
commit 7c09627df4bd61e3b4fbd6fd84a1971b40ff72b3
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 5 15:34:10 2023 -0700
improve hot reload robustness
commit c402f0c3857a75cc101c3459866c94e646fd2957
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 5 11:28:09 2023 -0700
more robust error handling, config hotreload
commit 9e76b257d4be4b9e6ea7b514074ef74d8d125f4b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Aug 4 22:35:21 2023 -0700
fix mermaid initialization
commit 21a7ec23078c04601acc4741ee141d7560e0d6f2
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 3 23:36:00 2023 -0700
bump mathjax version
commit 6423f85614dc87a320625d2efe2088d648c127ff
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 3 23:28:34 2023 -0700
fix execsync
commit 3a2eae0a16cfc275182f8a26af0a77f0e9bd07c1
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 3 23:24:34 2023 -0700
fix fetch flags
commit 2acfb9e8701d2b001a82a6af75969a1df7d97b67
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 3 23:08:04 2023 -0700
format, add upstream
commit 93986c6e7c8893ae3068bb3ea2ba187e5e1d6f43
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 3 22:29:46 2023 -0700
update pull strategy
commit 4877a9c934201e8f0e4e83821efe2dc3f9299d9a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 3 00:08:13 2023 -0700
fix callout aliases not being used properly
commit 6457496b4b8222d95d9b5ab47e8eda62d7241739
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 2 23:42:49 2023 -0700
readme fixes, force
commit fdf1e2a41d079c4f2d1f3df7c297fa0d92a18cc9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 2 23:29:28 2023 -0700
use checkout for pulling updates
commit 663c41fa41faad1528335a18c73a197ed5c6ea11
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 2 23:04:26 2023 -0700
use posix style paths for all path ops
commit de72dd4e4af550cd72847d7cc0924a5859edb9e1
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 2 22:16:46 2023 -0700
format
commit 5537ca41e0069725e98ef9ad59a2d4dbaa0bd8ae
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 2 22:16:32 2023 -0700
use autostash and pull
commit 558a50916446746768fa43bbdfc8e229d8ec7759
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 2 22:11:46 2023 -0700
format
commit d7842e0ce713e338f21374cea407a46cace18cca
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 2 22:10:13 2023 -0700
make path and globbing more platform invariant
commit 264ea3d54438b30bc7d9280e076e3f6e29d0ff8c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 2 20:59:56 2023 -0700
add gitattributes for windows
commit 0a33ff7a82658ecc6db3bb881db167f69893499c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 2 20:56:31 2023 -0700
fix test matrix for ci
commit 429f331c212d598b0d7ff44f20f75cf007bcf32b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 2 20:53:13 2023 -0700
make ci also run on windows, re-add css minification
commit 9a0f20012a8f5051aa2faac62f91dc4f2a38151c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 2 00:07:41 2023 -0700
windows patches
commit c8c108c7f702ca3710733d6d455ca2661e13e8d3
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 1 23:29:58 2023 -0700
change default strategy to be rebase
commit aaae7d46c21491397b1f723d5ae16cff4f258544
Merge: a70e846b cbae88fc
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 1 22:48:32 2023 -0700
Merge branch 'v4-alpha' of https://github.com/jackyzha0/quartz into v4-alpha
commit a70e846b0a14f3065bbf613221fee0e3b09c12ef
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 1 22:47:16 2023 -0700
flag to allow ofm replace in html embed
commit cbae88fc4e9b98764cfccca2e85f265c4b894573
Author: Adam Brangenberg <adambrangenberg@proton.me>
Date: Mon Jul 31 05:08:32 2023 +0100
Removing redundant properties (#356)
commit cc7950267089648e4329531105fe5f8ba011b1b4
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jul 25 23:37:24 2023 -0700
make layouts simpler to think about
commit 45f9087f03fde7e7d762e25a9f2966d1e6e907f3
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jul 25 22:27:59 2023 -0700
fix checkbox/tasklist styling
commit 1c1a56902371d20e35ad3849cc806a2272f8e8df
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jul 25 21:11:06 2023 -0700
fix formatting
commit cee2883c0889a65e2786d70eb81932f5ed017e59
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jul 25 21:10:37 2023 -0700
nested tag support and tag index page
commit c0278a8c65d74441a6237e0a90c08f8b7b263d95
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jul 24 21:54:47 2023 -0700
font loading options, optimize css
commit e82ba97a396e4e9d77486b48e6ee8b1dfd1c1b4c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jul 24 00:07:58 2023 -0700
actually add processed tag to frontmatter
commit 041a4ce7bc39c65483eaeeddc97e6946cb49f540
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jul 24 00:04:01 2023 -0700
fix watch-mode batching
commit 569ff1a801f92c0761b5ddc9dbff52833b193c94
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 23 21:53:34 2023 -0700
npm i on quartz update
commit 351b4ab13be6b1e43eb286ffac2646d0479ba678
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 23 21:41:09 2023 -0700
styling fixes for stacking order and overflow
commit 4811500b1b9c169aac82254d771677cd6dc2a86c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 23 18:20:43 2023 -0700
make component resources a proper emitter
commit 236ba56be17f53f701fcfc6ca81b867defa433bd
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 23 17:59:44 2023 -0700
version bump, update doc
commit 7c2bb4ee4c4ee4d6abc8f7f3757d40c039a1bcac
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 23 17:58:35 2023 -0700
bundleinfo flag, minify scripts
commit 8fd75ffbfda30edd5a134a1fbf9b81ac3cebb2ff
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 23 17:42:00 2023 -0700
support attachments folder
commit 55a1fb8c41b6a34cc5cdfc5ec2533ed1f642211d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 23 17:09:12 2023 -0700
format
commit 9e83af04a78d5988bd517bcc61c48998bbfa17ef
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 23 17:07:19 2023 -0700
refactor static and asset emission to be actual emitter plugins
commit 000eb4c3c0ce6451702202824b49f609a45ab6f6
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 23 15:37:06 2023 -0700
update feature list
commit 5599eb590e1b9163d41847153545764ed9b02ff6
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 23 14:02:57 2023 -0700
feat: process tags in content
commit ae2e3b463a91d94caa8bdf62e5c3a3d726b8b4e4
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 23 11:49:26 2023 -0700
improve error handling while serving
commit fd7c33c5372dd61283fc44f4dccbff0e71fcbf5b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 23 11:19:15 2023 -0700
style fixes for search bar and title on mobile
commit 76fdb3b4d8f2060cf742911d28c0654fe7280609
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 23 11:04:20 2023 -0700
fix styles
commit 27a5f7ef8ef0b52ade767138ebd1e202f8b66476
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 23 11:02:45 2023 -0700
various typography and styling fixes
commit ab228748abb85474a1c1f5f9410ad8e1167e2c23
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jul 22 17:42:13 2023 -0700
oops actually use npm run check
commit 76fa9bbe00eba4249b12ef7c86ccdac4faa6051f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jul 22 17:39:10 2023 -0700
run prettier on ci
commit 7db2eda76cf51fd631d385c12a7b411339406067
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jul 22 17:27:41 2023 -0700
run prettier
commit 2034b970b649b37347921842b5223a7274e34d89
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jul 22 17:26:03 2023 -0700
configure prettier
commit 8dd73704e6e95254d2addf51fede6329f90796b8
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jul 22 16:06:36 2023 -0700
hot content reload
commit b7966ff7fa2829ac9d128f1d560a2b98149514ac
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jul 20 21:51:55 2023 -0700
update features list
commit 01d7d8e55448abe0a929d8730c735bed5d929048
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jul 19 23:03:59 2023 -0700
fix tag pages to emit to tag/index.html to override content and folder pages
commit 83d47f7aaa247371ad8a51b8d5245afe8f4af620
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jul 19 22:00:44 2023 -0700
rename github action
commit 76c092dcf20959bc52fcb13b28cee50cd4217e40
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jul 19 21:59:48 2023 -0700
add custom.scss
commit 410fc9c8d37b0c4118c70678db5d2e55a842f486
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jul 19 21:59:39 2023 -0700
quartz update and quartz sync
commit 8e0ba45789a81ee28f6c67468f7fcf9ea45832db
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 16 10:39:35 2023 -0700
add link resolution prompt to quartz create
commit f82282367efd41192716fbb89e5a8756ff73bd5a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jul 15 23:33:06 2023 -0700
treat _index as index
commit a3e4c86a4cf18e31fe5b65d57ce120174c9f6aee
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jul 15 23:05:17 2023 -0700
fix ci, disable strict path type checks by default
commit 3ac6b42e16dca5a44ed3fec2c0314f1dbbc2322b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jul 15 23:02:12 2023 -0700
finish path refactoring, add sourcemap + better trace support
commit 906f91f8eed5e91a7afae95c7002a3e4553d6aae
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jul 13 00:19:35 2023 -0700
base path refactor, more docs
commit 08f8e3b4a4879dd7c91c16fbce80c4f2bc5e357f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 9 19:32:24 2023 -0700
docs + various polish
commit b90590b9f487cdd49f019375fa5a09aad2e8ec1f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jul 8 14:36:02 2023 -0700
polish
commit b3480bdc49120010da8d2805df02cbf84ca08bdc
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jul 6 19:18:18 2023 -0700
fix styling for bullet points
commit 9cbacca2d4062e2b2e512f761ab580218c623b33
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jul 6 18:45:38 2023 -0700
handle dates as tags
commit 05d1ca01c39e18fa08776d4800e201abf8779f3c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jul 6 18:32:48 2023 -0700
handle string tags
commit f7bf4038dc7fcf3adc09697797da1c68c932eadc
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jul 6 16:56:30 2023 -0700
fix path parsing
commit 465804a389f77807f68ca048cf9d7fac1314d8c5
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jul 5 00:16:06 2023 -0700
basic docs, remove publish, add quartz create
commit 92ca78709227c6117797c52eada7d471bb4ba96a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jul 4 18:26:11 2023 -0700
fix default callout state
commit fe2852ff258eabfab49af98619c9b5b9f41e004c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jul 4 18:08:36 2023 -0700
update package
commit 974b0da3086d21aabf5ef1a3eefa50675c0d4e95
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jul 4 18:02:59 2023 -0700
folder and tag descriptions, re-enable relative pathing
commit 2a17431460770b3375b455815f503781f7448c20
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jul 4 17:14:15 2023 -0700
fix popover zindex
commit 38cff2d670ecf7fd325aaaf776a4c250a72cc661
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jul 4 16:48:36 2023 -0700
more visual polish, adjust colours and spacing
commit ab9da02c60c962128820e6874e6f07c98bc3dda7
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jul 4 10:08:32 2023 -0700
fix indexing causing main thread freeze, various polish
commit e0ebee5aa9b3646de722f139f1d8d15591df538e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 2 13:08:29 2023 -0700
various polish
commit 4c904d88aba14d0d153bfac364630ad61832a73d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jul 1 13:35:27 2023 -0700
rss + sitemap
commit ba9f243728cab171f86b40b9d50db485af272a39
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jul 1 00:03:01 2023 -0700
tag and folder pages
commit 24348b24a94c5f9ca285642b751e6798b92eedd9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jun 19 22:50:25 2023 -0700
fix: parsing wikilinks that have codeblock anchors, scroll to anchor
commit fd5c8d17d3b3cd0a13b0a21a2b78d85010e02e12
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jun 19 20:37:45 2023 -0700
basic search implementation
commit c4cf0dcb022ff826433b63b8ff68830bb8503895
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jun 18 10:47:07 2023 -0700
local and global graph
commit 8bfee04c8c6948a88114d53769d4bb89b8ec7bf5
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jun 17 16:05:46 2023 -0700
popovers
commit cb89cce183215f6a8edcb6d166875e2982586002
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jun 17 14:36:06 2023 -0700
basic left,right layout
commit b5877824500a19c721c93eedc59704db94487a94
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jun 17 13:08:06 2023 -0700
collapsible callout
commit 6d5491fdcbccfad7af6c6dcc63ce2f67abd3850c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jun 17 12:07:40 2023 -0700
collapsible toc
commit 917d5791acd6361c691902b445bdc4f7129ba3fc
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Jun 16 19:41:59 2023 -0700
modern toc tweaks
commit 9d2024b11c7c24ec8112b5019504fc44b4e1a297
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jun 12 22:41:42 2023 -0700
taglist, mermaid
commit 2bfe90b7e64839d8ec6319fe93b76472b0285114
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jun 11 23:46:38 2023 -0700
add config to components
commit 352075ae81a3304a7bfa2512ef69b1cdacb26c12
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jun 11 23:26:43 2023 -0700
refactor plugins to be functions instead of classes
commit b8c011410d6bcd6837f4efd6a3948196a0f7aeea
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Jun 9 23:06:02 2023 -0700
toc
commit 3a29f4c86ee7ed13fb8683b2728a856581e32de7
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Jun 9 19:58:58 2023 -0700
add custom spa solution
commit 59109a8c1d505f516d50d6b7f88cfe070bc1ca84
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jun 7 22:38:45 2023 -0700
add flamethrower router
commit 317cce9314ad78d90714dc55aa82a2c3dfa75d1a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jun 7 22:27:32 2023 -0700
generic quartz component for layout
commit dde36fa5589a362b60b7b72eb7793a3f133e159c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jun 7 10:52:53 2023 -0700
update gh actions
commit 1cb4dadf13913009660685b6f2c163c939e2a51a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jun 6 21:19:00 2023 -0700
codeblock copy
commit 0813f127a30b376c5d5552a8cdb6e5cad5969c38
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jun 6 20:58:26 2023 -0700
fix darkmode script load
commit 4d3579ca9876d3ca6612589d116c3a300a60b446
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jun 6 19:48:37 2023 -0700
darkmode scripts
commit 89e0311a98732201651a6a6c1eea3e9656e28fb2
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jun 6 00:00:38 2023 -0700
embeds
commit 700036e84c805ab0a59f88b368006a28a97b76d1
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jun 5 22:14:17 2023 -0700
callouts
commit 1406ee0f05dc688e1b7635d3ce14e63d1c42a973
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jun 4 13:37:43 2023 -0400
update spinners
commit 9ad89997a533744695b380b315f1f70293bb30c4
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jun 4 12:35:45 2023 -0400
multi-core builds
commit 4bdc17d4a11f0ba517c6d9124d296458332c536b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jun 3 15:07:19 2023 -0400
inline scripts
commit fcd81353f88b613e5e93c089e10e530d08695b3f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jun 1 19:48:38 2023 -0400
heading linking
commit 04eeb2d10c2bb8cac595a879446c1dcbfac4d6a6
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jun 1 19:05:14 2023 -0400
syntax higlighting
commit 42d3a7de1711bbd40a2b6857e3bf7ff17685f5d9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jun 1 17:35:31 2023 -0400
scss support
commit c1c46ad67e58884389fb59c17d81845fe0fbcad0
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jun 1 12:33:20 2023 -0400
obsidian flavored markdown support
commit 3636c052eb054d93a8a3ddfb9fdd873d5fe83a5d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed May 31 17:41:44 2023 -0400
link processing
commit 21c007e2fcf73fe4ef04dd07db7116afed46047a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed May 31 17:01:23 2023 -0400
rendering, link resolution, asset copying
commit ad6ce0d73fbd015e00e59ec30bda3cc8de777832
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue May 30 08:02:20 2023 -0700
plugin integration round 2
commit a757521313fb2c623d4dfda95eb97d3189bfe253
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun May 28 17:44:08 2023 -0700
base setup
commit 7b1da7a8456b0404ad4ebcb8afd523a6618439ff
Author: BSD-Yassin <103321053+BSD-Yassin@users.noreply.github.com>
Date: Thu Apr 27 20:12:56 2023 +0200
i18n: Update fr.toml (#313)
commit e482fa10970fd6a0c1c0ec836db84ba4187bc8f7
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Apr 6 15:06:01 2023 -0700
fix: graph and tooltip sometimes not showing
commit ba7a968881083b9d3b3b6ecd65df076e76bcb164
Author: Mattia Ippoliti <Ippolitimattia@gmail.com>
Date: Sat Apr 1 22:50:08 2023 +0200
fix: padding for empty title callouts (#308)
commit db27557aa307921cf035b7f62d9d9f2b452b1018
Author: Md Jawad Noor Asif <jawad.asif.bd@gmail.com>
Date: Thu Mar 30 17:14:06 2023 +0600
fix: search highlight not showing because for trailing slash (#306)
commit b7c305e0024ca78c1d9f9d7a5107ffc124c56ab1
Author: Mike Walton <walton.myke@gmail.com>
Date: Wed Mar 22 22:56:20 2023 -0700
adding myself to the showcase (#301)
commit 74fe4d6813dfce9760464141410b683bd8964d45
Author: Daniel Lazaro <daniel@dlazaro.ca>
Date: Sat Mar 18 12:20:56 2023 -0400
docs: Update link to callouts documentation (#300)
commit d6c31595b320562313010ca68002942ac951a069
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Mar 16 10:33:01 2023 -0700
deps: bump hugo-obsidian
commit aa5ab03d4ad6e7cb4d9efd3f9c177ebde7e4c4af
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Mar 2 09:14:29 2023 -0800
docs: update to account for github changes
commit ecba6071b899d62492c3970924bbf24c2ba951f3
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Feb 25 13:04:15 2023 -0800
deps: bump hugo-obsidian
commit 983efab94c31bb19b532e120f2f70f45f788b7c8
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Feb 12 16:46:11 2023 -0800
fix: recent notes partial sorting
commit 10e41743e5df81195479aa2dd3ba4d5fb5b1ebf3
Author: Dev Uni <wlwhsvkdlxh@gmail.com>
Date: Wed Feb 8 01:38:20 2023 +0900
fix: Bad UI due to head.html (#284)
commit bde44fadf20a1f91a466653f9552ce8bd658e2f9
Author: Simon Späti <simu@sspaeti.com>
Date: Tue Feb 7 09:16:15 2023 +0100
feat: Adding Twitter and Social image preview including description (#207)
commit 6885651f7b4504446b456a2e61a85f1b787b3873
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Feb 6 12:58:34 2023 -0800
feat: max-width for large screens
commit 7df2bb6f5e681ce3329e4faf6ac6cbcda7a3f14e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Feb 5 12:01:49 2023 -0800
fix: fix duplicate link click tracking
commit 11959de11ce76f0f47284b946a577481c0ffaeaa
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Feb 5 11:34:39 2023 -0800
feat: add more plausible events
commit a73aca8ed9c16915928206bad6fa0ccf4e9b2b8b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Feb 5 10:39:58 2023 -0800
feat: switch from GA to Plausible for analytics
commit 93610e232b366c6f6cb9695d4755fa578dc28aa0
Author: Adam Brangenberg <adambrangenberg@proton.me>
Date: Wed Feb 1 21:34:18 2023 +0100
feat: Remove leading slash of folders in graph view (#282)
commit 712dab5c8cd8933d9cdb63d4c833940c461a09da
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jan 31 11:00:28 2023 -0800
docs: remove broken links from showcase
commit 77b3907b23b6d453dd7bfa04e4cef6f28d68ca54
Author: Olivér Falvai <ofalvai@gmail.com>
Date: Tue Jan 31 19:48:20 2023 +0100
docs: Clarify Obsidian settings (#280)
commit 8fc63586c428f1d9dcb1e084c0d9a48802b15582
Author: herrwinfried <ozgurarslln@icloud.com>
Date: Sun Jan 29 23:14:11 2023 +0300
feat: Added Turkish translation (#275)
commit 24c9777a5202a9fc9a86525955ba08ec3b2dc6ec
Author: Apoorv Khandelwal <mail@apoorvkh.com>
Date: Sat Jan 21 10:01:05 2023 -0800
feat: Embedding multimodal assets (#274)
commit 7a8811a184c8bd6206ee041d6486b7e456d5a84a
Author: Quadrubo <71718414+Quadrubo@users.noreply.github.com>
Date: Wed Jan 18 17:25:01 2023 +0100
added the liveReloadPort as an option for docker (#272)
commit eb2f6aeca891135389e58da0016c60af1363df61
Author: chaosarium <38693485+chaosarium@users.noreply.github.com>
Date: Mon Jan 9 17:14:11 2023 -0500
Fix callout behaviour inconsistent with Obsidian (closes #168) (#268)
commit b78008532f09dce26018ea7ea544f0e40d36756d
Author: Md Jawad Noor Asif <jawad.asif.bd@gmail.com>
Date: Tue Jan 10 04:12:52 2023 +0600
feat: Added Bangla translations (#266)
commit c5b103c85feafa96d5e5ecc572b043331d4a6bd4
Author: Md Jawad Noor Asif <jawad.asif.bd@gmail.com>
Date: Wed Jan 4 09:10:25 2023 +0600
fix: fix unicode broken tags (#261)
commit 614a6222a1638c159d2ac9c005be5b2ddec78dd2
Author: Adam Brangenberg <adambrangenberg@proton.me>
Date: Thu Dec 29 16:43:41 2022 +0100
refactor: General performance/style improvements (#262)
commit dc4373789617a58d517eac59c3e60fabb47eafd0
Author: chaosarium <38693485+chaosarium@users.noreply.github.com>
Date: Sat Dec 24 12:10:59 2022 -0500
fix edge cases link processing (#258)
Fixes https://github.com/jackyzha0/quartz/issues/176
commit ea37486309409048681496fb2449c1182d0f44eb
Author: toof <toof@toof.jp>
Date: Sun Dec 25 00:38:49 2022 +0900
fix: fix misspelling (#259)
commit c1b0eafce668c0c7498a5875c23c074eeb71e842
Author: chaosarium <38693485+chaosarium@users.noreply.github.com>
Date: Thu Dec 22 13:34:21 2022 -0500
feat: Added simplified Chinese translations (#257)
commit ce5df837f5f6ed57f9e9f85439ee9a40ebf234dc
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Dec 3 21:03:12 2022 -0800
feat: latex in search results
commit 4cd6f7efdf9161f1a1c7ad381d5bc4f2828eedb8
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Nov 30 18:00:12 2022 -0800
fix: text highlighting
commit 5a7936e23af000d7cefbf2dcb2ba4c16f1f993dc
Author: Apoorv Khandelwal <mail@apoorvkh.com>
Date: Wed Nov 30 17:41:05 2022 -0800
fix: Replacing "internal-link broken" with link to asset (#232)
commit 5fd707714faaaac5c3d39ec056ff88446fcb3cc2
Author: Jon Erling Hustadnes <jonerling.hustadnes@gmail.com>
Date: Sun Nov 27 19:55:43 2022 +0100
feat: Added Norwegian localization (#242)
commit 717a13a580fb82063d40525bcc63cd1d36f5994a
Author: Filippo Andrea Sighinolfi <83777862+Sighi-04@users.noreply.github.com>
Date: Sun Nov 27 19:55:13 2022 +0100
feat: Added italian localization in i18n/it.toml (#239)
commit 5f3d4306997e87437b4c9de97aa9eed355133965
Author: Brendan Ang <53790951+bbawj@users.noreply.github.com>
Date: Mon Nov 28 02:53:52 2022 +0800
feat: add support for mermaid diagrams (#244)
commit 66f3e249fe90cba366a99fe08f0898af27fe59e6
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Nov 23 08:34:19 2022 -0800
fix: only run docker publish on main repository
commit e374e3abd42c1719ad1fdc6bd9c641efb2ddf954
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Nov 21 23:36:27 2022 -0800
fix: jump to search for operand
commit f08a76a738235d1ad8e0b17f74988386dcfd86cd
Author: SafEight <43656822+SafEight@users.noreply.github.com>
Date: Mon Nov 21 21:05:46 2022 +0000
fix: External links ending in .md don't get trimmed (#236)
Co-authored-by: SAF <saf@saf.saf>
fixes https://github.com/jackyzha0/quartz/issues/229
commit d80f6946c854365336062f71f0c922fb42beea54
Author: Morgan Gallant <morgan@morgangallant.com>
Date: Tue Nov 22 01:54:45 2022 +0900
fix: Semantic Search: Use Operand Beta API (#235)
commit 120d104230b1c762a57eb41240e18aee6c289c08
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Nov 20 15:14:48 2022 -0800
update config for search
commit e9aa6ae9e7ec1792b11ebcb6cac606c47ae3cf7d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Nov 20 15:09:58 2022 -0800
feat: docker docs, semantic search alpha
commit c12af32a5ade0240630ff3b9fc11d877d6a16825
Author: Apoorv Khandelwal <apoorv.khand@gmail.com>
Date: Sun Nov 20 17:03:53 2022 -0500
feat: Dockerfile and automated container build (#230)
commit de2b6b9a1b95cb6af7eb421d9a4de054e7e41315
Author: SafEight <43656822+SafEight@users.noreply.github.com>
Date: Sat Nov 19 21:17:55 2022 +0000
feat: Replace == with <mark> (#234)
Co-authored-by: SAF <saf@saf.saf>
commit 7f9f58860dc98038798e362e52c5d39c750858cb
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 19 11:18:57 2022 -0800
feat: allow enableToc to override default no TOC on a per-page basis
commit 151b9851d6828ef28ed75a40e12be01e421b94d8
Author: jet457 <abhmul@gmail.com>
Date: Sat Nov 19 13:10:41 2022 -0600
docs: add Abhijeet's math-wiki to the showcase (#228)
commit d56a58044dcc619f6e26674316e7c38fc8ace8c4
Author: saucecoat <43880196+saucecoat@users.noreply.github.com>
Date: Sun Oct 30 06:08:44 2022 +0000
Added German translation (#223)
commit 689201bfbde5bd48b001bfa2b54db6a1d5a4aa81
Author: Conor <hzk@konor.fr>
Date: Wed Oct 26 18:12:35 2022 +0200
feat: Add French translation (#221)
commit 9b72edcd9cce10d6064e4e8b2f61b7db2966515d
Merge: 8704edcc 0a602eda
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Oct 25 13:14:13 2022 -0700
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit 8704edcca2f14c8662affa5a730083949f3f5749
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Oct 25 13:14:06 2022 -0700
deps: bump ubuntu version (closes #218)
commit 0a602eda1bc0c5446dbbc2917b3c3dcd1ad99c6b
Author: Evan Cater <evan.ecater@gmail.com>
Date: Mon Oct 24 12:13:35 2022 -0400
fix euler's identity (#220)
commit 72571a75884a10cd78205d79a5e475e17a4d9451
Author: Javier Zaleta Martínez <94091554+javierzaleta@users.noreply.github.com>
Date: Tue Oct 18 19:25:55 2022 -0500
feat: Add Spanish translation (#217)
commit 3409a49f156263aa36ca866e0d2b0b16645c2162
Author: Charles Chamberlain <charlesetc@users.noreply.github.com>
Date: Sun Oct 16 12:43:43 2022 -0400
fix: Apply monospace style to all meta in a popover (#216)
commit 666ffebe90c04dc7fe064a98232538826af70738
Author: Pavol Komlos <62595149+plundration@users.noreply.github.com>
Date: Wed Oct 12 17:21:28 2022 +0200
Decode the heading id from split link (#214)
commit 8ea1525df40751af2702a508c3ecf2edf2d76107
Author: Seth <37915796+iSaluki@users.noreply.github.com>
Date: Mon Oct 3 19:45:54 2022 +0100
Add SethMB Work (#203)
commit dd11d56dd986c82914ce529fb43c8e2beb78a094
Merge: cd7e2088 169ef442
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Sep 23 10:17:34 2022 -0700
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit cd7e2088d564023b073a458282e3a63b7a108c0b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Sep 23 10:17:28 2022 -0700
feat: hide TOC when no headers (closes #204)
commit 169ef442b9ae1a61af516edc5c90ff0299d91a25
Author: Simon Späti <simon@airbyte.io>
Date: Wed Sep 14 19:05:51 2022 +0200
Adding reference projects (#196)
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
commit 8e3042df4901885b051300c5ae2131bdcc613a57
Author: DongDong Chen <cdd2zju@gmail.com>
Date: Thu Sep 15 01:05:20 2022 +0800
add my showcase : oldwinterの数字花园 (#192)
commit 2145e92b004909070bd4a20d0f9fd1c0ddc70756
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Sep 12 11:08:07 2022 -0700
fix: make latex rendering size more simialr to obsidian
commit e6c7a4e1e2e3b0437b5dbbbeb7abc4e05622db16
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Sep 11 18:03:55 2022 -0700
fix: latex rendering bugs + patch for #195
commit ca84da5b31fa00ca6c729a9b500efeb28f90b41b
Author: Nikola Georgiev <42315052+nikolageorgiev2000@users.noreply.github.com>
Date: Mon Sep 12 01:05:14 2022 +0100
feat: Hide full path to file in Wikilinks by default (#195)
commit 0d1670adbaa63e4972bd560efd3c046eb03e48ca
Merge: 5c770f96 ce55eca7
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Aug 29 14:23:19 2022 -0400
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit 5c770f965a6af0d40926640d957e7841f71b908b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Aug 29 14:23:04 2022 -0400
Update Quartz version in documentation
commit ce55eca73bdfc6c043137dcbd7a2bda24cfce9af
Author: Andrii Yefremov <56955307+decatetsu@users.noreply.github.com>
Date: Mon Aug 29 21:15:18 2022 +0300
Add Ukrainian translation (#191)
commit 591c4813ec8ee700caa45253464290d315d57603
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 28 01:09:52 2022 -0400
deps: bump hugo-obsidian version
commit 83e7aec3c9dca4dba4b25605f5c88a7a3cecf386
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 24 00:45:08 2022 -0400
fix: tag list styling
commit 25ba1159ad5cabfe79c80a40ead158c389a68bef
Author: Youssif Shaaban Alsager <ysh-alsager@hotmail.com>
Date: Wed Aug 24 05:32:40 2022 +0200
feat: Add internationalization (i18n) support (#182)
commit e38eaa94d6d0d91486bd3b778102658a36ee254f
Author: Vincent Huang <vincenthuang75025@yahoo.com>
Date: Sat Aug 20 20:31:06 2022 -0500
Popover preview should show relevant heading (#180)
commit a78926ede5a951b2ba48e506c93d25060e240c0e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 11 11:42:16 2022 -0700
feat: link previews to page-list (closes #173)
commit 5c76d8dad9d993010c4e57c6de4e90911a3cd11a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Aug 5 11:08:52 2022 -0700
fix: make callout detection case-insensitive (closes #171)
commit 3dcc1f1106c1ad81cf6cd0a45f51249d719d694f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Aug 5 11:04:01 2022 -0700
feat: better graph scaling (closes #170)
commit ff770927fdbb13e07572b3993686686da4493cc9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 4 14:50:24 2022 -0700
style: _callouts.scss simplification (#169)
commit 7ffc907907b14722bf691d1cbd5f178c1c0943a6
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 3 23:46:55 2022 -0700
fix: CJK search (closes #163)
commit 6dd4c64a4c09eed71718fe67491dda95f286d345
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Aug 1 07:59:49 2022 -0700
fix: highlights being stripped in non-semantic search mode
commit 8fc6b8e28ebd08eb05aea80e602b9f279f660b5b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 31 18:21:17 2022 -0700
docs: update, re-added debounce
commit b10b23a47bb822bc3eee671d24fd954ec8d74a7d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 31 18:02:06 2022 -0700
docs: add documentation for Operand Search, remove debounce
commit 23380d0519365d09cb629a66fe2ccba1c56e91f2
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 31 16:55:25 2022 -0700
fix: title not being selected properly, bump hugo-obsidian for uri fix
commit dd047305afa0618d2a5cd11baec064a1c74ccb90
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 31 12:33:36 2022 -0700
deps: bump hugo-obsidian to fix bug of writing to non-existent directory during build
commit 54a8fd4a563bd3de815aaae2c9d9efd57e65be22
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 31 12:24:53 2022 -0700
deps: bump hugo-obsidian to properly copy linkmap
commit 5ef9aad501f17b57107a35508a093211ecf2dbd8
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 31 12:16:36 2022 -0700
feat: add support for semantic search using operand
commit 14b89105dc10eeb3b9b48abf16eda2b9420c64a0
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 31 10:54:23 2022 -0700
refactor: move search utils to util.js
commit 93d039fe7cf14246477844aa1b116585a260003d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 31 10:14:36 2022 -0700
deps: bump hugo-obsidian version
commit 234c707a93e1dbe438d0a45f1348cc6c39e2a265
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jul 30 18:46:19 2022 -0700
docs: improve scss structure and admonition styling, update docs
commit 728d8529ec1a782752abd9254fbc4cae11b8468a
Author: Emile Bangma <ewjbangma@hotmail.com>
Date: Sun Jul 31 02:29:26 2022 +0200
Support Admonition callouts (#166) (closes #88)
commit e142f37e8dea7f6f502026cc35ea02390be63556
Merge: d747b19e 1f3da4b8
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jul 19 09:03:26 2022 -0700
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit d747b19e6104def4b550d86b2ce6ce923773d8ad
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jul 19 09:03:19 2022 -0700
docs: copy edits
commit 1f3da4b8292a7c2ef7eafe9b3a00ef40eb30edac
Author: Pranav M <pranavm7@outlook.com>
Date: Mon Jul 18 11:45:36 2022 -0400
feat: edit the clipboard button to change border colour on success (#162)
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
commit e15e39155de54dc1624bab80eefbccd6a783cd0c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Jul 15 14:26:31 2022 -0700
fix: give precedence to date created over last modified if defined (#101)
commit dff5ae0d4debfdb2de226984e86a987d99d039ad
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jul 14 13:09:21 2022 -0700
style: improve header anchor styling
commit b2555ced61628008e9a1321921376c3f9fb53791
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jul 14 12:02:35 2022 -0700
feat: add description section to section/term/taxonomies, fix header margin
commit 7ccff2cf3d4f7a96be2cf890093798067951fd2e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jul 14 11:49:47 2022 -0700
fix: styling on page-list for smaller screens
commit e0b6606d500e69cc52715729f075808de90f376b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jul 14 10:38:34 2022 -0700
fix: make section-li scss more generic
commit d7a42a2fd7919ac37ff98be31edc34c3511d255f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jul 14 10:30:07 2022 -0700
feat: improve styling for lists, fix anchor offset
commit 422b6cc25bec38785e52f304261f7a7f392ec9e4
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jul 13 23:51:33 2022 -0700
feat: css typography improvements
commit 22c8981bb9a97743f02ab5d5feabda7ff5a6afc4
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jul 13 23:37:54 2022 -0700
feat: css refactor for easy font change
commit 8b2a82a96a2c7c3f40fd5648c756db3408947fdb
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jul 13 22:27:13 2022 -0700
fix: change / to use base url
commit 81af8c459bc9924b8c7137aee9385ed5f5deeb3c
Author: y1450 <107429941+y1450@users.noreply.github.com>
Date: Thu Jul 14 00:02:11 2022 +0200
fix: remove console log (#159)
commit ffe22689eb43f42afc2d6bcf9b8b190b19a7e5d1
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jul 13 15:01:50 2022 -0700
feat: use floating-ui for better popover positioning
commit c1b8fe1221e3367f0632ce43f602e811c0fd0284
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jul 13 14:32:32 2022 -0700
feat: restyle search icon
commit b7a619bbd73f9220f8c1fcbad203792c78343464
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jul 12 14:37:10 2022 -0700
fix: tabsize not being respected
commit 74993d19b72aee78e89b0b13b8f1d4a72fe5fe29
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jul 5 15:42:57 2022 -0700
docs + fix: broken partial and description of enableGitHubEdit
commit 25a4d3b6e17c2a5f6a935446ea97d06a323f71f6
Author: rphla <101242699+rphla@users.noreply.github.com>
Date: Wed Jul 6 06:39:29 2022 +0800
Add GitHub "edit" button (#157)
commit aaf31f419eb167dbb7582fb103be29f0bef95ba9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 3 11:50:13 2022 -0700
fix: copy code block logic for non code pages
commit f54df35767dcda9bc4853decff86d57323593685
Author: Geoffrey Garrett <g.h.garrett13@gmail.com>
Date: Sun Jul 3 20:42:35 2022 +0200
Copy to clipboard feature for code block (#152)
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
commit 015ed4cfa2db4636e03debcda0d4201f24346098
Author: Aiden Bai 白宇彤 <aiden.bai05@gmail.com>
Date: Sat Jul 2 19:40:18 2022 -0700
Fix `width: auto` for SPA routing (#156)
commit a8137edf247c46ef3a5af78c48bcd299a13c1a7d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jul 2 17:14:17 2022 -0700
fix: adjust weird colours for err highlighting
commit eda370334a3798070c2f79ec38021edb3b33a84f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Jul 1 11:27:50 2022 -0700
fix: image scaling for md-style links (closes #155)
commit d3e20b8b94c9229e94fccbe54c867efde6847c6e
Author: Geoffrey Garrett <g.h.garrett13@gmail.com>
Date: Fri Jul 1 20:03:52 2022 +0200
Added optional rendering of code block titles (#148)
commit 8d7a7b712f5a4ee49e3687de8fb00f76d7571368
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Jul 1 11:02:42 2022 -0700
fix: non-SPA fn defs (closes #154)
commit 0896814959e912cabaf9ec83bc0a3eb77d152842
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jun 29 17:35:29 2022 -0700
docs: remove test image from hosting
commit 8b2fba895aa804e895eaa02a622f318113a35663
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jun 29 17:34:05 2022 -0700
feat: image scaling (closes #131)
commit e884f4927f3e48285ca6689507f5e0f61072de04
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jun 29 17:17:53 2022 -0700
fix: anchor formatting (closes #141)
commit 2b0482ae4c5ef7d5c7cc5d33419c1fb440c0238a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jun 29 17:03:41 2022 -0700
docs: fix page weight
commit 8a100edeb81382dc838f600ee1b8dbd3e7560e37
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jun 29 16:57:36 2022 -0700
docs: polish and update
commit 200c60514207d7970968e31740797fad76f56ee7
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jun 29 16:16:06 2022 -0700
feat: enable raw html by default (fixes #143)
commit f2078ee621b7137c49b176156ff70ddb5359d5a8
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jun 29 16:12:33 2022 -0700
fix: prefix images with base url for non-root quartz
commit 916c51c19c3aa5406cf1d5062f10a0b858f487cc
Merge: 72941965 67a7ba37
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jun 28 23:21:25 2022 -0700
Merge pull request #150 from aidenybai/bump-million
commit 67a7ba37e899ca0555fa37e159af6d599cf468ee
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue Jun 28 21:43:28 2022 -0700
Bump million to 1.11.3
commit 72941965abc135f8df28b47a90a7b2965fb075bd
Merge: 34b03537 b732293f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jun 27 16:27:57 2022 -0700
Merge pull request #146 from geoffreygarrett/hugo
commit b732293f65999e9a1d3a40a5ddeccf53a385b1f3
Author: Geoffrey Garrett <g.h.garrett13@gmail.com>
Date: Tue Jun 28 01:21:22 2022 +0200
fix(head.html): Adds robustness to `config.yaml` favicon definitions
Initially assumed that `href` definitions should have `/...` as their
pattern, and `baseURL` would always end with `/`, however the omission
of `/` as the prefix of the former and suffix of the latter
simultaneously, would result in broken favicon paths. Final comment:
`..///...` is not breaking, which is worst case scenario with this fix.
commit 7070a1992a6c9462d50afcc7139f8f97e1dce2b8
Author: Geoffrey Garrett <g.h.garrett13@gmail.com>
Date: Tue Jun 28 01:15:33 2022 +0200
docs(config.md): Fixed multi-favicon examples and general favicon explanation throughout
commit 997937af5a6dc317da56ae294dce927ec5930a4b
Author: Geoffrey Garrett <g.h.garrett13@gmail.com>
Date: Tue Jun 28 00:45:48 2022 +0200
docs(config.md): Added short explainer on favicons
commit a334b45b17f0966214d44a5b775c273e1ba7874b
Author: Geoffrey Garrett <g.h.garrett13@gmail.com>
Date: Mon Jun 27 22:05:35 2022 +0200
docs(content/notes/config.md): Adds documentation for the new favicon support
commit 473ea2c66f9122cec2647c281ca47cc073ca5fd0
Author: Geoffrey Garrett <g.h.garrett13@gmail.com>
Date: Mon Jun 27 22:04:32 2022 +0200
feat(layouts/partials/head.html): Adds general favicon support with dict and string input format
commit 34b0353797a0d24c309139034918ad2060f504f5
Merge: dbd4fb75 52a185f7
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jun 7 08:43:52 2022 -0700
Merge pull request #140 from DhammaCharts/hugo
commit 52a185f73b18d8e5a564c2144401de750b0e025a
Author: DhammaCharts <100090806+DhammaCharts@users.noreply.github.com>
Date: Mon Jun 6 16:49:01 2022 +0100
change enableGlobalGraph to false
commit 69c74ca6b5854cbb3e7dd895dca0539f51f49720
Author: DhammaCharts <100090806+DhammaCharts@users.noreply.github.com>
Date: Mon Jun 6 16:48:16 2022 +0100
minor adjustment
commit ab809249c8f57c1980de2fa850eef66301619307
Author: DhammaCharts <100090806+DhammaCharts@users.noreply.github.com>
Date: Mon Jun 6 16:42:53 2022 +0100
Update layouts/partials/head.html
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
commit 84c75d05460dd2974ff04a43f6a770fc31deca63
Merge: a275123b dbd4fb75
Author: DhammaCharts <100090806+DhammaCharts@users.noreply.github.com>
Date: Mon Jun 6 12:56:47 2022 +0100
Merge branch 'hugo' into hugo
commit dbd4fb7595055551118e7dab59a11459bcdc3d9b
Merge: 84c6e1ef a1293f82
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Jun 3 10:59:18 2022 -0700
Merge pull request #139 from aidenybai/prerender-latex
commit a275123be2b1d528dbde23beb9880933c4e22c3e
Author: DhammaCharts <100090806+DhammaCharts@users.noreply.github.com>
Date: Thu Jun 2 08:35:28 2022 +0100
better font behaviour
commit c88f31c3645bb0002171bf21850c7ca6d217c73f
Author: DhammaCharts <100090806+DhammaCharts@users.noreply.github.com>
Date: Thu Jun 2 08:16:02 2022 +0100
change to object destructuring for drawGraph() arguments
commit d261655d96f9ed084a176ed113b0d11f1351c6de
Author: DhammaCharts <100090806+DhammaCharts@users.noreply.github.com>
Date: Thu Jun 2 07:49:09 2022 +0100
remove unnecessary ternary
commit c0800a874980ab0f24fc2e350d70792d9c7f2956
Author: DhammaCharts <100090806+DhammaCharts@users.noreply.github.com>
Date: Thu Jun 2 07:45:44 2022 +0100
change baseURL back to original
commit ac0dd50c048d68884b0ada42e3ab0476fb29ef65
Author: DhammaCharts <100090806+DhammaCharts@users.noreply.github.com>
Date: Wed Jun 1 21:30:40 2022 +0100
uncomment window.Million
commit e809896338b51e65ca862809e79884469476f2de
Author: DhammaCharts <100090806+DhammaCharts@users.noreply.github.com>
Date: Wed Jun 1 21:22:31 2022 +0100
increase scale
commit 19606ba63d15edd1e4a98bf1ce5cd510a24880e0
Author: DhammaCharts <100090806+DhammaCharts@users.noreply.github.com>
Date: Wed Jun 1 21:19:03 2022 +0100
add www.
commit 1e237ef677f3b958597460175269eed4b0638112
Author: DhammaCharts <100090806+DhammaCharts@users.noreply.github.com>
Date: Wed Jun 1 20:15:44 2022 +0100
change baseURL
commit 5a1fbc937470b4f43b318dd0fa9af01b4a47b188
Author: DhammaCharts <100090806+DhammaCharts@users.noreply.github.com>
Date: Wed Jun 1 13:49:27 2022 +0100
Improve graph display, options and ability to have a global graph on the home page, local graphs on subpage.
commit a1293f820a733978f1da8ebd13e676f46634f60d
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Sun May 29 20:40:44 2022 -0700
Prerender latex
commit 84c6e1efed856b2e03100e4cfd88f2d9cd44cb9c
Merge: 775a1b24 8673a7bc
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat May 28 23:27:54 2022 -0700
Merge pull request #138 from aidenybai/add-footer-config
commit 8673a7bc3d1061eb11381e8d7e85dd0d2e1fa64c
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Sat May 28 22:52:18 2022 -0700
Add option to toggle footer
commit 775a1b2490883e1eefa1c87f5477007365d694d6
Merge: cbc2bea4 006b74ec
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri May 27 19:21:05 2022 -0700
Merge pull request #137 from aidenybai/fix-non-spa-routing
commit 006b74ec6feed2d01099754c888bac4a9474a6b1
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Fri May 27 18:45:42 2022 -0700
Fix formatting
commit 8aba612a0013e84f0b3f9d60863c02ad1b0bfd6e
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Fri May 27 18:42:01 2022 -0700
Fix non-spa fallback
commit cbc2bea413ddf58c6316e49c45b5a5a55f4271e2
Merge: ba586adc ae240ff8
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri May 27 18:32:49 2022 -0700
Merge pull request #136 from aidenybai/custom-progress-bar-color
commit ae240ff82cd8de66c28b1608e72db6ed397cab13
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Fri May 27 18:31:36 2022 -0700
Remove redundant CSS rule
commit ba586adc76df6d75048a61e5dd529704496f6bda
Merge: 232bd2f0 159deabf
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri May 27 17:14:55 2022 -0700
Merge pull request #135 from aidenybai/bump-million
commit 159deabfe160c7570679269873f18776cb586437
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Fri May 27 16:14:17 2022 -0700
Bump to 1.9.6
commit 44984cdaf4dfca8c25e9b73066ee22c775ed6d2e
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Fri May 27 13:27:13 2022 -0700
Add support for progress bar
commit 683cb53cbd4d581a061b64a26da54285ef479e19
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Fri May 27 13:19:19 2022 -0700
Bump million to 1.9.5
commit 232bd2f016f7d57602fe39703407100f5d26f278
Merge: 0293c122 e0fd9570
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri May 27 11:01:20 2022 -0700
Merge pull request #134 from aidenybai/add-prefetching-within-graph
commit e0fd9570d746cb2aa270dbe64dae038fc02bdbac
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Fri May 27 09:49:28 2022 -0700
Bump million to 1.9.4
commit bc32bbeaed10eac3094fcaa899ca626dc8e56771
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Fri May 27 09:02:01 2022 -0700
Bump milliomn to 1.9.3
commit efb6c7845f0a2743dd07b81f1d03b03d058ede0d
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Fri May 27 08:40:00 2022 -0700
Add prefetch to graph
commit bd316d8249f096c4d5616d682f142f49d4ca914f
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Fri May 27 08:39:44 2022 -0700
Bump million to 1.9.2
commit 0293c122177bf8c595cda8b4dfb513d90b1e6b03
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon May 23 22:25:13 2022 -0700
feat: recent posts section/partial
commit 0439c163a03fc50487fbe1cbfc09dc38af7ed2f2
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri May 20 16:50:56 2022 -0400
fix: js not executing if spa disabled
commit 0b6711c2185abbde7e95125b672ee8b5d827cb8b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat May 14 16:47:50 2022 -0400
fix: tag boxes overlapping for content with many tags (closes #130)
commit ed9a8efd1ff4ee569fa4256e044151670abaea82
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu May 5 21:11:23 2022 -0400
fix inline link highlighting, safer latex render
commit e302f6c423136d1dbdfda48c2b241e62bb5654e7
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu May 5 20:35:32 2022 -0400
fix: more generic style to match bad nesting generated by popover interp
commit b21b27d1d3d68bfb4d285f39122a154fceefb9ab
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu May 5 20:30:55 2022 -0400
fix: clean wikilinks and render latex in popover
commit 364aee36fc8891c48ab2bd20c396ce321cd7a0a6
Merge: cea0f3eb 8b855b52
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu May 5 01:03:09 2022 -0400
fix: merge conf
commit cea0f3eb743b26db0d5297ab10e229617585fe0c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu May 5 00:58:50 2022 -0400
feat: contextual backlinks (closes #106)
commit 8b855b522ac472b666379743dafeace6ae37fb1a
Merge: b67a389b 7b3696b8
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed May 4 11:40:38 2022 -0400
Merge pull request #125 from aidenybai/fix-latex
commit 7b3696b877c33f8dc605be1f4f4a688fe0df5b84
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Wed May 4 08:39:25 2022 -0700
Remove pnpm debug log
commit b4ff12ca0b1b5179c20a1ea57f182caa703b0826
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Wed May 4 08:10:59 2022 -0700
Fix latex
commit b67a389beacfade21276461f3e275c07969664e5
Merge: a0997444 2b5c03c9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue May 3 13:59:02 2022 -0400
Merge pull request #124 from aidenybai/hugo
commit 2b5c03c97286e06e94e8a27634678e64473a2ec8
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 10:55:45 2022 -0700
Remove redundant URL construction
commit aaed5dc1f1849a54869743596a6133548e83392d
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 10:54:39 2022 -0700
Support /path root sites
commit 1a5d158fce648492c48644acfea039261ac1dffa
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 10:38:41 2022 -0700
Support active node with other data at end of url
commit a09974446d5be617267c2e6ad8c956e88ce83176
Merge: 03742621 9fc71603
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue May 3 13:21:32 2022 -0400
Merge pull request #123 from aidenybai/fix-popover
commit 9fc71603ba3fb58239e7c2647c92996076442900
Merge: d38f9bec 3789df80
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 10:18:41 2022 -0700
Merge
commit d38f9bec70c7e46d9e7662ba3925abc9cdd9370a
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 10:16:09 2022 -0700
Rename API and generalize router API
commit 771ebd8031819dcaf9e3d6744643677e30c14b64
Merge: e4cc625c 03742621
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 10:07:38 2022 -0700
Merge
commit e4cc625c33ecd2992dcf60f408417c3067b4fa2b
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 09:34:27 2022 -0700
Add future note about init function
commit 3789df80e437f9e31560e7eed14e33d80e5ff3a0
Merge: 32c79a56 03742621
Author: Aiden Bai 白宇彤 <aiden.bai05@gmail.com>
Date: Tue May 3 09:33:00 2022 -0700
Merge branch 'hugo' into fix-popover
commit 037426217c5bee94f7c619f62e63d71c1f31b5bb
Merge: 6e6dd4cb e646cdb0
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue May 3 12:29:26 2022 -0400
Merge pull request #122 from aidenybai/fix-active-graph-node
commit e646cdb0be7977f31fa1d619a5b9125875c73475
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 09:27:25 2022 -0700
Use explicit regex for trailing slash trim
commit 8d092a3a4aca9561f3ac852e01518f48c8ef68fe
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 09:22:51 2022 -0700
Remove unnecessary 'url' argument in graph.html
commit 32c79a561fa82dbf6537b96e83ab3da2a848b211
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 09:21:44 2022 -0700
Remove unnecessary 'url' argument in graph.html
commit 3c660dd9b5f9e1133bc8a1228287508504b7c132
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 09:20:01 2022 -0700
Remove unnecessary 'url' param in drawGraph
commit 4cca3c1f2df91ba7bb111346447279087e04069a
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 09:04:15 2022 -0700
Peg router version
commit 9d3bbd607687899d173e9087f2782d7460ebee82
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 08:53:18 2022 -0700
Fix active node on graph
commit 9c71f07355d8e98478e755875e53596f66c58fa9
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 08:48:35 2022 -0700
Enable config for testing
commit 77485b754dbb3d08e437b4157f3eafb5871624b9
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 08:47:42 2022 -0700
Fix popover
commit 6e6dd4cb0b396ae7ec4f273bccd254bc0f9885d5
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue May 3 10:57:20 2022 -0400
fix: trim trailing slash when calculating popover
commit 81fe2d24936ad4b783f41b260b4a4801bacb654b
Merge: 24d08d58 321e19dc
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue May 3 10:44:56 2022 -0400
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit 24d08d580d61363faab495a8a022248a7499dc26
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue May 3 10:43:22 2022 -0400
cfg: make SPA optional
commit 321e19dc415a316c71ba50e11ab0428bda92b0e6
Merge: 12d33619 97607c3c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue May 3 09:48:50 2022 -0400
Merge pull request #121 from benbohmer/patch-1
commit 12d33619a28a2e1a27fca109e3ba966bef65ebab
Merge: fc89ff26 4197ad46
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue May 3 09:47:48 2022 -0400
Merge pull request #120 from straightupjac/fix/github-info
commit 97607c3ca5ac837f7f6bc7a048b72a8271fbd570
Author: benbohmer <103453816+benbohmer@users.noreply.github.com>
Date: Tue May 3 09:10:45 2022 +0200
fix: keep / at end of URL to avoid redirects
Removed strings.TrimRight "/" in line 10 to keep the trailing slash at the end of URLs in regular links. This avoids having every single internal link being a 301 redirect.
commit 4197ad460afd96ab508d421939b92f80bbcdc5ca
Author: straightupjac <jdc.jaclyn@gmail.com>
Date: Tue May 3 01:51:15 2022 -0400
fix github info
commit fc89ff2680977dbaf1dabb91be01ad2b84903d8a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon May 2 13:00:41 2022 -0400
fix: broken semi and graph min-height
commit e9a33c04b5efcf01e9ba5a5bb1ec6619ea510122
Merge: 9ba0a4b3 b0e15e0c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon May 2 12:56:44 2022 -0400
fmt: remove semis for good
commit b0e15e0cbc445e12e3aabfe90ee2fc6bf2c33782
Merge: 66304da0 f1b85fb6
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon May 2 12:19:26 2022 -0400
Merge pull request #118 from aidenybai/add-router
commit 9ba0a4b34fa2e4993b8be021ee79d10d2674eba4
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon May 2 12:14:51 2022 -0400
fmt: remove semis :)
commit f1b85fb6d9612d9c9d5293e27e489576800ed219
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Mon May 2 09:10:40 2022 -0700
Fix clarification comment
commit 66304da027e35abff31f05e5a895ebca52976ccb
Merge: 416dc0b8 87144fca
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon May 2 12:06:57 2022 -0400
Merge pull request #119 from aidenybai/add-prettier
Add prettier config
commit 40d216759cb88e101aac06a7c02070336d2907ce
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Mon May 2 09:05:02 2022 -0700
Expand template
commit 5c602ab16f1f5e46bee5f44cec15860f785039ee
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Mon May 2 09:04:36 2022 -0700
Add clarification comments
commit 87144fca212b25093adbf743014d5c0d5b1d9c0d
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Mon May 2 08:57:25 2022 -0700
Use semi: false for prettier config
commit a9523dd39bf931e491750bb832dd13678e0e0c0d
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Sun May 1 22:08:14 2022 -0700
Add prettier config
commit bcb166c21cf4cf6d923608c12729373cf926eddb
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Sun May 1 22:06:33 2022 -0700
Add router
commit 416dc0b85cabfbb1dced0262b11256fa258f5ee9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Apr 30 13:13:30 2022 -0700
fix: add update for local hugo-obsidian on make update
commit b8a660e208333ea8ef4998c2f815411f12ce7067
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Apr 30 13:10:12 2022 -0700
feat: copyable header anchors (fixes #86)
commit ec86cca97bef277a3b3a84580c4164ce721a92a4
Merge: 87b5a7a2 f7027e7e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Apr 28 15:53:57 2022 -0700
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit 87b5a7a2519c70b6f6e678c6b86a3aefc4dd3218
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Apr 28 15:49:16 2022 -0700
feat: show graph titles on zoom (fixes #92)
commit c8d390dbc5a749af533f1ec05de2d5b6f37fa156
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Apr 28 13:45:29 2022 -0700
fix: always hide popover on mobile (fixes #104)
commit 3c7ece5405436c85282f156cf387b11d08cc2d87
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Apr 28 10:48:31 2022 -0700
fix: append trailing slash, fixes #111
commit f7027e7ecd26abe2a99ea1bb280808a4294bb4f2
Merge: f05ff5e6 0cfd93c5
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Apr 20 09:20:21 2022 -0700
Merge pull request #108 from exu3/patch-1
commit 0cfd93c57cdb31c0f0c48bddb407158ea2e0d7db
Author: Ella <git@ella.cx>
Date: Sun Apr 17 02:11:17 2022 -0700
Fix another typo
commit 3f8c47367830f9686b91c2c32158940de4c65466
Author: Ella <git@ella.cx>
Date: Sun Apr 17 01:33:16 2022 -0700
Fix typo: recomment -> recommend
commit f05ff5e62d5e2720a05cc3cde33f110686ab5268
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Apr 5 23:19:33 2022 -0700
fix: add dropshadow to popover, cleanup animation
commit 12ed9722d80e2ae517ac0face184339f07ae10fd
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Apr 5 22:43:11 2022 -0700
fix: popover selection wrongly including line breaks
commit 887d4d4f5ecb21e436f9a0c88cc690fc245c9747
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Apr 5 21:40:59 2022 -0700
deps: bump hugo -> v0.96.0
commit f9c7cdf928e8068532d2630336a7b08d5085548e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Apr 5 20:44:39 2022 -0700
fix: check for src before attempting to add popover
commit 2d55b6ac2e0580ee8f831e46065fc94db7c9d687
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Apr 5 18:07:40 2022 -0700
fix: missing whitespace chomp in link render hook
commit d5884aedb7dcd4e7711e53b7b462d1ac0bbc242e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Apr 5 14:14:19 2022 -0700
fix: wikilink patch not applying to transformed text like apostrophes
commit 66eaa444a41d1bd87bb1f28f9786412db6e7e274
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Apr 5 14:08:36 2022 -0700
fix: wikilink image relURL for images with spaces
commit 0ddc48a4529a06b48e10e0917c815d99220eebd3
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Apr 5 13:47:24 2022 -0700
fix: wikilink-like text in code fences #95, #97
commit cd19159c53a5f774275edc72bdc9bcb679b77242
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Apr 5 12:47:28 2022 -0700
feat: wikilink img support
commit 7808c66c4dd64ee1a4dc0255533a74f2996ab957
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Apr 5 09:41:13 2022 -0700
fix: align footer links
commit a7abc6ab96002d103e5e349f345d4108550256f5
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Apr 5 00:09:56 2022 -0700
docs: make update command and clarify update steps/potential danger
commit 9509a64354f40981ec0efccb7dda0c1c5da2c190
Merge: 53242b1e 3ce6944c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Apr 5 00:02:48 2022 -0700
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit 53242b1e5742d0730515b6e104ee626dfd5a14f2
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Apr 5 00:02:37 2022 -0700
add update target to Makefile
commit 3ce6944c189097cfde3415434cf33b56b3ceaf41
Merge: e2455050 3583265f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Apr 4 23:56:28 2022 -0700
Merge pull request #93 from meleu/patch-3
commit 3cec4fd950f69762daf7f44c46619cd31b1fc61e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Apr 4 23:30:28 2022 -0700
update screenshot
commit e245505082eedb720873e20331c36952ded67d09
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Apr 4 23:25:24 2022 -0700
feat: hide toc for short notes
commit fc4b9ded76c31ef940e281d9c1bfda850df23d5d
Merge: 3781b677 27c4761f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Apr 4 23:20:43 2022 -0700
Merge pull request #94 from meleu/patch-4
commit 27c4761fe01433b971ba6c2f67af3f003df56aed
Author: meleu <meleu@users.noreply.github.com>
Date: Mon Apr 4 20:15:40 2022 -0300
link to home goes to baseURL
commit 3583265f80afa081bf7a1fe996a9b3fe3c4e32e0
Author: meleu <meleu@users.noreply.github.com>
Date: Mon Apr 4 17:30:23 2022 -0300
docs: warn about possible lost of customization
commit 3781b67707ed9992a5aec843dc5ede7c2cb8a608
Merge: 1613511f 671fe053
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Apr 4 13:08:42 2022 -0700
Merge pull request #91 from meleu/patch-2
commit 671fe05312ded0e96ba16140290a375c51c975ba
Author: meleu <meleu@users.noreply.github.com>
Date: Mon Apr 4 17:07:43 2022 -0300
padding and border-radius matching bottom cards
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
commit 1613511f393fe9460937e7e88cc731d269bb6621
Merge: acab4887 575288ec
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Apr 4 09:45:05 2022 -0700
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit acab488784b52edfb176c5a455580abeb142324f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Apr 4 09:44:58 2022 -0700
re-add obsidian file
commit ff91dcd196d71356b021ec9d381767e7c38b0756
Merge: a287d112 575288ec
Author: meleu <meleu@users.noreply.github.com>
Date: Sun Apr 3 22:14:12 2022 -0300
Merge branch 'jackyzha0:hugo' into patch-2
commit a287d11246cc0c18a9bf4435bddffc9e163e64fd
Author: meleu <meleu.dev@gmail.com>
Date: Sun Apr 3 22:12:55 2022 -0300
add a collapsible ToC
commit 575288ece94d2093bda7467be1a25092bab9c366
Merge: 25b5ac43 1d9c0e4a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Apr 3 17:57:46 2022 -0700
Merge pull request #88 from meleu/patch-2
commit 25b5ac43ddbf9899e9a11b4ad8083a4c66bcf637
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Apr 3 17:43:37 2022 -0700
fix: favicon not showing on non-root domain #89
commit 1d9c0e4a44d4551b7d57678928600aed1428a243
Author: meleu <meleu.dev@gmail.com>
Date: Sun Apr 3 16:31:29 2022 -0300
use "enableToc: false"
commit e62d512d95bc52f3113cae5e3763665364fa7c72
Author: meleu <meleu.dev@gmail.com>
Date: Sun Apr 3 16:29:10 2022 -0300
disable ToC if frontmatter has "enableToc: false"
commit 8f15c5f8c1a0650d3c757f8cdf8ea12e4128ee97
Author: meleu <meleu@users.noreply.github.com>
Date: Sun Apr 3 16:22:32 2022 -0300
disable ToC if enableToc: false
commit efeaf9b49ccbc2e595277f6c558057e863e0ac8c
Merge: 91c4e3fb 22f11711
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Apr 3 11:44:39 2022 -0700
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit 91c4e3fb3a5d9e86e5fb513bb65da89d4b061b08
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Apr 3 11:42:42 2022 -0700
fix: multiline code block #87
commit 22f11711b2500b739e56ddb7d39660c4e8856be6
Merge: 16b177ce 5c3ef884
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Apr 3 08:17:13 2022 -0700
Merge pull request #85 from meleu/patch-1
Ah my git was being really weird with cases :')) thank you
commit 5c3ef884c78b190e5fc22e122d55af097d8bef3e
Author: meleu <meleu@users.noreply.github.com>
Date: Sun Apr 3 11:19:21 2022 -0300
duplicated file
commit 16b177ce6603db9bc242104c0ef5692e2832d3f7
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Apr 2 21:04:20 2022 -0700
README update
commit 14c6181d240e69f48f6a2548136613b2b0739720
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Apr 2 20:37:42 2022 -0700
bump hugo version v0.82 -> v0.92.2
commit e6e04c03c473175961e1d5f9c815c3671f237c8e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Apr 2 20:34:55 2022 -0700
fix latex misrendering
commit 146e975932a80634500720f88843041fdf62bfec
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Apr 2 20:21:16 2022 -0700
bump hugo obsidian, fix backlinks for subpathed quartz, update homepage
commit c117e38899a7e122fb4dee87f5d091e654e0939f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Apr 2 20:06:31 2022 -0700
feat: wikilinks implementation
commit 4fd983277e36e323675e2d77048fb3daaa016dc6
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Apr 2 17:38:39 2022 -0700
fix: cjk support + demo page
commit cc86136bcb4cc61219a8ee7573e792e6a6043dcd
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Apr 2 17:00:14 2022 -0700
feat: basic latex support
commit 8e083d4a93383214d5d020c925dc5d7b65cc04db
Merge: c51573ef 03b574b1
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Apr 2 14:53:05 2022 -0700
Merge pull request #83 from meleu/patch-2
commit 03b574b1606c836eda158c8fdfe0e251a1364fe8
Author: meleu <meleu.dev@gmail.com>
Date: Sat Apr 2 18:51:45 2022 -0300
cleanup
commit a469653f7575ae604ec3e979768f4ddfecf5e2b5
Author: meleu <meleu.dev@gmail.com>
Date: Sat Apr 2 18:50:58 2022 -0300
separate contact links semantically
commit c51573efa98de6b5b5e79fb60b49f31daca70527
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Apr 2 13:34:26 2022 -0700
feat: grey out broken links
commit 902d0f2a0fe84d383eb1b011aee636ccb9687f6f
Merge: 1ddd15af 9c5ecccf
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Apr 2 12:59:47 2022 -0700
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit 1ddd15afc6e69202080ffb91e8d82deb653a80b7
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Apr 2 12:59:38 2022 -0700
fix: non-unicode character in popover and search #67, #68
commit 16f8cd7100c7733b8ee29296fb0369ae24f899cd
Author: meleu <meleu@users.noreply.github.com>
Date: Sat Apr 2 13:37:12 2022 -0300
separate links with ​
commit 9c5ecccf25c35cd94bc6c7468d45e4c3e6a932bc
Merge: 3674df48 e3cd531c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Apr 1 14:17:35 2022 -0700
Merge pull request #82 from meleu/patch-1
commit e3cd531c537d4d82400275c1b018382a19041b4b
Author: meleu <meleu@users.noreply.github.com>
Date: Fri Apr 1 18:13:49 2022 -0300
fix custom.scss path
commit 3674df48b8eed55728780d05bc9b577e8aab0a3b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Apr 1 10:13:01 2022 -0700
fix pagination styling
commit 9e8c5587e433b3d1440803d7f995a2a8b55ba45e
Merge: 6605b13b 6edc9798
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Mar 31 23:16:00 2022 -0700
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit 6605b13b86c5e15bcaa2821937f97a59c4d2bbae
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Mar 31 23:15:54 2022 -0700
more troubleshooting, backlinks reference private page fix
commit 6edc979896f7548a8f9efe1c167fe9cd9d9e4c1c
Merge: 54a68e6e fc439224
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Mar 21 09:15:35 2022 -0700
Merge pull request #71 from siyangsun/patch-1
commit fc439224456010aad4802c9003c0dcebf1e38157
Author: Siyang <siyangsun2007@gmail.com>
Date: Sun Mar 20 22:37:05 2022 -0700
add to showcase and fix link to file
commit 54a68e6e5c020fa1e4eacf7942eb37974f332887
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Mar 18 10:53:39 2022 -0700
patch image
commit a6ab2f92ef8cb62d0399b1121cfabaa137906d51
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Mar 16 17:54:24 2022 -0700
add update
commit fda481fbb91fee6fc9e99c56c2cf80ff8835a946
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Mar 15 01:12:08 2022 -0700
fix: bump hugo-obsidian version to account for contentIndex paths on windows
commit 94e987dab5a50196bc2273addc6f908178abd0fb
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Mar 15 00:37:56 2022 -0700
feat: better titles for empty pages #61
commit e981c76ed4b2d220c0394bdcbf5a22a282561fd3
Merge: 651bfc5c f70128a3
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Mar 9 10:11:36 2022 -0800
Merge pull request #65 from claudio4/fix-text
commit f70128a3deacc26ceccb7d397ce6cd73acceb7f9
Author: Claudio Yanes <me@claudio4.com>
Date: Wed Mar 9 17:58:01 2022 +0000
Prevent overflow of long links and words
When a word (or any string withtout breakpoints (spaces, dashes....), making links the most common place where this becamoes an issue) is wider than its container, the text will simply overflow any container, including the viewport. This commit fixes this behaviour by making the word-drap strategy of the browser more aggresive.
commit 651bfc5cd284a259f429b50839c619dd1b94498a
Merge: 90727099 60794201
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Mar 7 10:45:07 2022 -0800
Merge pull request #62 from claudio4/hugo
commit 6079420178788ca74e574e35ad0212d1e6f41b6e
Merge: 978d5ca1 b96c60ed
Author: Claudio Yanes <me@claudio4.com>
Date: Mon Mar 7 18:28:14 2022 +0000
Merge branch 'jackyzha0-hugo' into hugo
commit b96c60edfc3429a2c478b2d1eb809fb9f20b4219
Merge: 978d5ca1 90727099
Author: Claudio Yanes <me@claudio4.com>
Date: Mon Mar 7 18:27:45 2022 +0000
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into jackyzha0-hugo
commit 978d5ca1aee23d6663e508aa24b389b6c9003d04
Author: Claudio Yanes <me@claudio4.com>
Date: Mon Mar 7 18:25:02 2022 +0000
Format JS
commit 907270992d7718f26d0a401ab700c6a0a414b440
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Mar 4 23:55:07 2022 -0800
fix: hide popover on mobile to prevent overflow
commit 6f9283e95b9f0b85c0d9dc7374ed75eff2a9149d
Author: Claudio Yanes <me@claudio4.com>
Date: Fri Mar 4 22:27:21 2022 +0000
Update makefile and docs
The artifacts produced by hugo-obsidian are now expected to be placed in
the assets/indices directory. This commit reflects this change in the
Makefile and in the docs.
commit 0fad5570d38b6a15e9a0cf2c1b1f24e6c2897551
Author: Claudio Yanes <me@claudio4.com>
Date: Fri Mar 4 04:14:42 2022 +0000
Add .gitkeep to assets/indices
commit dc9b421e21d02e9d247d1640cb518c416a5dcbab
Author: Claudio Yanes <me@claudio4.com>
Date: Fri Mar 4 04:12:43 2022 +0000
Remove unnecessary scrollbars
The margin property can escape the parent node and move it alongside
its child. This happens with singlePage div and the body, resulting in
scrollbars appearing as the body has the size of the viewport but
does not align with it. This phenomenon can be always observed
in the vertical axis and it can also be observed in the horizontal axis
when the viewport it’s not wide enough (mostly in mobile).
Using paddings prevents this “extra space” from scraping and displacing
the body.
Also, the value 100vw does not take into account the space taken by the
vertical scrollbar, thus making the body wider than the actual viewport,
producing a horizontal scrollbar.
commit 8779e72c77c2e454d444b86d3d5ebda9bfab46d7
Author: Claudio Yanes <me@claudio4.com>
Date: Fri Mar 4 03:34:45 2022 +0000
Add attribute property to scripts from jsdelivr
Adding the integrity attribute protects the website (by refusing to load
the script) against malicious modifications of the script
in the case of jsdelivr gets hacked
commit 7f6523337c96e631e80b18c888b2f237ea8a4482
Author: Claudio Yanes <me@claudio4.com>
Date: Fri Mar 4 03:24:32 2022 +0000
Move popover to the end of the page
The popover script doesn’t ever start in until the DOM has finished
Loading, so wait for the script to be downloaded and parsed before
Showing the content to the user makes no sense.
commit 7e0f2e44497adeade4aa5a99da897be29cb49016
Author: Claudio Yanes <me@claudio4.com>
Date: Fri Mar 4 02:25:30 2022 +0000
Fix fetchData
The fetchData function suffer from a race condition. If the function is
called before the promise finishes, it will result in another pair of
HTTP request. This does not only make the function useless but
Actually, it makes it harmful as the data might be redownloaded twice.
Now fetchData is not a function but rather the promise by itself.
Previous callers are expected to await the variable instead, this
should be not concern as awaiting a promise multiple time in
JavaScript is completely safe.
commit 1313bd9779c638f09b8901f8432d6bc39910bce3
Author: Claudio Yanes <me@claudio4.com>
Date: Fri Mar 4 02:07:51 2022 +0000
Move css and js to appropriate files
Having the CSS and JS in the html template produces pages larger
than necessary, as each page need to contain all the js/css.
Separating them in appropriate files allow the browser to just download
them once and use them for all the pages. This is even more effective
with an aggressive cache policy for the js and css, something that can
be done without fear thanks to the implemented cache-busting.
Also, having then in separate files allows us to use Hugo pipelines
for minimizing the code.
commit 5234fae080f1d3dca4f105438e3e0151f12ca61c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Feb 28 08:24:29 2022 -0800
fix backlinks not using baseurl
commit 0ee0855e1c1843a86a7bcd58aee520784c165dba
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Feb 28 07:30:59 2022 -0800
bump hugo-obsidian to support root
commit e06e341468202eebd928dee6a222ea118ef06331
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Feb 28 07:14:55 2022 -0800
fix: explicitly set root as current directory to fix ignore files
commit 73e526a7d50315b9177c2c11d12ebcde71b05fbd
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Feb 23 12:28:25 2022 -0500
add screenshot to readme
commit cdc4f1a8407449be7a514414795f27ff3b70bf37
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Feb 22 13:36:08 2022 -0500
fix: relink search button (move outside content load listener)
commit 714b4fcfa30ac1155747b9af90bc0e9519cb4bba
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Feb 20 21:40:10 2022 -0500
fix links being broken for pages with spaces
commit 9c04ca026676445849081d32efb8e840465994d5
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Feb 17 10:49:41 2022 -0500
rtl docs
commit 388a2bf78bb08c2b37e918c3a2e0acc72803e187
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Feb 17 10:44:39 2022 -0500
docs updates
commit f192f9a23df34d30e223e20ab5e8cb8210a7dfe9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Feb 15 23:03:02 2022 -0500
fix #54: root all image urls
commit 3b3e6ec3b2a56ee4d03b6f4c84af886821bfbe84
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Feb 15 22:54:20 2022 -0500
fix relative pathing for dynamic fetch
commit 8e85e274f6e5913694b67319f1beb7a2ec5b5bed
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Feb 15 19:42:45 2022 -0500
change output to static instead of data
commit fcd5d2807d2bab68c6776e031e85d65fe88a6f7a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Feb 15 19:39:14 2022 -0500
feat: dynamically fetch indices
commit 4587b133600ac59e38d1fccc7c7dba9f2c8f4af5
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Feb 15 17:12:08 2022 -0500
feat: add rtl support as part of #47
commit fb9ea8dcb85e6d2ac6c2a8cf5057f2fb00871b26
Merge: c520db48 10f9843b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Feb 15 16:52:49 2022 -0500
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit c520db488213f6d7844a382fe4f621a85decd60e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Feb 15 16:52:32 2022 -0500
fix: #50, change css load order
commit 10f9843bb6476134532d2002b2d29841755767e1
Merge: 0dc51ff3 31297b7e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Feb 15 14:51:29 2022 -0500
Merge pull request #51 from brandonkboswell/patch-1
commit 0dc51ff39c9c867dd85c37a01c366cd5f278f032
Merge: c35086c5 fa3bc3de
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Feb 15 14:50:34 2022 -0500
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit c35086c5104aedcaae1aba00892b0b4359a8e3cf
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Feb 15 14:50:25 2022 -0500
visibility fix
commit 31297b7e5adfda0def68ac848c4e81789c7278b2
Author: Brandon Boswell <brandonkboswell@gmail.com>
Date: Sat Feb 12 22:35:03 2022 -0500
Added to the Showcase
commit fa3bc3de9273d2cb437605d1b229d9a8d79331b5
Merge: a271fb9d 41c443db
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Feb 11 17:24:54 2022 -0500
Merge pull request #48 from earnestma/earne/configurable-page-toc
commit 41c443dbf079e65ed69f57d3b9a5ce58dc403e6d
Author: earnest ma <me@earne.link>
Date: Fri Feb 11 17:05:38 2022 -0500
Add disableToc parameter to not show TOC on a page
commit a271fb9d74f56b9e44817c7f61300db8d7e713cd
Merge: 9645f003 49cdca5d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jan 31 12:28:40 2022 -0800
Merge pull request #46 from adube/patch-1
commit 49cdca5dfc32e56788f30a9a7e8b5a6225013edb
Author: Alexandre Dubé <adube@mapgears.com>
Date: Mon Jan 31 15:18:26 2022 -0500
Specify Hugo requires extended Sass/SCSS version
Hugo needs to be installed with its "extended" Sass/SCSS version, otherwise this template does not work.
commit 9645f0031756faf815b1df5501d736795cbccc62
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jan 27 09:38:28 2022 -0800
link fixing
commit 57ebf4c21c8b4f7c2ef5126ded39a9facaa848ee
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jan 10 13:08:50 2022 -0800
underscore fix, fix relative path being weird for graph
commit 54e3e071d1c66dec3e04e8246c58fc2067877044
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jan 10 09:00:45 2022 -0800
fix popover regex
commit d46e22383133b944201bf5cdf85d44c48c891d07
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jan 10 08:51:00 2022 -0800
revert baseurl fix
commit 6f9a29c174f8657a90d7dda8d39e933c220fa717
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jan 10 08:49:29 2022 -0800
various path fixes
commit 532bc610254db096807453bf223acaa91634fd81
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jan 5 19:42:13 2022 -0500
set relativeUrls to true
commit 99aea4826068564f81e7f1b402e00e3e101a1476
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jan 4 11:39:22 2022 -0500
docs update
commit 4a3766db56bd08990b59f73e805008e03817556c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jan 3 16:37:24 2022 -0500
update featurelist
commit 4e639979f8175b0a639ba2e25bbd8fa550d728bf
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jan 3 15:36:58 2022 -0500
fix copy selection
commit e49a1ac9db92c6c967be404b5a3b9e3194a4ed99
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jan 3 13:22:04 2022 -0500
made link preview optional
commit 4a3c4fdef550547aa80947ebaff1bda44b943d4d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jan 3 13:18:31 2022 -0500
popover implementation
commit 2b432d7f0b35987ca6886e7041dce861b7e21abb
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jan 2 20:02:47 2022 -0500
fix flex gap
commit 7507fd29912015a72f990b23023ae2946c6cd51b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jan 2 19:49:41 2022 -0500
fix search styling
commit ca886e40752a8a30762708ea87d7228f737c0cd2
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Dec 28 14:28:08 2021 -0500
fix render link for apostrophe
commit 3722e600ee3bd75130e4e228ea45c2074649329c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Dec 27 20:52:30 2021 -0500
bump hugo-obsidian
commit efeaf0f4e47c3484ad84b7b9f755735ae0d810cd
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Dec 27 20:16:21 2021 -0500
add pagination to section, fix graph linking
commit 1a8cdaad24789d75d9453351aff19b434e1ea5c9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Dec 27 19:43:01 2021 -0500
remove console.log
commit e4caa0d1d7fb3bdca6dee07fee299a3acdf40043
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Dec 27 19:35:42 2021 -0500
add taxonomy and term lists
commit a45856d7884fedd3a3bd6b80489c206c75427112
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Dec 27 17:53:33 2021 -0500
fix last modified not working for capitalized pages
commit dbe9b338ccc5df23882ebfa26c9020fb863a4124
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Dec 27 17:44:39 2021 -0500
fix capitalization
commit 000fcdbf991dcc7f81b4cf1b6d7116590070ffd0
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Dec 27 17:43:27 2021 -0500
fix casing
commit 612c44d719f1b47b3c7b3fc5b6ffb48ccec33ded
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Dec 27 17:34:53 2021 -0500
modify obsidian
commit e1911a58fff3b96754b3b49837ac2d4dd4fcf5aa
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Dec 27 17:28:53 2021 -0500
enable last modified info
commit b4e26971165d49604014a1ed38aaa18b2c20fc23
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Dec 27 15:59:19 2021 -0500
content section
commit 094ab9d064b8e3d24f0cb656aaf4e0ea08365ac5
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Dec 27 13:15:10 2021 -0500
dedupe backlinks
commit 39592347cc742838a1d078031b897fe26a94adaf
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Dec 27 13:06:58 2021 -0500
add graph depth config
commit 165d33810d63f98953f4dd8c40f6d7741f967664
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Dec 26 21:13:21 2021 -0500
base tags
commit 6fbfa7170b17e062abd4c26e4b55a3934fb4ff1c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Dec 26 00:09:15 2021 -0500
various font and colour fixes
commit 43837f9e2ec4033722cb6957bd67c688afb3ae2c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Dec 25 23:45:30 2021 -0500
add makefile, fix link padding, test capitalization
commit 2ba01c831178facd35c62adcb22f3cc39ead6975
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Dec 24 15:51:37 2021 -0500
fix untitled #36
commit 114b7ca913b4250d594b711d7bfbe98ab23b562d
Merge: 5bd5642c 091be704
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Dec 24 09:48:41 2021 -0500
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit 5bd5642c99d6d144c9932533dfdc3484bdb72b71
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Dec 24 09:48:22 2021 -0500
add toLowerCase to id
commit 48d01810c4629341d9481632fc7f769dcffe0bd7
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Dec 23 14:40:59 2021 -0800
fix config setting, fix font size for h1 in article
commit 3a98c8b554c4b0e141f46a777c0fefe5ad4d4178
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Dec 23 14:32:47 2021 -0800
actually display site title
commit 69c86e407fa14ea94c75de82ca55ec9efaf6fb37
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Dec 23 14:21:39 2021 -0800
update subdomain docs
commit 56d2382c282431115b2964d440b790ce11f19e72
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Dec 23 14:05:27 2021 -0800
fix relative link styling, change graph and backlinks to refer to name rather than path
commit 091be7040b2f3da212a68a491bb8872543fddfea
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Dec 23 13:37:29 2021 -0800
Create CODE_OF_CONDUCT.md
commit 09b5522a488177129bfc7b35b700d7e76c64d5f8
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Dec 23 13:22:22 2021 -0800
Update issue templates
commit b9d7adafccc7a77f735afe11c80e0e8db534a31d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Dec 23 13:18:03 2021 -0800
Create FUNDING.yml
commit afeb18212d62663b7bbec5a08c05851bd584acd3
Merge: c64322ad bc909559
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Dec 2 20:06:18 2021 -0800
Merge pull request #28 from juaoose/overflow
commit bc90955959d818797e84c944247736e871faee3f
Author: Juaoose <jjrg1994@gmail.com>
Date: Thu Dec 2 22:58:34 2021 -0500
remove horizontal scrollbar
commit c64322ad3f1b72f83e675a53060b005d57704901
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 20 22:55:53 2021 -0800
remove bad wikilink
commit 48eb9ebc5fdba0845c6295e8abb6f574ec75171d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 20 22:53:26 2021 -0800
better search, fix spacing support, bump hugo-obsidian
commit 82ba843e42198d2ef2829eb6e668377bc9ebe4be
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Nov 15 15:54:18 2021 -0800
search styling
commit 8ca31df3f22e2678cf201105c1cb2925aca3c7d3
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Oct 31 09:59:38 2021 -0700
search patch
commit df23b99951fd7cb3bdf839639bce58b3e98c2d26
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Oct 30 23:27:33 2021 -0700
more search improvements
commit 6005a2e0a0667e9b78bfd419d3e8590a7fcc25f8
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Oct 27 20:10:04 2021 -0700
css fixes
commit de940d6a4b8a51f308b4544d21941bdb9a99aa66
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Oct 26 17:06:00 2021 -0700
update graph redir
commit 806d11f874119a1207332850e3263d87334a573d
Merge: 03bb3a3b 1fc2da4f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Oct 26 17:03:07 2021 -0700
Merge pull request #23 from bur3ku/hugo
commit 1fc2da4fe293f47ec47a7b5d33fa94fa3a06bb3b
Merge: 9292de63 24776624
Author: Blake Allen <blakesnake100@gmail.com>
Date: Tue Oct 26 16:58:37 2021 -0700
Merge branch 'hugo' of https://github.com/bur3ku/quartz into hugo
commit 9292de63336da42651c646253ef6000621d5328b
Author: Blake Allen <blakesnake100@gmail.com>
Date: Tue Oct 26 16:58:08 2021 -0700
remove unnecessary regex, use encodeuri for label instead of replace
commit 24776624047bea380c51dbb503cdf335d37b83b0
Merge: a14d06aa 03bb3a3b
Author: Blake Allen <blake.edward.allen@gmail.com>
Date: Tue Oct 26 12:46:03 2021 -0700
Merge branch 'hugo' into hugo
commit a14d06aa3d37396531dbfe09bb3b18b7eb9b96ad
Author: Blake Allen <blakesnake100@gmail.com>
Date: Tue Oct 26 12:44:25 2021 -0700
fix conflict fix
commit e0535dbe3219e297945284ca2af9862bd457a893
Author: Blake Allen <blakesnake100@gmail.com>
Date: Tue Oct 26 12:43:55 2021 -0700
fix conflict
commit 8eca1e60f78f40d6b598aa397bb315adfc53d9ad
Author: Blake Allen <blakesnake100@gmail.com>
Date: Tue Oct 26 12:36:20 2021 -0700
change %20 in node labels to whitespace, change %20 in node hrefs to hyphen
commit 03bb3a3bae297b51ffabb0d428f2c555771033f9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Oct 25 15:06:29 2021 -0700
normalize search styling
commit f7b89db8ee85e54a438db2e2cac3c55e805281c9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Oct 25 15:00:55 2021 -0700
search fix
commit 1835b97a7a2faf23809bb39d0bec7a2b77b3b81c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Oct 24 23:45:55 2021 -0700
better homepage
commit f56642f13cb5bffb8c05b239c6a7b90e1b6453e5
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Oct 24 23:32:55 2021 -0700
forgot string lol
commit 22a9c0ddfcb38a15d4340f532faca7733349702b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Oct 24 23:31:09 2021 -0700
docs updates, add search to main page, fix redir bug
commit c1c061fbea8f6cdc6aec4992d21d2df73dc6ba4e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Oct 24 23:17:20 2021 -0700
bump docs
commit 6fd19069deb06988b3d34482a151a79a53b589d0
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Oct 24 23:17:13 2021 -0700
search improvements
commit 299533a4f47d2379ddbc209bcd6923a70a81e65d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Oct 24 23:17:00 2021 -0700
bump hugo-obsidian version
commit e1366ecb6173b7c5e799c46e3ed8acbb50aaf447
Author: Blake Allen <blakesnake100@gmail.com>
Date: Fri Oct 22 18:56:26 2021 -0700
fix accidental code
commit 776ef084c9c98163f96cce62621cb8b0cf59bbdd
Author: Blake Allen <blakesnake100@gmail.com>
Date: Fri Oct 22 18:32:57 2021 -0700
fix last commit
commit fc00ad5bffcd5a1b89a4c1cb19b12d77238cc4c2
Author: Blake Allen <blakesnake100@gmail.com>
Date: Fri Oct 22 14:04:09 2021 -0700
fix for notes with spaces not linking properly
commit 228f96e74dd0caae6514a230418812103527d439
Merge: ae2f7efd 071984a1
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 31 18:32:14 2021 -0400
Merge pull request #14 from juaoose/hugo
fix product typo in external hosting section
commit 071984a12d1c7887d0ef41b206e01bc5afefb95d
Author: Juan José Rodríguez <juaoose@users.noreply.github.com>
Date: Tue Aug 31 16:40:31 2021 -0500
fix product typo in external hosting section
commit ae2f7efde0eb997ab2f7be1cf1513af7f99df599
Author: jackyzha0 <j.zhao2k19@gmail.com>
Date: Sat Aug 28 20:58:14 2021 -0400
update showcase
commit cb38667c1df7d752a1a9ef45505a7e106ff03ef8
Merge: 1c851271 27c33f83
Author: jackyzha0 <j.zhao2k19@gmail.com>
Date: Fri Aug 27 14:08:18 2021 -0400
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit 27c33f8334f6ac4a67c2a12b8eed219e6d8aeb2b
Merge: 8850976d f9920f6d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Aug 13 17:45:32 2021 -0400
Merge pull request #9 from brechtcs/template
Execute darkmode script before first render
commit f9920f6d736754372075c8f1014ab9440e333317
Author: Brecht Savelkoul <brecht.savelkoul@alumni.lse.ac.uk>
Date: Fri Aug 13 22:46:00 2021 +0200
Execute darkmode script before first render
commit 8850976d8dbb9a67d0224ed1ea30bd90fdbf4faa
Merge: 9b427faa bb6a1e8c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 12 23:49:05 2021 -0400
Merge pull request #8 from SlRvb/patch-1
Add SlRvb Site to Showcase
commit bb6a1e8c349075f40ac96be25509951ad5dce715
Author: SlRvb <54087190+SlRvb@users.noreply.github.com>
Date: Thu Aug 12 20:46:23 2021 -0700
Add SlRvb Site to Showcase
2023-11-24 18:08:37 +00:00
|
|
|
padding: 0.2rem 0.7rem;
|
2023-08-07 02:52:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
tr {
|
|
|
|
border-bottom: 1px solid var(--lightgray);
|
|
|
|
&:last-child {
|
|
|
|
border-bottom: none;
|
|
|
|
}
|
2023-06-01 21:35:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
img {
|
|
|
|
max-width: 100%;
|
|
|
|
border-radius: 5px;
|
|
|
|
margin: 1rem 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
p > img + em {
|
|
|
|
display: block;
|
|
|
|
transform: translateY(-1rem);
|
|
|
|
}
|
|
|
|
|
|
|
|
hr {
|
|
|
|
width: 100%;
|
|
|
|
margin: 2rem auto;
|
|
|
|
height: 1px;
|
|
|
|
border: none;
|
|
|
|
background-color: var(--lightgray);
|
|
|
|
}
|
|
|
|
|
2023-07-23 00:27:41 +00:00
|
|
|
audio,
|
|
|
|
video {
|
2023-06-06 07:00:38 +00:00
|
|
|
width: 100%;
|
|
|
|
border-radius: 5px;
|
|
|
|
}
|
2023-06-18 17:47:07 +00:00
|
|
|
|
|
|
|
.spacer {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
}
|
2023-07-04 23:48:36 +00:00
|
|
|
|
2023-07-23 00:27:41 +00:00
|
|
|
ul.overflow,
|
|
|
|
ol.overflow {
|
Squashed commit of the following:
commit 76f2664277e07a7d1b011fac236840c6e8e69fdd
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Nov 13 22:57:05 2023 -0800
versioning: bump to v4.1.1
commit 74777118a7fd19e4a296706c2a4b5fdca546c4fa
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Nov 13 22:51:40 2023 -0800
feat: header and full-page transcludes (closes #557)
commit 8223465bda1e7b6085a9752ead806be85ff58b57
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Nov 12 14:33:19 2023 -0800
fix: make :has img selector direct
commit cf6ab9e9333b5f76cb9e06f6687f2b4f8fbe91bd
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Nov 12 14:27:53 2023 -0800
feat: option to specify npx quartz sync message (closes #583)
commit 74c63e448e28d9766f7ec631aac2645384b0975f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 11 21:13:10 2023 -0800
fix(style): dont internal-link highlight when image (closes #581)
commit 43d638a6de5a8a11c1a719c596b07ea957c7329a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 11 21:06:37 2023 -0800
perf: compute mapping of folder name to file data for faster breadcrumbs
commit d1551872ffeb08c34f59dc2042b43562c499b620
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 11 20:46:57 2023 -0800
fix: check if popover exists after fetching and before inserting
commit 275bea3051a6f2a7da65fef6dccc7cc52a0a15e3
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 11 20:46:29 2023 -0800
style + cfg: resolve breadcrumb titles by default and change arrow character
commit bc02791734aa969ff388c5f7068e402bd0e3862a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 11 20:27:51 2023 -0800
fix: .date.getTime() based sort
commit bf603c49c2edaa5fcbe42479421a336dcacf92b9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 11 12:08:54 2023 -0800
fix: sort rss feed by date
commit f67356c3d2d609a8a6b674ac650fc41d6dfb4cc7
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 11 12:02:34 2023 -0800
lint: format
commit 5d666d1860be721c573ebd24cb82d210a8567bbf
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 11 11:59:05 2023 -0800
fix: normalize relative urls (closes #569)
commit 22b7cf135e8b031550553947c48aa0dc00b3abbd
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 11 11:41:44 2023 -0800
types: cast in jsx.tsx to avoid @ts-ignore
commit 50a87d0d8673dbce6ebafef83f71f197df9bc196
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 11 11:39:56 2023 -0800
style: scrollable tables
commit 134b6ed582d6ce9d8fb8f1e58d2bae89c07c2d5d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 11 10:11:31 2023 -0800
fix: anchors links shouldnt cause reload (closes #574)
commit 99e8f5944fdd83110fbac4c9edc37cdcaf2c25f7
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 11 09:56:30 2023 -0800
fix: trailing slash aliases (closes #577)
commit e9f4e28a2d3e0b529586ddb5a50680a6e66412f3
Author: Yes365 <ninfovores365@gmail.com>
Date: Fri Nov 10 11:44:16 2023 +0800
fix: adapt vercel cleanurls (#487)
Co-authored-by: Harrison <Harrison@fanruan.com>
commit 2a6b9a9ea01e8e6a80fe51d01dc865595b67a612
Author: Niklas Schröder <33390735+lnschroeder@users.noreply.github.com>
Date: Tue Nov 7 18:16:48 2023 +0100
docs: fix property name for ToC toggle (#573)
commit e806c30fa1a7ab941969da01c05ac4adeeeeeb9e
Author: Mau Camargo <52770775+camargomau@users.noreply.github.com>
Date: Sun Nov 5 13:30:10 2023 -0600
docs: Add Mau Camargo's Notkesto to showcase (#570)
commit aac7b7e97d32580f6a9bd974b8a9068e5218ab9c
Author: Anson Yu <ansonyu24@gmail.com>
Date: Sat Nov 4 17:20:16 2023 -0400
docs: Update making plugins.md (#567)
:)
commit 101e9946bddd053a42d269e19e35feae46fe4305
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 4 12:11:42 2023 -0700
feat: add collapseByDefault option to TableOfContents (closes #566)
commit a62a97c7abcabea4509760e5af957eed66fa0755
Author: Emil Rofors <emirof@gmail.com>
Date: Fri Nov 3 16:40:43 2023 -0700
docs: add GitLab pages CI (#549)
* add .gitlab-ci.yml
* move GitLab CI to hosting.md
* remove extra folder name
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* remove test from gitlab instructions
* run prettier
---------
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
commit 923b72fb67cf3ee9842df630feaed72644470074
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Nov 1 10:03:45 2023 -0700
feat: auto-tag releases (closes #560)
commit 05a1c34c6f6973eebcbcc50f50b64c2a0d62e8fa
Author: Florence <59734957+Pydes-boop@users.noreply.github.com>
Date: Wed Nov 1 17:57:32 2023 +0100
docs: remove dead link (#561)
commit 06ccb89cd7d5a3cade1eb5c2155b9b06e5395b0b
Author: Blue Rose <134471273+bluerosegarden@users.noreply.github.com>
Date: Tue Oct 31 15:53:49 2023 -0500
docs: clarifications about globs (#559)
* Add note about fast-glob
* Add warning about non-markdown files
Also added a glob pattern to filter out all non-markdown files outside of a specified folder.
* run npm format
---------
Co-authored-by: wych <wychwitchcraft@gmail.com>
commit 01fc8e46409ee0fb7311f212726113d35aced82d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Oct 25 09:40:43 2023 -0700
fix: disable semi-broken flexsearch cache
commit 7c01e8dde06abb1a80118b5eddce3e238830ede0
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Oct 22 09:54:12 2023 -0700
feat: openLinksInNewTab option for link transformer
commit b7ae7a99dbd40ffc852642202031b29e98304c1f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Oct 21 21:12:11 2023 -0700
fix: styling for nested popover tag in page list
commit 60b3bc34cb07b5bec87cbd667ea9f804ff14cf3c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Oct 21 21:05:46 2023 -0700
fix: catch html to jsx errors (closes #547)
commit dc834015d02adcc7edb119fb5224a2a86c614142
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Oct 21 20:27:49 2023 -0700
fix(style): tag float orientation for long tags on page listing
commit 1e357ef5ac85ab55ad19f832513f5ca7a7e54a52
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Oct 21 20:09:49 2023 -0700
fix(style): prioritize base and custom scss over component css
commit 54e722a55d58f4bab86184ffc970159628fa6967
Author: freenandes <42041153+freenandes@users.noreply.github.com>
Date: Wed Oct 18 03:43:41 2023 +0100
docs: Update showcase.md (#540)
changed URL
commit 86d16b12a224d125ba469f91e885eedf97a9dfe8
Author: Thomas <65691606+NotTacoz@users.noreply.github.com>
Date: Wed Oct 18 10:43:20 2023 +0800
docs(explorer): Fixed small typo with extra } in explorer.md (#541)
commit ed971800c0a683f7096922fee0a6901250e239ae
Author: freenandes <42041153+freenandes@users.noreply.github.com>
Date: Tue Oct 17 16:58:28 2023 +0100
Update showcase.md (#539)
commit af9ddadc4de513f2bbaf75f70079970215ed6406
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Oct 14 13:45:56 2023 -0700
fix(css): import base from custom instead of the other way around (#536)
commit da0a062c05db18d8c1521661ac0ab735abff3c3f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Oct 8 09:59:18 2023 -0700
feat: docker support for v4 (closes #530)
commit f66d2c23aca2944abcb1a6e3d83977a9b2edf37a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Oct 8 09:15:06 2023 -0700
fix: ctrl+click with spa enabled
commit 3268d45a20fbead24f3a111064364574408aa926
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Oct 5 13:48:52 2023 -0700
css: make article relative
commit afa163f2fe9c52d4b3bf1a2e4d48887916b67c24
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Oct 5 13:30:06 2023 -0700
style: styling for codeblocks without langs (#527)
commit cec4877adb7e89f4d4e0a442e82655e0d35dbe16
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Thu Oct 5 18:19:56 2023 +0200
fix(breadcrumbs): problem with folder whitespace (#522)
* fix(breadcrumbs): problem with folder whitespace
use slugs for folder hrefs so folder paths get resolved properly
* feat: only use `slug` for constructing crumbs
* fix: remove capitalization
commit cf0c090e3c5af86097e2460b00adc52ef8555e9d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Oct 4 09:23:56 2023 -0700
specify minimum npm version
commit c8f5dbbad3a85749d8a74f5e3e3b222fe547d5d6
Author: Luca Salvarani <lucasalvarani99@gmail.com>
Date: Mon Oct 2 02:20:55 2023 +0200
fix: Fix `Backlinks` not applying the display class (#519)
* fix: Fix `Backlinks` not applying the display class
Fix #518
* fix: Apply `displayClass` to all layout components
* refactor: Use same style
* fix: Remove `undefined` class using coalescing operator
commit ab5efac75fb0f20afe74bef33a2cf7e9ba0ba40f
Author: bfahrenfort <59982409+bfahrenfort@users.noreply.github.com>
Date: Sun Oct 1 11:47:22 2023 -0500
Fix: RSS title escaping (#521)
* Fix title escaping
* npm run format
commit 2f99339dcf93ef50b766263297785a32d9c35250
Author: Hrishikesh Barman <geekodour@users.noreply.github.com>
Date: Sat Sep 30 00:05:26 2023 +0530
feat: add transformations for latex in oxhugofm (#510)
ox-hugo currently supports the following syntax for latex equations:
- https://orgmode.org/manual/LaTeX-fragments.html
- https://ox-hugo.scripter.co/doc/equations
This syntax is supported by mathjax as is mentioned in the ox-hugo documentation.
But quartz uses remark-math which has some issues with the \( \) syntax.
See https://github.com/remarkjs/remark-math/issues/39
This change adds few more transformations to the OxHugoFlavouredMarkdown
plugin, which makes a best effort conversion of this syntax into what
the Quartz Latex transformer plugin supports.
With these changes, the generated files show latex formatting with
default quartz configuration.
Sidenote on `\_` escape by ox-hugo:
ox-hugo escapes, _ using \_, we match against it after we transform
equations into what quartz supports($$ and $).
This could be achieved using lookaround like regex as follows
```js
(?<=(\$|\$\$)[\s\S]*) -> Positive lookbehind for $ or $$
\\_ -> Matches \_
(?=[\s\S]*(?:\1)) Positive lookahead for $ or $$ if matched
const escapedUnderscoreRegex = new RegExp(/(?<=(\$|\$\$)[\s\S]*)\\_(?=[\s\S]*(?:\1))/, "g")
````
But since lookahead/behind can slow things down on large files, we just
look up all equations with $ and $$ delimiters and then try replacing \_
commit 5232d09af520e12bc421cf19ae5d231a7e36cd4d
Author: ArtfulAzeria <146041757+ArtfulAzeria@users.noreply.github.com>
Date: Fri Sep 29 20:17:48 2023 +0200
feat: Better and more responsive tag behavior (#515)
* fix(explorer): default sortFn implementation (#511)
* fix: use `numeric` + `base` for localeCompare
* docs(explorer): update default sortFn
* fix: better and more responsive tag behavior
* tags css moved to TagList.tsx
* used npm run format
* merged tag declarations
---------
Co-authored-by: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
commit 0138085c16856d20d1d2cad5670f1f61c8e500d1
Author: Catchears <57631841+Catchears@users.noreply.github.com>
Date: Fri Sep 29 17:19:10 2023 +0200
docs: fix typo in breadcrumbs documentation (#513)
commit 0b61f6fbfd20556102ce23444ae7eb9348472952
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Fri Sep 29 10:26:15 2023 +0200
feat: implement breadcrumb component (#508)
* feat: implement breadcrumbs
* style: fix styling, move breadcrumbs to top
* refactor: move `capitalize to `lang.ts``
* refactor: clean breadcrumb generation
* feat: add options to breadcrumbs
* feat: implement `resolveFrontmatterTitle`
* feat: add `hideOnRoot` option
* feat(consistency): capitalize every crumb
* style: add `flex-wrap` to parent container
* refactor: clean `Breadcrumbs.tsx`
* feat(accessibility): use `nav`, add aria label
* style: improve look in popovers by adding margin
* docs: write docs for breadcrumb component
* refactor: collapse `if` condition for hideOnRoot
* chore: add todo for perf optimization
* docs: update introduction
commit d4c122646ccd6fc989b4436e16b2dffdc931dee6
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Thu Sep 28 17:39:44 2023 +0200
fix(explorer): default sortFn implementation (#511)
* fix: use `numeric` + `base` for localeCompare
* docs(explorer): update default sortFn
commit d22c3c107a9c6422ef251bd1076ddd9c4fe47a42
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Sep 25 18:15:55 2023 -0700
fix: coerce title to string
commit 697bffdb8b1bef143823f77a118de90286fe325a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Sep 24 14:47:30 2023 -0700
fix: treat the 0 time as invalid too
commit ea5742c328c97a20f7add4994aa7e443fc6f7f39
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Sep 24 10:31:47 2023 -0700
fix: mermaid copy source position
commit 95eec5b49db53801e23b4b47778cb0b6153db83f
Author: Chad Lee <git@chadly.net>
Date: Sun Sep 24 12:27:42 2023 -0500
add site to showcase (#504)
commit c5b9137f12ea372d9196e41ffffc91eee7ad772e
Author: Vince Imbat <96913392+vinceimbat@users.noreply.github.com>
Date: Sat Sep 23 10:39:02 2023 +0800
docs: Adds Vince Imbat to showcase (#501)
commit 13c867322629f5ee59c54b95679585b370e1442b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Sep 22 10:04:37 2023 -0700
feat: add warning for invalid date format
commit a897cc1f531844a2e4da36f8712b7aedec0c5824
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Sep 22 09:43:34 2023 -0700
feat: add warning for missing home page
commit d93599364a3dd0b46068826cf14ed7b25aa59fc3
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Fri Sep 22 17:20:19 2023 +0200
docs(showcase): fix pull request redirect link (#500)
commit fa69c2a5656254251b74dbd5545bef000f67af2f
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Thu Sep 21 19:35:11 2023 +0200
fix(explorer): increase consistency, explicitly use font-family (#496)
* fix(explorer): display name for folders without `index` file
* docs(explorer): add section for folder display names
* docs(explorer): fix broken wikilink
* fix(consistency): explicitly set font + label/link fix
Use consistent styling between folders with `folderClickBehavior: "link"` and `"collapse`
* Update quartz/components/styles/explorer.scss
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* Update quartz/components/styles/explorer.scss
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
---------
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
commit 8eb1554b13532a2441b41d2018800c56cfa84ce9
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Thu Sep 21 18:54:33 2023 +0200
fix(explorer): display names for folders without frontmatter (#494)
* fix(explorer): display name for folders without `index` file
* docs(explorer): add section for folder display names
commit dcdeae4e7bd527945b887ca347b3b4408c03055b
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Thu Sep 21 18:53:19 2023 +0200
docs(explorer): update default config + new example (#493)
commit 48452231d5fcd14ef218928bde9ae7e5bc745f4a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Sep 20 16:09:18 2023 -0700
perf: memoize filetree computation (#490)
* perf: memoize filetree computation
* format
* var -> let
commit 16d33fb77193710bede887d6a177d2144b78fb67
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Sep 20 16:08:54 2023 -0700
feat: display name for folders, expand explorer a little bit (#489)
* feat: display name for folders, expand explorer a little bit
* update docs
commit b029eeadabe0877df6ec11443c68743f1494bc40
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Wed Sep 20 22:55:29 2023 +0200
feat(explorer): improve accessibility and consistency (+ bug fix) (#488)
* feat(consistency): use `all: unset` on button
* style: improve accessibility and consistency for explorer
* fix: localStorage bug with folder name changes
* chore: bump quartz version
commit 6a9e6352e88aa9ff18e5b33cf2de442a250bd960
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Sep 20 13:52:45 2023 -0700
Revert "feat: Making Quartz available offline by making it a PWA (#465)"
This reverts commit d6301fae90d9f922618bf0f413e273156731eef7.
commit 70e029d151ccbb9aeab30a0f811b9f529b7f8818
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Sep 20 13:52:29 2023 -0700
Revert "docs: wording changes for offline support"
This reverts commit 52a172d1a4911080444ff797183e29ba8175741e.
commit 0bad3ce7990aa4ef417128f9d74c2947fe5117fd
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Sep 20 11:58:52 2023 -0700
docs: document enableToc
commit 52a172d1a4911080444ff797183e29ba8175741e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Sep 20 11:40:36 2023 -0700
docs: wording changes for offline support
commit d6301fae90d9f922618bf0f413e273156731eef7
Author: Adam Brangenberg <adambrangenberg@proton.me>
Date: Wed Sep 20 20:38:13 2023 +0200
feat: Making Quartz available offline by making it a PWA (#465)
* Adding PWA and chaching for offline aviability
* renamed workbox config to fit Quartz' scheme
* Documenting new configuration
* Added missig umami documentation
* Fixed formatting so the build passes, thank you prettier :)
* specified caching strategies to improve performance
* formatting...
* fixing "404 manifest.json not found" on subdirectories by adding a / to manifestpath
* turning it into a plugin
* Removed Workbox-cli and updated @types/node
* Added Serviceworkercode to offline.ts
* formatting
* Removing workbox from docs
* applied suggestions
* Removed path.join for sw path
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* Removed path.join for manifest path
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* Removing path module import
* Added absolute path to manifests start_url and manifest "import" using baseUrl
* Adding protocol to baseurl
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* Adding protocol to start_url too then
* formatting...
* Adding fallback page
* Documenting offline plugin
* formatting...
* merge suggestion
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* merge suggestion
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* merge suggestion
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* merge suggestion
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* merge suggestion
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* merge suggestion
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* merge suggestion
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* merge suggestion
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* merge suggestion
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* merge suggestion
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* merge suggestion
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* merge suggestion
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* formatting...
* Fixing manifest path, all these nits hiding the actual issues .-.
* Offline fallback page through plugins, most things taken from 404 Plugin
* adding Offline Plugin to config
* formatting...
* Turned offline off as default and removed offline.md
---------
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
commit 27a6087dd5a25dd5031b86b9917adde6ef4b211a
Author: rwutscher <richard.wutscher@gmail.com>
Date: Tue Sep 19 21:26:30 2023 +0200
fix: tag regex no longer includes purely numerical 'tags' (#485)
* fix: tag regex no longer includes purely numerical 'tags'
* fix: formatting
* fix: use guard in findAndReplace() instead of expanding the regex
commit 1bf7e3d8b3966590ebfa3418d6fb2ce6a520c846
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Sep 19 10:22:39 2023 -0700
fix(nit): make defaultOptions on explorer not a function
commit cc31a40b0cb53cba7f51187cb6d68076c3f54c0f
Author: David Fischer <david@konst.fish>
Date: Tue Sep 19 18:25:51 2023 +0200
feat: support changes in system theme (#484)
* feat: support changes in system theme
* fix: run prettier
* fix: add content/.gitkeep
commit 0d3cf2922618774fc397dca8cb92fcf76fb0db02
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Mon Sep 18 23:32:00 2023 +0200
docs: fix explorer example (#483)
commit 6a2e0b3ad3a928247a03a76817d239e61cce0fe0
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Sun Sep 17 22:04:44 2023 +0200
fix: bad visibility for last explorer item (#478)
* fix: bad visibility for last explorer item
* feat(explorer): add pseudo element for observer
commit e67f409ec1fa36779f59a635eb3e16408275575d
Merge: af41f34b 4afb099b
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Sun Sep 17 21:36:04 2023 +0200
Merge pull request #479 from benschlegel/explorer-config
feat(explorer): add config for custom sort/map/filter functions
commit 4afb099bf3ec96e5d795e871ecb19575271c0714
Author: Ben Schlegel <ben5.schlegel@gmail.com>
Date: Sun Sep 17 21:32:23 2023 +0200
docs: fix examples
commit 6914d4b40caff901ccf3e9d9113c15129a68a80c
Author: Ben Schlegel <ben5.schlegel@gmail.com>
Date: Sun Sep 17 21:20:09 2023 +0200
docs: fix intra page links
commit af41f34bfd4126756e594ce4d6a46d4f4907754b
Author: Christian Gill <gillchristiang@gmail.com>
Date: Sun Sep 17 20:02:00 2023 +0200
fix(slug): Handle question mark (#481)
commit 7ac772fca8bf26c1023f905cdb77e6972a0d4b61
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Sun Sep 17 19:29:20 2023 +0200
fix: darkmode scroll bars (#480)
commit 5cc9253c41fda87ba473df7023567ba66ce3c32b
Author: Ben Schlegel <ben5.schlegel@gmail.com>
Date: Sun Sep 17 16:41:23 2023 +0200
docs(explorer): write docs for new features
commit 94a04ab1c9fd099c808f3f4e6633722e0d13ac85
Author: Ben Schlegel <ben5.schlegel@gmail.com>
Date: Sun Sep 17 15:51:08 2023 +0200
fix(explorer): filter function in `ExplorerNode`
commit 9358f73f1c939ce459d7835457527e35e1bdf857
Author: Ben Schlegel <ben5.schlegel@gmail.com>
Date: Sun Sep 17 12:41:06 2023 +0200
fix: display name for file nodes
commit f7029012dfb73ce04405bfe44e4e4d984818bf5f
Author: Ben Schlegel <ben5.schlegel@gmail.com>
Date: Sat Sep 16 21:58:38 2023 +0200
feat: black magic
add config for `order` array, which determines the order in which all passed config functions for explorer will get executed in.
functions will now dynamically be called on `fileTree` via array accessor (e.g. fileTree["sort"].call(...)) with corresponding function from options being passed to call)
commit fea352849c6972da4b3b8935eb2e86f6cefc76ed
Author: Ben Schlegel <ben5.schlegel@gmail.com>
Date: Sat Sep 16 19:45:21 2023 +0200
fix: create deep copy of file passed into tree
commit 3d8c470c0d298f720614318fb4c14575e72bbd2e
Author: Ben Schlegel <ben5.schlegel@gmail.com>
Date: Sat Sep 16 19:35:27 2023 +0200
feat(explorer): implement `map` fn argument
Add a function for mapping over all FileNodes as an option for `Explorer`
commit 31d16fbd2c82380af586e458b2c1ff29b90b53ae
Author: Ben Schlegel <ben5.schlegel@gmail.com>
Date: Sat Sep 16 19:18:59 2023 +0200
feat(explorer): integrate filter option
commit 036a33f70bcabc17469956740847796a5f13b9ab
Author: Ben Schlegel <ben5.schlegel@gmail.com>
Date: Sat Sep 16 17:47:44 2023 +0200
fix: use correct import for `QuartzPluginData`
commit 58aea1cb0791e18cd092d88de5374431eba7f1d3
Author: Ben Schlegel <ben5.schlegel@gmail.com>
Date: Sat Sep 16 17:28:58 2023 +0200
feat: implement filter function for explorer
commit c7d3474ba8cb49ab0f1978216d80b08ec2c8e5d7
Author: Ben Schlegel <ben5.schlegel@gmail.com>
Date: Sat Sep 16 12:40:19 2023 +0200
feat(explorer): add config to support custom sort fn
commit 422ba5c36586c7ebc31141da8bb539b4157aa01a
Author: Yuto Nagata <38714187+mouse484@users.noreply.github.com>
Date: Sat Sep 16 11:17:20 2023 +0900
fix: umami analytics date attribute (#477)
commit 9ae6343dd0104d44e6bdf083572f987b70ba50c9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Sep 15 10:33:38 2023 -0700
Revert "fix: use git dates by default, @napi/git is fast enough"
This reverts commit 5dcb7e83fc3c8383ebbc84aac4553df4ad3ef59a.
commit 5dcb7e83fc3c8383ebbc84aac4553df4ad3ef59a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Sep 15 09:46:06 2023 -0700
fix: use git dates by default, @napi/git is fast enough
commit 91f9ae2d71d5c28ba7d2182eed5a9f77da1fbe8d
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Fri Sep 15 18:39:16 2023 +0200
feat: implement file explorer component (closes #201) (#452)
* feat: add basic explorer structure„
* feat: integrate new component/plugin
* feat: add basic explorer structure
* feat: add sort to FileNodes
* style: improve style for explorer
* refactor: remove unused explorer plugin
* refactor: clean explorer structure, fix base (toc)
* refactor: clean css, respect displayClass
* style: add styling to chevron
* refactor: clean up debug statements
* refactor: remove unused import
* fix: clicking folder icon sometimes turns invisible
* refactor: clean css
* feat(explorer): add config for title
* feat: add config for folder click behavior
* fix: `no-pointer` not being set for all elements
new approach, have one `no-pointer` class, that removes pointer events and one `clickable` class on the svg and button (everything that can normally be clicked). then, find all children with `clickable` and toggle `no-pointer`
* fix: bug where nested folders got incorrect height
this fixes the bug where nested folders weren't calculating their total height correctly. done by adding class to main container of all children and calculating total
* feat: introduce `folderDefaultState` config
* feat: store depth for explorer nodes
* feat: implement option for collapsed state + bug fixes
folderBehavior: "link" still has bad styling, but major bugs with pointers fixed (not clean yet, but working)
* fix: default folder icon rotation
* fix: hitbox problem with folder links, fix style
* fix: redirect url for nested folders
* fix: inconsistent behavior with 'collapseFolders' opt
* chore: add comments to `ExplorerNode`
* feat: save explorer state to local storage (not clean)
* feat: rework `getFolders()`, fix localstorage read + write
* feat: set folder state from localStorage
needs serious refactoring but functional (except folder icon orientation)
* fix: folder icon orientation after local storage
* feat: add config for `useSavedState`
* refactor: clean `explorer.inline.ts`
remove unused functions, comments, unused code, add types to EventHandler
* refactor: clean explorer
merge `isSvg` paths, remove console logs
* refactor: add documentation, remove unused funcs
* feat: rework folder collapse logic
use grids instead of jank scuffed solution with calculating total heights
* refactor: remove depth arg from insert
* feat: restore collapse functionality to clicks
allow folder icon + folder label to collapse folders again
* refactor: remove `pointer-event` jank
* feat: improve svg viewbox + remove unused props
* feat: use css selector to toggle icon
rework folder icon to work purely with css instead of JS manipulation
* refactor: remove unused cfg
* feat: move TOC to right sidebar
* refactor: clean css
* style: fix overflow + overflow margin
* fix: use `resolveRelative` to resolve file paths
* fix: `defaultFolderState` config option
* refactor: rename import, rename `folderLi` + ul
* fix: use `QuartzPluginData` type
* docs: add explorer documentation
commit 14cbbdb8a2f69ebc51cd53a82b50206c543778b0
Author: Oskar Manhart <52569953+oskardotglobal@users.noreply.github.com>
Date: Thu Sep 14 05:55:59 2023 +0200
feat: display tag in graph view (#466)
* feat: tags in graph view
* fix: revert changing graph forces
* fix: run prettier
commit cce389c81d262d1d2a2bd8140c879efd68e3c6dd
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Sep 13 11:28:53 2023 -0700
feat: note transclusion (#475)
* basic transclude
* feat: note transclusion
commit 4461748a85b8795651d0c02451368dffff607938
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Sep 13 09:43:14 2023 -0700
fix dont show html in search when rssFullHtml is true (closes #474)
commit 6ecdcb5e24f2783e6fa73de69e848f0f319c4fc4
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Sep 12 22:55:50 2023 -0700
feat: resolve block references in obsidian markdown
commit e3b879741b6d32f56e1d1bfd0bac57f0d68c1113
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Sep 12 21:44:03 2023 -0700
feat: rich html rss (closes #460)
commit 60a3c543398aed8caf44b411a4dc10e8d1e26fcc
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Sep 12 21:29:57 2023 -0700
fix: 404 page styling for nested pages (closes #458)
commit 71d81bde1d12aa386ec70be31cc86a37a7426bce
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Sep 12 19:18:44 2023 -0700
feat: rss limit (closes #459)
commit a19df64be8423063c2484ab35300fb0bef324a14
Author: hcplantern <38579760+HCPlantern@users.noreply.github.com>
Date: Tue Sep 12 14:00:21 2023 +0800
fix: callout parsing (#469)
commit 4e23e6724493a8d112c6ff22e14cf4aabd5e9af1
Author: Oskar Manhart <52569953+oskardotglobal@users.noreply.github.com>
Date: Mon Sep 11 08:11:42 2023 +0200
feat: plugin for remark-breaks (#467)
* feat: plugin for remark-breaks
* fix: update package-lock.json
* fix: styling
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* Update linebreaks.ts
* Update index.ts
---------
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
commit a66c239797e3e80e2dc8b7059eee8c51bcf4ca8f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Sep 10 23:07:17 2023 -0700
ci: print bundleInfo
commit 53f1c88738550eb2646cc0a03469dc230839a258
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Sep 8 09:29:57 2023 -0700
fix: more lenient date parsing for templates
commit 06df00b18621f08a211bec33f566ecb7ef4ec22e
Author: Stefano Cecere <stefano.cecere@krur.com>
Date: Thu Sep 7 17:13:41 2023 +0200
typo (it's draft, not drafts) (#456)
commit 2525bfbab5553f970997ea3c60af180cbef1fdd2
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Sep 6 22:24:15 2023 -0700
fix: links to index not showing in graph (closes #450)
commit 828aa71fe34aae675a7552957e8a062c82f595f6
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Sep 6 21:47:59 2023 -0700
fix: escape encoding for titles in rss
commit ef1ead31dccd05f4275405b843ff47fa28a5116d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Sep 6 21:31:01 2023 -0700
fix: encodeuri for slugs in rss
commit 989bee597987bba2aeae4266cb32ac8e899f638c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Sep 6 21:08:08 2023 -0700
docs: correct field for ignorePatterns
commit 8d6029b7b844044d06fe17de89db6881954a8fec
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Sep 6 21:02:21 2023 -0700
feat: 404 page emitter
commit 2d52eba4133293a27f6df98c252785ba4ddee575
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Sep 6 20:25:38 2023 -0700
fix: dont transform external links
commit 6ef4246cf186414d1b8ee868cfa9d24314f0bc0a
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Mon Sep 4 07:36:30 2023 +0200
docs: update `full-text-search.md` (#447)
commit 616a7f148a283b2fd7c5204c60ddf1b08f42d125
Author: Dr Kim Foale <kim@gfsc.studio>
Date: Mon Sep 4 05:29:58 2023 +0100
docs: Make it clearer that wikilinks go to paths not page titles (#448)
commit e8a04efaf1b82560cbcf7694ac6c7dda1c82612f
Author: Adam Brangenberg <adambrangenberg@proton.me>
Date: Mon Sep 4 06:28:57 2023 +0200
feat(analytics): Support for Umami (#449)
commit 7e42be8e46501c752dda9bd174fb93ea9dccec22
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Sun Sep 3 18:32:46 2023 +0200
feat(search): add arrow key navigation (#442)
* feat(search): add arrow navigation
* chore: format
* refactor: simplify arrow navigation
* chore: remove comment
* feat: rework arrow navigation to work without state
* feat: make pressing enter work with arrow navigation
* fix: remove unused css class
* chore: correct comment
* refactor(search): use optional chaining
commit 8c354f6261dda6d9761f594002db53c9d7a8e8e2
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Sun Sep 3 18:06:05 2023 +0200
fix: clipboard button visible in search (#445)
commit 505673acd71e6b023abae19c706a736b257cff2a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Sep 2 18:07:26 2023 -0700
feat: pluralize things in lists
commit 23f43045c49f17fe5ace480f7026855acf2a30b8
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Fri Sep 1 23:12:32 2023 +0200
fix(search): matches getting highlighted in title (#440)
commit 90dac31216b5d3f59e65ec5778e21a308a744e11
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Fri Sep 1 19:09:58 2023 +0200
feat: Implement search for tags (#436)
* Quartz sync: Aug 29, 2023, 10:17 PM
* style: add basic style to tags in search
* feat: add SearchType + tags to search preview
* feat: support multiple matches
* style(search): add style to matching tags
* feat(search): add content to preview for tag search
* fix: only display tags on tag search
* feat: support basic + tag search
* refactor: extract common `fillDocument`, format
* feat: add hotkey to search for tags
* chore: remove logs
* fix: dont render empty `<ul>` if tags not present
* fix(search-tag): make case insensitive
* refactor: clean `hideSearch` and `showSearch`
* feat: trim content similar to `description.ts`
* fix(search-tag): hotkey for windows
* perf: re-use main index for tag search
commit 2d6dc176c3e1fbb520a5da1beb60bbb1d8e948ba
Author: Pelayo Arbués <gonzalezpelayo@gmail.com>
Date: Thu Aug 31 21:12:06 2023 +0200
Adds Pelayo Arbues to showcase (#435)
commit b213ba45e2e706332e057b131adc946f882f090b
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Thu Aug 31 20:55:04 2023 +0200
fix: regex for matching highlights (closes #437) (#438)
* fix: regex for matching highlights
* fix: regex for empty highlights
commit 5fa6fc97899c905b6fbc14fa1d24334f3e68fa77
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 29 10:37:00 2023 -0700
fix: aliasredirects not using full path, add permalink support
commit 1cc09ef76db129fb3670e95560312adeefab913c
Author: Jeffrey Fabian <jeffrey.fabian61@gmail.com>
Date: Tue Aug 29 13:14:54 2023 -0400
feat: support kebab-case and nested tags in Obsidian-flavored Markdown tag-in-content parsing (#425)
* enhancement: support kebab-case and nested tags in ofm transformer
* update regex/capture groups to allow for (arbitrarily) nested values and tags of only -/_
* Update quartz/plugins/transformers/ofm.ts
---------
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
commit c35cd422c65a58f1069302aad0cf9eef7f93d987
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Mon Aug 28 19:00:49 2023 +0200
fix: correct graph labels for `index.md` nodes (#431)
commit 082fdf2e8098ef6bcb46a7dfabf8c6b9fd096346
Author: Jeremy Press <jeremypress1@gmail.com>
Date: Sun Aug 27 20:57:19 2023 -0700
Fix typo :) (#430)
commit b6b1dabde0f63ca0ae743aa7f4266ca892d7b5e5
Author: Jeremy Press <jeremypress1@gmail.com>
Date: Sun Aug 27 17:39:42 2023 -0700
feat: support configurable ws port and remote development (#429)
Co-authored-by: Jeremy Press <jeremy@replit.com>
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
commit 4b89202f7e834cf8b5c5aa39e8f1778706492085
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Mon Aug 28 00:59:51 2023 +0200
cleanup: rework cli to allow invoking create and build outside of cli (#428)
* refactor: move `bootstrap-cli.mjs` tp cli
also update reference in docs
* refactor(cli): move build handler to `cli-functions`
* refactor(cli): move create to handler + helpers
* refactor(cli): extract arg definitions
* refactor: rename handlers and helpers
* refactor(cli): move update, await handlers
* refactor(cli): create constants, migrate to helpers
* refactor(cli): migrate `restore`
* refactor(cli): migrate `sync`
* format
* refactor(cli): remove old imports/functions
* refactor(cli): remove unused imports + format
* chore: remove old log statement
* fix: fix imports, clean duplicate code
* fix: relative import
* fix: simplified cacheFile path
* fix: update cacheFile import path
* refactor: move bootstrap-cli to quartz
* format
* revert: revert path to bootstrap-cli
* ci: re-run
* ci: fix execution permission
commit 52ca312f41ee6da5202cd9632d8501340ada3a67
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 27 12:27:42 2023 -0700
fix: slugify tag on page before adding (closes #411)
commit c91e62c376d481534d89084e5c04846878dff6d3
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Sun Aug 27 02:19:45 2023 +0200
Fix search bar after navigate (#424)
commit ad4145fb10dbf32d8f99e1de555339dba0979f72
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Sat Aug 26 22:21:44 2023 +0200
feat: support CLI arguments for `npx quartz create` (#421)
* feat(cli): add new args for content + link resolve
* feat(cli): validate cmd args
* feat(cli): add chalk + error code to errors
* feat(cli): support for setup/link via args
* refactor(cli): use yargs choices instead of manual
Scrap manual check if arguments are valid, use yargs "choices" field instead.
* feat(cli): add in-dir argument+ handle errors
add new "in-directory" argument, used if "setup" is "copy" or "symlink" to determine source. add error handling for invalid permutations of arguments or non existent path
* feat(cli): dynamically use cli or provided args
use "in-directory" arg as `originalFolder` if available, otherwise get it from manual cli process
* run format
* fix: use process.exit instead of return
* refactor: split CommonArgv and CreateArgv
* refactor(cli): rename create args, use ${} syntax
* fix(cli): fix link resolution strategy arg
* format
* feat(consistency): allow partial cmd args
commit 74c3ebb7bd7ef126246f8ea03565db73cd5e7f38
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 26 10:48:34 2023 -0700
style: fix mulitline callout styling
commit e3265f841637de197e5cf4a5471372b5178f1e4d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 26 10:42:55 2023 -0700
docs: simplify oxhugo page
commit bc543f81d9ada5e61cb9690834a5f83c02997d63
Author: Hrishikesh Barman <geekodour@users.noreply.github.com>
Date: Sat Aug 26 11:22:23 2023 +0530
feat(plugins): add OxHugoFlavouredMarkdown (#419)
* feat(plugins): add OxHugoFlavouredMarkdown
ox-hugo is an org exporter backend that exports org files to
hugo-compatible markdown in an opinionated way. This plugin adds some
tweaks to the generated markdown to make it compatible with quartz but
the list of changes applied it is not extensive.
In the future however, we could leapfrog ox-hugo altogether and
create a quartz site directly out of org-roam files. That way we won't
have to do all the ritual dancing that this plugin has to perform.
See https://github.com/k2052/org-to-markdown
* fix: add toml to remarkFrontmatter configuration
* docs: add docs for OxHugoFlavouredMarkdown
* fixup! docs: add docs for OxHugoFlavouredMarkdown
commit 5c6d1e27baef74a42cc292276c5832b010a38fd5
Author: Hrishikesh Barman <geekodour@users.noreply.github.com>
Date: Fri Aug 25 22:55:46 2023 +0530
feat(plugins): add toml support for frontmatter (#418)
* feat(plugins): add toml support for frontmatter
Currently frontmatter is expected to be yaml, with delimiter set to
"---". This might not always be the case, for example ox-hugo(a hugo
exporter for org-mode files) exports in toml format with the delimiter
set to "+++" by default.
With this change, the users will be able use frontmatter plugin to
support this toml frontmatter format.
Example usage: `Plugin.FrontMatter({delims: "+++", language: 'toml'})`
- [0] https://ox-hugo.scripter.co/doc/org-meta-data-to-hugo-front-matter/
* fixup! feat(plugins): add toml support for frontmatter
commit 340e3ef5116cd99c8ddfdbb3d9e0bbd914e07825
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Fri Aug 25 18:03:49 2023 +0200
feat(consistency): Add `.obsidian` to ignorePatterns (#420)
commit 953ef29f4e238ef9ae186ab79eeec1bf4f3921a6
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 24 12:31:15 2023 -0700
format, ensure ci runs on prs
commit 94ce0883e7fbf38252377af2f144c971a2ff591b
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Thu Aug 24 21:28:06 2023 +0200
style: integrate tertiary color to text-select (#413)
commit 8cf7280614f8c1f2c9aaba5671f388d63bbea4dd
Author: Zero King <l2dy@icloud.com>
Date: Fri Aug 25 02:41:20 2023 +0800
feat: reproducible build (#412)
for sitemap, RSS and contentIndex.json.
commit c8412a5b0ac90d9d7beb7e03ed9a4763e834a865
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 24 10:03:14 2023 -0700
format
commit fc4b8f3d3fad90b6f7d8dedc58201df68da1280e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 24 09:38:00 2023 -0700
fix: ensure recentnotes uses proper date
commit 6cd0612d40a5011f19f5ca2e5e804477779e393f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 24 09:17:43 2023 -0700
fix: add better warning when defaultDateType is not set due to upgrade
commit 9851697b583efdd40173ebbdd484030f2adb0732
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 24 09:05:19 2023 -0700
version bump to 4.0.10
commit c36a9f3fb7c2128610d20312ffb332bd238c89de
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 24 08:56:40 2023 -0700
feat: add defaultDateType config
commit 98d82415dc8d60c3a35ea4dee21c86e406605763
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 24 08:31:06 2023 -0700
fix: lock to never read when site is building
commit 9d2340e90b55fb9480e0901bc7360f3d72e688da
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Thu Aug 24 17:14:52 2023 +0200
docs: fix typo in `authoring content.md` (#408)
commit 8200c8d0402cb40e9f65c49dac5be621360a3a20
Author: bfahrenfort <59982409+bfahrenfort@users.noreply.github.com>
Date: Thu Aug 24 00:57:49 2023 -0500
Revert contentIndex to RSS 2.0 (#407)
commit 2e0e518f5dbddc3b55e9dd1a085c2a88d365b599
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 23 15:16:04 2023 -0700
format
commit 632c27b7ec133d15d890eb28c98eb9716ca01407
Author: Zane Helton <me@zaaane.com>
Date: Wed Aug 23 18:14:23 2023 -0400
docs: update `hosting.md` with Vercel hosting instructions (#406)
* Update hosting.md with Vercel hosting instructions
* Update docs/hosting.md
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* Update docs/hosting.md
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* Run npm run format
---------
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
commit bfb416b35a02dabbdaedc9e3c8980f8b4aadd9aa
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 23 13:10:23 2023 -0700
fix: text wrap in popover
commit 960c1814d07449dd9fd5e70eea770ba762780b53
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 23 12:23:49 2023 -0700
docs: make incompability of trailing slashes clear
commit eed4472aeecdcb0f2b233df69884f03bd45fc293
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 23 12:18:50 2023 -0700
fix: use proper full base for links.ts
commit b99eb7ebce21065b7ff59cdd3226d4fc173b3878
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 23 12:11:16 2023 -0700
docs: whitespace
commit 0aaf88b8521e2bc667cae525356eea3550ad9c96
Author: kanpov <71177577+kanpov@users.noreply.github.com>
Date: Wed Aug 23 22:09:04 2023 +0300
Fix #403 by moving documentation to separate directory to avoid merge conflicts (#405)
commit a1a1e7e1e0c06f2f7b759c5aecd6a9ceba3e2717
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 23 11:36:34 2023 -0700
fix: builds should no accumulate on repeated changes (closes #404)
commit 3209f7c3b7837fd845cbef645155a9484ea0253a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 23 09:19:00 2023 -0700
deps: native addons for lightningcss
commit cde1e26129f8cd6b183ccc1c35a06f76dedeff9c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 23 09:16:44 2023 -0700
deps: install exact
commit 1128efcf237d275343daaab16e1b1d3e228999b9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 23 09:10:30 2023 -0700
deps: esbuild and esbuild-sass-plugin
commit d2f52549955ff7600cc5897e67806df4ebf85f91
Author: Aaron Pham <29749331+aarnphm@users.noreply.github.com>
Date: Wed Aug 23 12:05:01 2023 -0400
fix(esbuild): conflict with esbuild-sass-plugin (#402)
commit 3064839c2d2ea0a9976bef83db12102647572083
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 22 23:37:02 2023 -0700
version bump to 4.0.9
commit b444c5c13b983bf80df8b6d020eb246e9fd3e78e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 22 23:33:58 2023 -0700
fix: percent-encoding for files with %, contentIndex for non-latin chars (closes #397, closes #399)
commit 36548d59866ab3236677ff25af106b882c0694f6
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 22 22:41:50 2023 -0700
fix: toc for cyrillic and other non-latin alphabets (closes #396)
commit 99dbe525d9b221bf12778ed899c94ef103a77c45
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 22 22:27:41 2023 -0700
fix: properly lock across source and content refresh by sharing a mutex
commit 8b63ff882ae28b1a1774293673a7531463d6a5e5
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 22 22:14:16 2023 -0700
fix: tag support for non-latin alphabets (fixes #398)
commit b991cf2ee8a456a15f2b566843d93a9b7a9a0c29
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 22 21:30:31 2023 -0700
fix: spa hijacks back button (closes #400)
commit bb677840fc1ff14637fab8a99841dd532f408fce
Author: 松浦 知也 Matsuura Tomoya <me@matsuuratomoya.com>
Date: Wed Aug 23 01:16:55 2023 +0900
fixed broken CJK links (#390)
commit c60b3d5e3444e46587c1143dab784c53204070ae
Author: Ikko Eltociear Ashimine <eltociear@gmail.com>
Date: Wed Aug 23 01:16:21 2023 +0900
fix: typo in bootstrap-cli.mjs (#394)
commit e10de3febffd3e3b7eaa3aed611aea03153e6a82
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Aug 21 17:01:18 2023 -0700
fix: server-handler crash from filename (closes #386)
commit b69556c918e2a4a27b047e8de6b02861f04d5a9e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Aug 21 16:43:22 2023 -0700
fix: async-mutex not exclusively locking correectly
commit ce7057107266c1d96a909977add472af83f0e9f9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Aug 21 09:14:47 2023 -0700
docs: use canonical quartz.jzhao.xyz, update bootstrap script to point to correct hosting link
commit 8c943f47d6ddedc5da4b9447fec173a16d91758c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Aug 21 09:00:13 2023 -0700
format, update default sidepanel width
commit 2774e976d20226df1554ebddd6c7d2e390cae42d
Author: 松浦 知也 Matsuura Tomoya <me@matsuuratomoya.com>
Date: Tue Aug 22 00:45:47 2023 +0900
fix: opts being overriden in graph option (#384)
commit bb93ac1c83fd8d13593f7f9688de02eba60de913
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 23:50:19 2023 -0700
docs: fix links to networked thought
commit 777ff51c7a704459f9708086845b62aa8fe4e89d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 20:48:35 2023 -0700
format
commit 4e42d52e166dcc3c62775cb3bf86c209d098c158
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 20:47:07 2023 -0700
fix: ctrl + k breaking after page nav
commit d0f67d993507219cfa0824db8a3e59286f0ebf09
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 18:41:37 2023 -0700
move wss server start after http
commit 952d6cb3dd63bb50056198c1d7782314f8976bbf
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 18:08:44 2023 -0700
fix: nav event with spa off, anchor nav refresh page
commit 173ec240d2ed5b25f18ef42823334ae800b3527d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 17:50:56 2023 -0700
fix: jump to anchor on deployed site triggering spa refresh
commit 425c9789a451e69adbba2d99193e38e8915e8804
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 16:59:25 2023 -0700
remove checkout step from instructions as v4 is the default branch
commit 7b7064ad2be68e8d6d43123c12529ca94a325fcb
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 15:38:37 2023 -0700
fix: ensure code exists inside pre before adding clipboard
commit ca17af4ae20b9310da52a3752b8d7744c932f3e2
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 15:02:24 2023 -0700
fix: dont show index page for folder in its own listing
commit 71471117c5ec4acdfc0b8335b4462ab43d86fce6
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 14:34:00 2023 -0700
fix: ci runs on v4
commit e65ea48fae5a279ad4e50594b03621904f84e477
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 14:27:44 2023 -0700
fix: add async-mutex to builds on large vaults
commit b99d4cd8ce99ea1e52a97654ab153774a6bc598a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 14:05:37 2023 -0700
recent notes css fixes
commit 1bb00e72bb4ab8fcac186ef6961e400c60fb07de
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 13:00:33 2023 -0700
add docs for recent notes
commit 236130ac221f7d254ec9881f529f4ca567e15234
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 12:46:37 2023 -0700
css fixes, add recent notes, more robust quartz update
commit 5adf3c67a8f1939b891fadd2c8c30cf201d87943
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 08:57:56 2023 -0700
add engines field
commit 9d77edaf94d23f207552b3a650189810ba2252cd
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 01:08:18 2023 -0700
fix description not being used in folder and tag listings
commit 0ef1b5b522d1d6c0c79cd0538a2d63a9bf71a973
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 00:54:13 2023 -0700
update plausible url
commit cfb7d1232e005736dc549fb24ec5a02d53fc5206
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 00:52:49 2023 -0700
docs: update notes for tag and folder listings
commit 03fd62496f94c7cc007f802fc10290581d08deb0
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 00:02:41 2023 -0700
docs: note about updating default branch
commit d205eb568686a718cae889d51fde5ae18d352b30
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 19 22:19:49 2023 -0700
docs: make setting upstream more clear, docs on npx quartz restore
commit 96a3bfeafbe3e46bdf3e217dd934b026bc1b9f9f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 19 22:04:29 2023 -0700
fix: put quotations around font
commit 95fb6ccfcb5d887f1085bc1b58204b4138a2e804
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 19 21:59:20 2023 -0700
readme fix
commit e26248292179ebb691dfa99621192b2258c9b9c3
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 19 21:59:01 2023 -0700
fix: string for aliases being treated as array of chars
commit eb4d3dc5b405fda29ccde917902483a76835894c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 19 21:55:09 2023 -0700
css: fix scrollbars on windows
commit 90d6c1ed24283d0b046ba7eee2e6533a73cf3683
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 19 21:38:10 2023 -0700
add git fetch to migration instructions
commit 443c1828901f364cb7f5708a64a32494eea28d28
Merge: 791b8e2d a6236d97
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 19 21:16:31 2023 -0700
Merge branch 'v4' of https://github.com/jackyzha0/quartz into v4
commit 791b8e2d9f826de8cd0e3db3aead04ad8c65bc6e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 19 21:16:24 2023 -0700
add sponsors
commit a6236d97cf847a88dc2f72450372d440561032ac
Author: Matt Dunn <55315824+TheRealMattDunn@users.noreply.github.com>
Date: Sun Aug 20 03:15:14 2023 +0100
Adding to Showcase page (#367)
commit b1debaebff5c5753149e02e990439e7e56528852
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 19 18:56:45 2023 -0700
update docs
commit 7b8017413c16c0153c58919ab30e0e2de6e71f02
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 19 18:04:17 2023 -0700
impl baseDir option for quartz build --serve for local testing
commit 6681f28af0bb753918699c41ef9a8421f6b7cd08
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 19 16:55:36 2023 -0700
fix trailing slash causing folder listing to not fetch content correctly
commit 78f4cdbe109308fa33cb87387952aef5a528ebbe
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 19 16:40:02 2023 -0700
avoid 404 on icon for spa navigations with anchors
commit dd47be1bc65d3a8050d6ce9e77cd0e3b10e2a1a9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 19 16:28:44 2023 -0700
improve path resolution stability
commit c874e7e9378a5ba895870e9680484fb4af5c6e93
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 19 15:52:25 2023 -0700
base path refactor to better support subpath hosting
commit 3201f83b70bb2ee1d1daeb585a26e8cd6b8ce95f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Aug 18 18:24:09 2023 -0700
v4-alpha -> v4
commit d8bec631b6dee8f5b9c42f75d154252e53e81b77
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Aug 18 18:22:38 2023 -0700
update docs on github pages and syncing
commit 6f1f820289ce37d328c4bc8cceba1f702df52e15
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 17 23:39:15 2023 -0700
fix typo in docs
commit 8bc7a50dfa91dd7ba6b657aca6dbc437fa6df6b7
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 17 21:54:42 2023 -0700
format
commit 569beb410b967b8511a5d18cdee74280df681d15
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 17 21:49:58 2023 -0700
ensure sync includes untracked files
commit 5713d30670fc9ca1f9d86e6f0698bd011a68f674
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 17 21:24:41 2023 -0700
ensure contentfolder is passed to popContentFolder
commit a13094544318b06902b54a24ea61691fe598a2fc
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 17 21:20:15 2023 -0700
fix when symlink targ is calculated and added npx quartz restore
commit e10f6da01140f483162fe33cc77b2255b0683ac7
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 17 21:08:26 2023 -0700
format
commit a7cca3242ad7adc5163d70aa2cc8ee23c92211e5
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 17 21:07:40 2023 -0700
deref symlink on quartz sync
commit 0998bc355e6425e6b2bdf3d2da7124aa7b63b2a2
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 17 01:58:11 2023 -0700
fix rebuild debouncing
commit 07a327e05aa2a48aa11faf9aa0e049201d622f8f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 17 01:34:50 2023 -0700
fix back button in spa not working between two pages that both have hash fragments
commit 58d9dc0528cc5d7232ac7a237c98213ff1075f39
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 17 00:55:52 2023 -0700
format
commit 0c199975f2d469ecdfd7efcf2ddd16ffa1dc492b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 17 00:55:28 2023 -0700
various path fixes for links to extensions, fix relative paths in links
commit 2dc0ae279cae87e37c94c42d4ad87107f2a5b5d2
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 16 22:09:11 2023 -0700
fix import paths
commit 2f6747b1666316e579c6e7238092ac6a65d00925
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 16 22:04:15 2023 -0700
fix relative path resolution in router and link crawling
commit 232652149a287054df7e7c5136dafd3f55a79bf0
Author: Sohaib <98542228+sohaibology@users.noreply.github.com>
Date: Mon Aug 14 20:59:47 2023 -0400
Update hosting.md (#371)
commit 7bde99b4e2d49e30dad1e0d58ccc34c2e7482005
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 13 17:47:07 2023 -0700
fix: add trailing slash to local serving
commit f1c9ca495e450ecb62dade70c4b60d86e106f79c
Author: vintro <77507980+vintrocode@users.noreply.github.com>
Date: Sun Aug 13 20:19:50 2023 -0400
docs: note about existing content at same path on different branches
commit 4f4b04eeb4f41067e4759bec5c2f5db181150520
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 12 21:18:51 2023 -0700
format docs
commit d6e73f221c3e52ce6591cbd01621530e5f6fd703
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 12 21:16:34 2023 -0700
fix relative path resolution logic, add more path tests
commit 6d9ffd6da508743407b3b88a89ed831b53321d59
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 12 17:44:35 2023 -0700
404 page styling on local
commit c89f8b1a9a20becd982ed0b4bc88b1685a15832d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 12 10:33:57 2023 -0700
fix nested callout folding
commit 8fd496bbef4bc62315f3a0893177da730d8c4262
Author: Sohaib <98542228+sohaibology@users.noreply.github.com>
Date: Sat Aug 12 16:52:16 2023 -0400
Update hosting.md (#368)
commit aed3f5fccbe6a70186b339af4716980a5950b989
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 12 10:17:07 2023 -0700
fmt
commit c55d54f068a102d85dc16c5c0e63db413bc56145
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 12 10:16:55 2023 -0700
enable rich text in callout title
commit 7bffc2183ece33e2d84909a5677dac0ae2563ddd
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 12 00:24:30 2023 -0700
include home page in search
commit 827dd918476e225238d8412551df2866e4f9e616
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 12 00:03:11 2023 -0700
format, make search async
commit e1dd6aee863878a02f51200b3878d619220c22f3
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Aug 11 23:55:17 2023 -0700
fix wikilinks to anchors in the same document
commit 83269ac26e41f8e81b56e000b4347ee60d4ff84b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Aug 11 23:40:06 2023 -0700
fix scanning for tags in content
commit ed62ece491310e75d336db844d8ce56d3d26be31
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Aug 11 23:27:59 2023 -0700
fix broken tag listing links to tags
commit 736c3981c4affff8dea1eb908ff760ee740ec4a3
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Aug 11 23:25:44 2023 -0700
fix emit filepaths, tag emit being overriden by content
commit 79e828696a9e53357f61bd89c36e41555575c2c2
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Aug 11 22:47:50 2023 -0700
feature docs
commit 259d0a6d9ac5a02f0281e3fc061861b23481348f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Aug 11 00:31:44 2023 -0700
more documentation
commit df02ea20d7e12e8b9ffdd2968afaf5893c433488
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 10 21:32:11 2023 -0700
spacing fix
commit 21cc6a5da9edefd199c0b2158b85b8cd10dd901c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 10 21:29:11 2023 -0700
run prettier
commit cefbca4753a7d98f93f57a6452a09f6308e2fe27
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 10 21:16:07 2023 -0700
docs on making plugins
commit ad3f7b2d5fe15af2626250463994f5a9e9ba6d0a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 9 09:18:44 2023 -0700
format
commit ebf3263b7efacc9ac499f3f1f1bbc91451899ae0
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 9 09:10:40 2023 -0700
update npx quartz update script
commit cea6834fef54da59fc1692d1db0221b93793238f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 9 00:26:33 2023 -0700
profiling, better concurrency heuristics
commit 68ccd1d79de7cef275605e238238c1a80bbb074f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 8 22:53:01 2023 -0700
format
commit 49bd6bc3ffe1d3507e00bae62c12d9b045363090
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 8 22:52:49 2023 -0700
better concurrency debugging, --concurrency flag for npx quartz build
commit e4950e06a15e34134b9feb064749748080bd59a1
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 8 21:31:36 2023 -0700
fix getFileExtension missing numeric extensions (e.g. mp4)
commit e21f0f9bb97cbc4bd59f6bce0e0fce451b6d2b01
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 8 21:28:09 2023 -0700
change reading time to content meta
commit ee9ed4f2877bff1a64104b6d97ed0d51b1bb6fa3
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 8 20:36:24 2023 -0700
fix head.tsx
commit 2706a137a042b4bf932b0ace9934914f290605f3
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 8 20:18:31 2023 -0700
guide to creating components
commit 09d4eb0684eac96747778656fc4a8f8085c41388
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Aug 7 23:57:24 2023 -0700
fix notes
commit 533d68e642ca82b540d57a449d0e2c98ed921d6e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Aug 7 23:56:50 2023 -0700
most of creating components, increase legibility of bold in article and callouts
commit 774a162850883468052fd5c5a79cf8786bd96989
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Aug 7 21:51:23 2023 -0700
format
commit 2ac5dd49da34d33e4086630d371cbaf1ed294153
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Aug 7 21:51:06 2023 -0700
fix regression in code block font-size boosting on safari mobile
commit 527ce6546e7ec50e7720ff7b9b6ff79a89c3b7fc
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Aug 7 21:41:18 2023 -0700
various css fixes, fix new image loading bug when previewing, path docs
commit d02af6a8ae4c3bea4c94ad63c118d517318146fe
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Aug 7 17:34:38 2023 -0700
architecture, fix vendor prefixing
commit b4cacd59569c066c52bbe163165c2a30d6ce3ad0
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 6 22:07:33 2023 -0700
format
commit cd9dc6ecb570c08291e73d9db001e6068df4d88a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 6 22:07:08 2023 -0700
fix css transforms for mobile
commit d8d9dd22c9e81f344f3ab56f7262d804c2720fcd
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 6 20:52:17 2023 -0700
fix shortest path for non-md files, mobile fix
commit 075ac33474d5d439b01daf5392738a3ea810b86d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 6 19:54:11 2023 -0700
note formatting
commit 3adc73a703142b3c0475570e4de16701b2797524
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 6 19:52:30 2023 -0700
docs upgrade, ci changes
commit 028bcec62c3ca019a96783f17eaee1ecce6e092b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 6 17:09:29 2023 -0700
mobile fixes, fix bug when linking to anchor on home, docs
commit db6054a8c19703345cfdd6dd4a08f35986c14acc
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 5 18:00:52 2023 -0700
format, remove markdown from being procesed
commit a0d651d64dfd766157324fd86791da2168028cf2
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 5 17:53:29 2023 -0700
reverse query param hack to re-add sourcemap support
commit 1da467d2143a260af8e5b7d2d2f68f0fcaa0260c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 5 16:43:50 2023 -0700
non-admonition callout fix
commit 7c09627df4bd61e3b4fbd6fd84a1971b40ff72b3
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 5 15:34:10 2023 -0700
improve hot reload robustness
commit c402f0c3857a75cc101c3459866c94e646fd2957
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 5 11:28:09 2023 -0700
more robust error handling, config hotreload
commit 9e76b257d4be4b9e6ea7b514074ef74d8d125f4b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Aug 4 22:35:21 2023 -0700
fix mermaid initialization
commit 21a7ec23078c04601acc4741ee141d7560e0d6f2
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 3 23:36:00 2023 -0700
bump mathjax version
commit 6423f85614dc87a320625d2efe2088d648c127ff
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 3 23:28:34 2023 -0700
fix execsync
commit 3a2eae0a16cfc275182f8a26af0a77f0e9bd07c1
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 3 23:24:34 2023 -0700
fix fetch flags
commit 2acfb9e8701d2b001a82a6af75969a1df7d97b67
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 3 23:08:04 2023 -0700
format, add upstream
commit 93986c6e7c8893ae3068bb3ea2ba187e5e1d6f43
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 3 22:29:46 2023 -0700
update pull strategy
commit 4877a9c934201e8f0e4e83821efe2dc3f9299d9a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 3 00:08:13 2023 -0700
fix callout aliases not being used properly
commit 6457496b4b8222d95d9b5ab47e8eda62d7241739
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 2 23:42:49 2023 -0700
readme fixes, force
commit fdf1e2a41d079c4f2d1f3df7c297fa0d92a18cc9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 2 23:29:28 2023 -0700
use checkout for pulling updates
commit 663c41fa41faad1528335a18c73a197ed5c6ea11
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 2 23:04:26 2023 -0700
use posix style paths for all path ops
commit de72dd4e4af550cd72847d7cc0924a5859edb9e1
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 2 22:16:46 2023 -0700
format
commit 5537ca41e0069725e98ef9ad59a2d4dbaa0bd8ae
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 2 22:16:32 2023 -0700
use autostash and pull
commit 558a50916446746768fa43bbdfc8e229d8ec7759
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 2 22:11:46 2023 -0700
format
commit d7842e0ce713e338f21374cea407a46cace18cca
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 2 22:10:13 2023 -0700
make path and globbing more platform invariant
commit 264ea3d54438b30bc7d9280e076e3f6e29d0ff8c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 2 20:59:56 2023 -0700
add gitattributes for windows
commit 0a33ff7a82658ecc6db3bb881db167f69893499c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 2 20:56:31 2023 -0700
fix test matrix for ci
commit 429f331c212d598b0d7ff44f20f75cf007bcf32b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 2 20:53:13 2023 -0700
make ci also run on windows, re-add css minification
commit 9a0f20012a8f5051aa2faac62f91dc4f2a38151c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 2 00:07:41 2023 -0700
windows patches
commit c8c108c7f702ca3710733d6d455ca2661e13e8d3
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 1 23:29:58 2023 -0700
change default strategy to be rebase
commit aaae7d46c21491397b1f723d5ae16cff4f258544
Merge: a70e846b cbae88fc
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 1 22:48:32 2023 -0700
Merge branch 'v4-alpha' of https://github.com/jackyzha0/quartz into v4-alpha
commit a70e846b0a14f3065bbf613221fee0e3b09c12ef
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 1 22:47:16 2023 -0700
flag to allow ofm replace in html embed
commit cbae88fc4e9b98764cfccca2e85f265c4b894573
Author: Adam Brangenberg <adambrangenberg@proton.me>
Date: Mon Jul 31 05:08:32 2023 +0100
Removing redundant properties (#356)
commit cc7950267089648e4329531105fe5f8ba011b1b4
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jul 25 23:37:24 2023 -0700
make layouts simpler to think about
commit 45f9087f03fde7e7d762e25a9f2966d1e6e907f3
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jul 25 22:27:59 2023 -0700
fix checkbox/tasklist styling
commit 1c1a56902371d20e35ad3849cc806a2272f8e8df
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jul 25 21:11:06 2023 -0700
fix formatting
commit cee2883c0889a65e2786d70eb81932f5ed017e59
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jul 25 21:10:37 2023 -0700
nested tag support and tag index page
commit c0278a8c65d74441a6237e0a90c08f8b7b263d95
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jul 24 21:54:47 2023 -0700
font loading options, optimize css
commit e82ba97a396e4e9d77486b48e6ee8b1dfd1c1b4c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jul 24 00:07:58 2023 -0700
actually add processed tag to frontmatter
commit 041a4ce7bc39c65483eaeeddc97e6946cb49f540
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jul 24 00:04:01 2023 -0700
fix watch-mode batching
commit 569ff1a801f92c0761b5ddc9dbff52833b193c94
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 23 21:53:34 2023 -0700
npm i on quartz update
commit 351b4ab13be6b1e43eb286ffac2646d0479ba678
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 23 21:41:09 2023 -0700
styling fixes for stacking order and overflow
commit 4811500b1b9c169aac82254d771677cd6dc2a86c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 23 18:20:43 2023 -0700
make component resources a proper emitter
commit 236ba56be17f53f701fcfc6ca81b867defa433bd
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 23 17:59:44 2023 -0700
version bump, update doc
commit 7c2bb4ee4c4ee4d6abc8f7f3757d40c039a1bcac
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 23 17:58:35 2023 -0700
bundleinfo flag, minify scripts
commit 8fd75ffbfda30edd5a134a1fbf9b81ac3cebb2ff
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 23 17:42:00 2023 -0700
support attachments folder
commit 55a1fb8c41b6a34cc5cdfc5ec2533ed1f642211d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 23 17:09:12 2023 -0700
format
commit 9e83af04a78d5988bd517bcc61c48998bbfa17ef
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 23 17:07:19 2023 -0700
refactor static and asset emission to be actual emitter plugins
commit 000eb4c3c0ce6451702202824b49f609a45ab6f6
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 23 15:37:06 2023 -0700
update feature list
commit 5599eb590e1b9163d41847153545764ed9b02ff6
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 23 14:02:57 2023 -0700
feat: process tags in content
commit ae2e3b463a91d94caa8bdf62e5c3a3d726b8b4e4
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 23 11:49:26 2023 -0700
improve error handling while serving
commit fd7c33c5372dd61283fc44f4dccbff0e71fcbf5b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 23 11:19:15 2023 -0700
style fixes for search bar and title on mobile
commit 76fdb3b4d8f2060cf742911d28c0654fe7280609
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 23 11:04:20 2023 -0700
fix styles
commit 27a5f7ef8ef0b52ade767138ebd1e202f8b66476
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 23 11:02:45 2023 -0700
various typography and styling fixes
commit ab228748abb85474a1c1f5f9410ad8e1167e2c23
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jul 22 17:42:13 2023 -0700
oops actually use npm run check
commit 76fa9bbe00eba4249b12ef7c86ccdac4faa6051f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jul 22 17:39:10 2023 -0700
run prettier on ci
commit 7db2eda76cf51fd631d385c12a7b411339406067
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jul 22 17:27:41 2023 -0700
run prettier
commit 2034b970b649b37347921842b5223a7274e34d89
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jul 22 17:26:03 2023 -0700
configure prettier
commit 8dd73704e6e95254d2addf51fede6329f90796b8
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jul 22 16:06:36 2023 -0700
hot content reload
commit b7966ff7fa2829ac9d128f1d560a2b98149514ac
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jul 20 21:51:55 2023 -0700
update features list
commit 01d7d8e55448abe0a929d8730c735bed5d929048
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jul 19 23:03:59 2023 -0700
fix tag pages to emit to tag/index.html to override content and folder pages
commit 83d47f7aaa247371ad8a51b8d5245afe8f4af620
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jul 19 22:00:44 2023 -0700
rename github action
commit 76c092dcf20959bc52fcb13b28cee50cd4217e40
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jul 19 21:59:48 2023 -0700
add custom.scss
commit 410fc9c8d37b0c4118c70678db5d2e55a842f486
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jul 19 21:59:39 2023 -0700
quartz update and quartz sync
commit 8e0ba45789a81ee28f6c67468f7fcf9ea45832db
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 16 10:39:35 2023 -0700
add link resolution prompt to quartz create
commit f82282367efd41192716fbb89e5a8756ff73bd5a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jul 15 23:33:06 2023 -0700
treat _index as index
commit a3e4c86a4cf18e31fe5b65d57ce120174c9f6aee
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jul 15 23:05:17 2023 -0700
fix ci, disable strict path type checks by default
commit 3ac6b42e16dca5a44ed3fec2c0314f1dbbc2322b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jul 15 23:02:12 2023 -0700
finish path refactoring, add sourcemap + better trace support
commit 906f91f8eed5e91a7afae95c7002a3e4553d6aae
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jul 13 00:19:35 2023 -0700
base path refactor, more docs
commit 08f8e3b4a4879dd7c91c16fbce80c4f2bc5e357f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 9 19:32:24 2023 -0700
docs + various polish
commit b90590b9f487cdd49f019375fa5a09aad2e8ec1f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jul 8 14:36:02 2023 -0700
polish
commit b3480bdc49120010da8d2805df02cbf84ca08bdc
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jul 6 19:18:18 2023 -0700
fix styling for bullet points
commit 9cbacca2d4062e2b2e512f761ab580218c623b33
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jul 6 18:45:38 2023 -0700
handle dates as tags
commit 05d1ca01c39e18fa08776d4800e201abf8779f3c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jul 6 18:32:48 2023 -0700
handle string tags
commit f7bf4038dc7fcf3adc09697797da1c68c932eadc
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jul 6 16:56:30 2023 -0700
fix path parsing
commit 465804a389f77807f68ca048cf9d7fac1314d8c5
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jul 5 00:16:06 2023 -0700
basic docs, remove publish, add quartz create
commit 92ca78709227c6117797c52eada7d471bb4ba96a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jul 4 18:26:11 2023 -0700
fix default callout state
commit fe2852ff258eabfab49af98619c9b5b9f41e004c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jul 4 18:08:36 2023 -0700
update package
commit 974b0da3086d21aabf5ef1a3eefa50675c0d4e95
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jul 4 18:02:59 2023 -0700
folder and tag descriptions, re-enable relative pathing
commit 2a17431460770b3375b455815f503781f7448c20
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jul 4 17:14:15 2023 -0700
fix popover zindex
commit 38cff2d670ecf7fd325aaaf776a4c250a72cc661
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jul 4 16:48:36 2023 -0700
more visual polish, adjust colours and spacing
commit ab9da02c60c962128820e6874e6f07c98bc3dda7
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jul 4 10:08:32 2023 -0700
fix indexing causing main thread freeze, various polish
commit e0ebee5aa9b3646de722f139f1d8d15591df538e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 2 13:08:29 2023 -0700
various polish
commit 4c904d88aba14d0d153bfac364630ad61832a73d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jul 1 13:35:27 2023 -0700
rss + sitemap
commit ba9f243728cab171f86b40b9d50db485af272a39
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jul 1 00:03:01 2023 -0700
tag and folder pages
commit 24348b24a94c5f9ca285642b751e6798b92eedd9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jun 19 22:50:25 2023 -0700
fix: parsing wikilinks that have codeblock anchors, scroll to anchor
commit fd5c8d17d3b3cd0a13b0a21a2b78d85010e02e12
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jun 19 20:37:45 2023 -0700
basic search implementation
commit c4cf0dcb022ff826433b63b8ff68830bb8503895
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jun 18 10:47:07 2023 -0700
local and global graph
commit 8bfee04c8c6948a88114d53769d4bb89b8ec7bf5
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jun 17 16:05:46 2023 -0700
popovers
commit cb89cce183215f6a8edcb6d166875e2982586002
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jun 17 14:36:06 2023 -0700
basic left,right layout
commit b5877824500a19c721c93eedc59704db94487a94
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jun 17 13:08:06 2023 -0700
collapsible callout
commit 6d5491fdcbccfad7af6c6dcc63ce2f67abd3850c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jun 17 12:07:40 2023 -0700
collapsible toc
commit 917d5791acd6361c691902b445bdc4f7129ba3fc
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Jun 16 19:41:59 2023 -0700
modern toc tweaks
commit 9d2024b11c7c24ec8112b5019504fc44b4e1a297
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jun 12 22:41:42 2023 -0700
taglist, mermaid
commit 2bfe90b7e64839d8ec6319fe93b76472b0285114
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jun 11 23:46:38 2023 -0700
add config to components
commit 352075ae81a3304a7bfa2512ef69b1cdacb26c12
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jun 11 23:26:43 2023 -0700
refactor plugins to be functions instead of classes
commit b8c011410d6bcd6837f4efd6a3948196a0f7aeea
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Jun 9 23:06:02 2023 -0700
toc
commit 3a29f4c86ee7ed13fb8683b2728a856581e32de7
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Jun 9 19:58:58 2023 -0700
add custom spa solution
commit 59109a8c1d505f516d50d6b7f88cfe070bc1ca84
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jun 7 22:38:45 2023 -0700
add flamethrower router
commit 317cce9314ad78d90714dc55aa82a2c3dfa75d1a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jun 7 22:27:32 2023 -0700
generic quartz component for layout
commit dde36fa5589a362b60b7b72eb7793a3f133e159c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jun 7 10:52:53 2023 -0700
update gh actions
commit 1cb4dadf13913009660685b6f2c163c939e2a51a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jun 6 21:19:00 2023 -0700
codeblock copy
commit 0813f127a30b376c5d5552a8cdb6e5cad5969c38
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jun 6 20:58:26 2023 -0700
fix darkmode script load
commit 4d3579ca9876d3ca6612589d116c3a300a60b446
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jun 6 19:48:37 2023 -0700
darkmode scripts
commit 89e0311a98732201651a6a6c1eea3e9656e28fb2
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jun 6 00:00:38 2023 -0700
embeds
commit 700036e84c805ab0a59f88b368006a28a97b76d1
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jun 5 22:14:17 2023 -0700
callouts
commit 1406ee0f05dc688e1b7635d3ce14e63d1c42a973
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jun 4 13:37:43 2023 -0400
update spinners
commit 9ad89997a533744695b380b315f1f70293bb30c4
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jun 4 12:35:45 2023 -0400
multi-core builds
commit 4bdc17d4a11f0ba517c6d9124d296458332c536b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jun 3 15:07:19 2023 -0400
inline scripts
commit fcd81353f88b613e5e93c089e10e530d08695b3f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jun 1 19:48:38 2023 -0400
heading linking
commit 04eeb2d10c2bb8cac595a879446c1dcbfac4d6a6
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jun 1 19:05:14 2023 -0400
syntax higlighting
commit 42d3a7de1711bbd40a2b6857e3bf7ff17685f5d9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jun 1 17:35:31 2023 -0400
scss support
commit c1c46ad67e58884389fb59c17d81845fe0fbcad0
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jun 1 12:33:20 2023 -0400
obsidian flavored markdown support
commit 3636c052eb054d93a8a3ddfb9fdd873d5fe83a5d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed May 31 17:41:44 2023 -0400
link processing
commit 21c007e2fcf73fe4ef04dd07db7116afed46047a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed May 31 17:01:23 2023 -0400
rendering, link resolution, asset copying
commit ad6ce0d73fbd015e00e59ec30bda3cc8de777832
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue May 30 08:02:20 2023 -0700
plugin integration round 2
commit a757521313fb2c623d4dfda95eb97d3189bfe253
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun May 28 17:44:08 2023 -0700
base setup
commit 7b1da7a8456b0404ad4ebcb8afd523a6618439ff
Author: BSD-Yassin <103321053+BSD-Yassin@users.noreply.github.com>
Date: Thu Apr 27 20:12:56 2023 +0200
i18n: Update fr.toml (#313)
commit e482fa10970fd6a0c1c0ec836db84ba4187bc8f7
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Apr 6 15:06:01 2023 -0700
fix: graph and tooltip sometimes not showing
commit ba7a968881083b9d3b3b6ecd65df076e76bcb164
Author: Mattia Ippoliti <Ippolitimattia@gmail.com>
Date: Sat Apr 1 22:50:08 2023 +0200
fix: padding for empty title callouts (#308)
commit db27557aa307921cf035b7f62d9d9f2b452b1018
Author: Md Jawad Noor Asif <jawad.asif.bd@gmail.com>
Date: Thu Mar 30 17:14:06 2023 +0600
fix: search highlight not showing because for trailing slash (#306)
commit b7c305e0024ca78c1d9f9d7a5107ffc124c56ab1
Author: Mike Walton <walton.myke@gmail.com>
Date: Wed Mar 22 22:56:20 2023 -0700
adding myself to the showcase (#301)
commit 74fe4d6813dfce9760464141410b683bd8964d45
Author: Daniel Lazaro <daniel@dlazaro.ca>
Date: Sat Mar 18 12:20:56 2023 -0400
docs: Update link to callouts documentation (#300)
commit d6c31595b320562313010ca68002942ac951a069
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Mar 16 10:33:01 2023 -0700
deps: bump hugo-obsidian
commit aa5ab03d4ad6e7cb4d9efd3f9c177ebde7e4c4af
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Mar 2 09:14:29 2023 -0800
docs: update to account for github changes
commit ecba6071b899d62492c3970924bbf24c2ba951f3
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Feb 25 13:04:15 2023 -0800
deps: bump hugo-obsidian
commit 983efab94c31bb19b532e120f2f70f45f788b7c8
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Feb 12 16:46:11 2023 -0800
fix: recent notes partial sorting
commit 10e41743e5df81195479aa2dd3ba4d5fb5b1ebf3
Author: Dev Uni <wlwhsvkdlxh@gmail.com>
Date: Wed Feb 8 01:38:20 2023 +0900
fix: Bad UI due to head.html (#284)
commit bde44fadf20a1f91a466653f9552ce8bd658e2f9
Author: Simon Späti <simu@sspaeti.com>
Date: Tue Feb 7 09:16:15 2023 +0100
feat: Adding Twitter and Social image preview including description (#207)
commit 6885651f7b4504446b456a2e61a85f1b787b3873
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Feb 6 12:58:34 2023 -0800
feat: max-width for large screens
commit 7df2bb6f5e681ce3329e4faf6ac6cbcda7a3f14e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Feb 5 12:01:49 2023 -0800
fix: fix duplicate link click tracking
commit 11959de11ce76f0f47284b946a577481c0ffaeaa
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Feb 5 11:34:39 2023 -0800
feat: add more plausible events
commit a73aca8ed9c16915928206bad6fa0ccf4e9b2b8b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Feb 5 10:39:58 2023 -0800
feat: switch from GA to Plausible for analytics
commit 93610e232b366c6f6cb9695d4755fa578dc28aa0
Author: Adam Brangenberg <adambrangenberg@proton.me>
Date: Wed Feb 1 21:34:18 2023 +0100
feat: Remove leading slash of folders in graph view (#282)
commit 712dab5c8cd8933d9cdb63d4c833940c461a09da
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jan 31 11:00:28 2023 -0800
docs: remove broken links from showcase
commit 77b3907b23b6d453dd7bfa04e4cef6f28d68ca54
Author: Olivér Falvai <ofalvai@gmail.com>
Date: Tue Jan 31 19:48:20 2023 +0100
docs: Clarify Obsidian settings (#280)
commit 8fc63586c428f1d9dcb1e084c0d9a48802b15582
Author: herrwinfried <ozgurarslln@icloud.com>
Date: Sun Jan 29 23:14:11 2023 +0300
feat: Added Turkish translation (#275)
commit 24c9777a5202a9fc9a86525955ba08ec3b2dc6ec
Author: Apoorv Khandelwal <mail@apoorvkh.com>
Date: Sat Jan 21 10:01:05 2023 -0800
feat: Embedding multimodal assets (#274)
commit 7a8811a184c8bd6206ee041d6486b7e456d5a84a
Author: Quadrubo <71718414+Quadrubo@users.noreply.github.com>
Date: Wed Jan 18 17:25:01 2023 +0100
added the liveReloadPort as an option for docker (#272)
commit eb2f6aeca891135389e58da0016c60af1363df61
Author: chaosarium <38693485+chaosarium@users.noreply.github.com>
Date: Mon Jan 9 17:14:11 2023 -0500
Fix callout behaviour inconsistent with Obsidian (closes #168) (#268)
commit b78008532f09dce26018ea7ea544f0e40d36756d
Author: Md Jawad Noor Asif <jawad.asif.bd@gmail.com>
Date: Tue Jan 10 04:12:52 2023 +0600
feat: Added Bangla translations (#266)
commit c5b103c85feafa96d5e5ecc572b043331d4a6bd4
Author: Md Jawad Noor Asif <jawad.asif.bd@gmail.com>
Date: Wed Jan 4 09:10:25 2023 +0600
fix: fix unicode broken tags (#261)
commit 614a6222a1638c159d2ac9c005be5b2ddec78dd2
Author: Adam Brangenberg <adambrangenberg@proton.me>
Date: Thu Dec 29 16:43:41 2022 +0100
refactor: General performance/style improvements (#262)
commit dc4373789617a58d517eac59c3e60fabb47eafd0
Author: chaosarium <38693485+chaosarium@users.noreply.github.com>
Date: Sat Dec 24 12:10:59 2022 -0500
fix edge cases link processing (#258)
Fixes https://github.com/jackyzha0/quartz/issues/176
commit ea37486309409048681496fb2449c1182d0f44eb
Author: toof <toof@toof.jp>
Date: Sun Dec 25 00:38:49 2022 +0900
fix: fix misspelling (#259)
commit c1b0eafce668c0c7498a5875c23c074eeb71e842
Author: chaosarium <38693485+chaosarium@users.noreply.github.com>
Date: Thu Dec 22 13:34:21 2022 -0500
feat: Added simplified Chinese translations (#257)
commit ce5df837f5f6ed57f9e9f85439ee9a40ebf234dc
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Dec 3 21:03:12 2022 -0800
feat: latex in search results
commit 4cd6f7efdf9161f1a1c7ad381d5bc4f2828eedb8
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Nov 30 18:00:12 2022 -0800
fix: text highlighting
commit 5a7936e23af000d7cefbf2dcb2ba4c16f1f993dc
Author: Apoorv Khandelwal <mail@apoorvkh.com>
Date: Wed Nov 30 17:41:05 2022 -0800
fix: Replacing "internal-link broken" with link to asset (#232)
commit 5fd707714faaaac5c3d39ec056ff88446fcb3cc2
Author: Jon Erling Hustadnes <jonerling.hustadnes@gmail.com>
Date: Sun Nov 27 19:55:43 2022 +0100
feat: Added Norwegian localization (#242)
commit 717a13a580fb82063d40525bcc63cd1d36f5994a
Author: Filippo Andrea Sighinolfi <83777862+Sighi-04@users.noreply.github.com>
Date: Sun Nov 27 19:55:13 2022 +0100
feat: Added italian localization in i18n/it.toml (#239)
commit 5f3d4306997e87437b4c9de97aa9eed355133965
Author: Brendan Ang <53790951+bbawj@users.noreply.github.com>
Date: Mon Nov 28 02:53:52 2022 +0800
feat: add support for mermaid diagrams (#244)
commit 66f3e249fe90cba366a99fe08f0898af27fe59e6
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Nov 23 08:34:19 2022 -0800
fix: only run docker publish on main repository
commit e374e3abd42c1719ad1fdc6bd9c641efb2ddf954
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Nov 21 23:36:27 2022 -0800
fix: jump to search for operand
commit f08a76a738235d1ad8e0b17f74988386dcfd86cd
Author: SafEight <43656822+SafEight@users.noreply.github.com>
Date: Mon Nov 21 21:05:46 2022 +0000
fix: External links ending in .md don't get trimmed (#236)
Co-authored-by: SAF <saf@saf.saf>
fixes https://github.com/jackyzha0/quartz/issues/229
commit d80f6946c854365336062f71f0c922fb42beea54
Author: Morgan Gallant <morgan@morgangallant.com>
Date: Tue Nov 22 01:54:45 2022 +0900
fix: Semantic Search: Use Operand Beta API (#235)
commit 120d104230b1c762a57eb41240e18aee6c289c08
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Nov 20 15:14:48 2022 -0800
update config for search
commit e9aa6ae9e7ec1792b11ebcb6cac606c47ae3cf7d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Nov 20 15:09:58 2022 -0800
feat: docker docs, semantic search alpha
commit c12af32a5ade0240630ff3b9fc11d877d6a16825
Author: Apoorv Khandelwal <apoorv.khand@gmail.com>
Date: Sun Nov 20 17:03:53 2022 -0500
feat: Dockerfile and automated container build (#230)
commit de2b6b9a1b95cb6af7eb421d9a4de054e7e41315
Author: SafEight <43656822+SafEight@users.noreply.github.com>
Date: Sat Nov 19 21:17:55 2022 +0000
feat: Replace == with <mark> (#234)
Co-authored-by: SAF <saf@saf.saf>
commit 7f9f58860dc98038798e362e52c5d39c750858cb
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 19 11:18:57 2022 -0800
feat: allow enableToc to override default no TOC on a per-page basis
commit 151b9851d6828ef28ed75a40e12be01e421b94d8
Author: jet457 <abhmul@gmail.com>
Date: Sat Nov 19 13:10:41 2022 -0600
docs: add Abhijeet's math-wiki to the showcase (#228)
commit d56a58044dcc619f6e26674316e7c38fc8ace8c4
Author: saucecoat <43880196+saucecoat@users.noreply.github.com>
Date: Sun Oct 30 06:08:44 2022 +0000
Added German translation (#223)
commit 689201bfbde5bd48b001bfa2b54db6a1d5a4aa81
Author: Conor <hzk@konor.fr>
Date: Wed Oct 26 18:12:35 2022 +0200
feat: Add French translation (#221)
commit 9b72edcd9cce10d6064e4e8b2f61b7db2966515d
Merge: 8704edcc 0a602eda
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Oct 25 13:14:13 2022 -0700
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit 8704edcca2f14c8662affa5a730083949f3f5749
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Oct 25 13:14:06 2022 -0700
deps: bump ubuntu version (closes #218)
commit 0a602eda1bc0c5446dbbc2917b3c3dcd1ad99c6b
Author: Evan Cater <evan.ecater@gmail.com>
Date: Mon Oct 24 12:13:35 2022 -0400
fix euler's identity (#220)
commit 72571a75884a10cd78205d79a5e475e17a4d9451
Author: Javier Zaleta Martínez <94091554+javierzaleta@users.noreply.github.com>
Date: Tue Oct 18 19:25:55 2022 -0500
feat: Add Spanish translation (#217)
commit 3409a49f156263aa36ca866e0d2b0b16645c2162
Author: Charles Chamberlain <charlesetc@users.noreply.github.com>
Date: Sun Oct 16 12:43:43 2022 -0400
fix: Apply monospace style to all meta in a popover (#216)
commit 666ffebe90c04dc7fe064a98232538826af70738
Author: Pavol Komlos <62595149+plundration@users.noreply.github.com>
Date: Wed Oct 12 17:21:28 2022 +0200
Decode the heading id from split link (#214)
commit 8ea1525df40751af2702a508c3ecf2edf2d76107
Author: Seth <37915796+iSaluki@users.noreply.github.com>
Date: Mon Oct 3 19:45:54 2022 +0100
Add SethMB Work (#203)
commit dd11d56dd986c82914ce529fb43c8e2beb78a094
Merge: cd7e2088 169ef442
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Sep 23 10:17:34 2022 -0700
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit cd7e2088d564023b073a458282e3a63b7a108c0b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Sep 23 10:17:28 2022 -0700
feat: hide TOC when no headers (closes #204)
commit 169ef442b9ae1a61af516edc5c90ff0299d91a25
Author: Simon Späti <simon@airbyte.io>
Date: Wed Sep 14 19:05:51 2022 +0200
Adding reference projects (#196)
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
commit 8e3042df4901885b051300c5ae2131bdcc613a57
Author: DongDong Chen <cdd2zju@gmail.com>
Date: Thu Sep 15 01:05:20 2022 +0800
add my showcase : oldwinterの数字花园 (#192)
commit 2145e92b004909070bd4a20d0f9fd1c0ddc70756
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Sep 12 11:08:07 2022 -0700
fix: make latex rendering size more simialr to obsidian
commit e6c7a4e1e2e3b0437b5dbbbeb7abc4e05622db16
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Sep 11 18:03:55 2022 -0700
fix: latex rendering bugs + patch for #195
commit ca84da5b31fa00ca6c729a9b500efeb28f90b41b
Author: Nikola Georgiev <42315052+nikolageorgiev2000@users.noreply.github.com>
Date: Mon Sep 12 01:05:14 2022 +0100
feat: Hide full path to file in Wikilinks by default (#195)
commit 0d1670adbaa63e4972bd560efd3c046eb03e48ca
Merge: 5c770f96 ce55eca7
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Aug 29 14:23:19 2022 -0400
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit 5c770f965a6af0d40926640d957e7841f71b908b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Aug 29 14:23:04 2022 -0400
Update Quartz version in documentation
commit ce55eca73bdfc6c043137dcbd7a2bda24cfce9af
Author: Andrii Yefremov <56955307+decatetsu@users.noreply.github.com>
Date: Mon Aug 29 21:15:18 2022 +0300
Add Ukrainian translation (#191)
commit 591c4813ec8ee700caa45253464290d315d57603
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 28 01:09:52 2022 -0400
deps: bump hugo-obsidian version
commit 83e7aec3c9dca4dba4b25605f5c88a7a3cecf386
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 24 00:45:08 2022 -0400
fix: tag list styling
commit 25ba1159ad5cabfe79c80a40ead158c389a68bef
Author: Youssif Shaaban Alsager <ysh-alsager@hotmail.com>
Date: Wed Aug 24 05:32:40 2022 +0200
feat: Add internationalization (i18n) support (#182)
commit e38eaa94d6d0d91486bd3b778102658a36ee254f
Author: Vincent Huang <vincenthuang75025@yahoo.com>
Date: Sat Aug 20 20:31:06 2022 -0500
Popover preview should show relevant heading (#180)
commit a78926ede5a951b2ba48e506c93d25060e240c0e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 11 11:42:16 2022 -0700
feat: link previews to page-list (closes #173)
commit 5c76d8dad9d993010c4e57c6de4e90911a3cd11a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Aug 5 11:08:52 2022 -0700
fix: make callout detection case-insensitive (closes #171)
commit 3dcc1f1106c1ad81cf6cd0a45f51249d719d694f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Aug 5 11:04:01 2022 -0700
feat: better graph scaling (closes #170)
commit ff770927fdbb13e07572b3993686686da4493cc9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 4 14:50:24 2022 -0700
style: _callouts.scss simplification (#169)
commit 7ffc907907b14722bf691d1cbd5f178c1c0943a6
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 3 23:46:55 2022 -0700
fix: CJK search (closes #163)
commit 6dd4c64a4c09eed71718fe67491dda95f286d345
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Aug 1 07:59:49 2022 -0700
fix: highlights being stripped in non-semantic search mode
commit 8fc6b8e28ebd08eb05aea80e602b9f279f660b5b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 31 18:21:17 2022 -0700
docs: update, re-added debounce
commit b10b23a47bb822bc3eee671d24fd954ec8d74a7d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 31 18:02:06 2022 -0700
docs: add documentation for Operand Search, remove debounce
commit 23380d0519365d09cb629a66fe2ccba1c56e91f2
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 31 16:55:25 2022 -0700
fix: title not being selected properly, bump hugo-obsidian for uri fix
commit dd047305afa0618d2a5cd11baec064a1c74ccb90
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 31 12:33:36 2022 -0700
deps: bump hugo-obsidian to fix bug of writing to non-existent directory during build
commit 54a8fd4a563bd3de815aaae2c9d9efd57e65be22
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 31 12:24:53 2022 -0700
deps: bump hugo-obsidian to properly copy linkmap
commit 5ef9aad501f17b57107a35508a093211ecf2dbd8
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 31 12:16:36 2022 -0700
feat: add support for semantic search using operand
commit 14b89105dc10eeb3b9b48abf16eda2b9420c64a0
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 31 10:54:23 2022 -0700
refactor: move search utils to util.js
commit 93d039fe7cf14246477844aa1b116585a260003d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 31 10:14:36 2022 -0700
deps: bump hugo-obsidian version
commit 234c707a93e1dbe438d0a45f1348cc6c39e2a265
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jul 30 18:46:19 2022 -0700
docs: improve scss structure and admonition styling, update docs
commit 728d8529ec1a782752abd9254fbc4cae11b8468a
Author: Emile Bangma <ewjbangma@hotmail.com>
Date: Sun Jul 31 02:29:26 2022 +0200
Support Admonition callouts (#166) (closes #88)
commit e142f37e8dea7f6f502026cc35ea02390be63556
Merge: d747b19e 1f3da4b8
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jul 19 09:03:26 2022 -0700
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit d747b19e6104def4b550d86b2ce6ce923773d8ad
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jul 19 09:03:19 2022 -0700
docs: copy edits
commit 1f3da4b8292a7c2ef7eafe9b3a00ef40eb30edac
Author: Pranav M <pranavm7@outlook.com>
Date: Mon Jul 18 11:45:36 2022 -0400
feat: edit the clipboard button to change border colour on success (#162)
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
commit e15e39155de54dc1624bab80eefbccd6a783cd0c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Jul 15 14:26:31 2022 -0700
fix: give precedence to date created over last modified if defined (#101)
commit dff5ae0d4debfdb2de226984e86a987d99d039ad
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jul 14 13:09:21 2022 -0700
style: improve header anchor styling
commit b2555ced61628008e9a1321921376c3f9fb53791
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jul 14 12:02:35 2022 -0700
feat: add description section to section/term/taxonomies, fix header margin
commit 7ccff2cf3d4f7a96be2cf890093798067951fd2e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jul 14 11:49:47 2022 -0700
fix: styling on page-list for smaller screens
commit e0b6606d500e69cc52715729f075808de90f376b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jul 14 10:38:34 2022 -0700
fix: make section-li scss more generic
commit d7a42a2fd7919ac37ff98be31edc34c3511d255f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jul 14 10:30:07 2022 -0700
feat: improve styling for lists, fix anchor offset
commit 422b6cc25bec38785e52f304261f7a7f392ec9e4
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jul 13 23:51:33 2022 -0700
feat: css typography improvements
commit 22c8981bb9a97743f02ab5d5feabda7ff5a6afc4
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jul 13 23:37:54 2022 -0700
feat: css refactor for easy font change
commit 8b2a82a96a2c7c3f40fd5648c756db3408947fdb
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jul 13 22:27:13 2022 -0700
fix: change / to use base url
commit 81af8c459bc9924b8c7137aee9385ed5f5deeb3c
Author: y1450 <107429941+y1450@users.noreply.github.com>
Date: Thu Jul 14 00:02:11 2022 +0200
fix: remove console log (#159)
commit ffe22689eb43f42afc2d6bcf9b8b190b19a7e5d1
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jul 13 15:01:50 2022 -0700
feat: use floating-ui for better popover positioning
commit c1b8fe1221e3367f0632ce43f602e811c0fd0284
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jul 13 14:32:32 2022 -0700
feat: restyle search icon
commit b7a619bbd73f9220f8c1fcbad203792c78343464
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jul 12 14:37:10 2022 -0700
fix: tabsize not being respected
commit 74993d19b72aee78e89b0b13b8f1d4a72fe5fe29
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jul 5 15:42:57 2022 -0700
docs + fix: broken partial and description of enableGitHubEdit
commit 25a4d3b6e17c2a5f6a935446ea97d06a323f71f6
Author: rphla <101242699+rphla@users.noreply.github.com>
Date: Wed Jul 6 06:39:29 2022 +0800
Add GitHub "edit" button (#157)
commit aaf31f419eb167dbb7582fb103be29f0bef95ba9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 3 11:50:13 2022 -0700
fix: copy code block logic for non code pages
commit f54df35767dcda9bc4853decff86d57323593685
Author: Geoffrey Garrett <g.h.garrett13@gmail.com>
Date: Sun Jul 3 20:42:35 2022 +0200
Copy to clipboard feature for code block (#152)
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
commit 015ed4cfa2db4636e03debcda0d4201f24346098
Author: Aiden Bai 白宇彤 <aiden.bai05@gmail.com>
Date: Sat Jul 2 19:40:18 2022 -0700
Fix `width: auto` for SPA routing (#156)
commit a8137edf247c46ef3a5af78c48bcd299a13c1a7d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jul 2 17:14:17 2022 -0700
fix: adjust weird colours for err highlighting
commit eda370334a3798070c2f79ec38021edb3b33a84f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Jul 1 11:27:50 2022 -0700
fix: image scaling for md-style links (closes #155)
commit d3e20b8b94c9229e94fccbe54c867efde6847c6e
Author: Geoffrey Garrett <g.h.garrett13@gmail.com>
Date: Fri Jul 1 20:03:52 2022 +0200
Added optional rendering of code block titles (#148)
commit 8d7a7b712f5a4ee49e3687de8fb00f76d7571368
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Jul 1 11:02:42 2022 -0700
fix: non-SPA fn defs (closes #154)
commit 0896814959e912cabaf9ec83bc0a3eb77d152842
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jun 29 17:35:29 2022 -0700
docs: remove test image from hosting
commit 8b2fba895aa804e895eaa02a622f318113a35663
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jun 29 17:34:05 2022 -0700
feat: image scaling (closes #131)
commit e884f4927f3e48285ca6689507f5e0f61072de04
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jun 29 17:17:53 2022 -0700
fix: anchor formatting (closes #141)
commit 2b0482ae4c5ef7d5c7cc5d33419c1fb440c0238a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jun 29 17:03:41 2022 -0700
docs: fix page weight
commit 8a100edeb81382dc838f600ee1b8dbd3e7560e37
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jun 29 16:57:36 2022 -0700
docs: polish and update
commit 200c60514207d7970968e31740797fad76f56ee7
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jun 29 16:16:06 2022 -0700
feat: enable raw html by default (fixes #143)
commit f2078ee621b7137c49b176156ff70ddb5359d5a8
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jun 29 16:12:33 2022 -0700
fix: prefix images with base url for non-root quartz
commit 916c51c19c3aa5406cf1d5062f10a0b858f487cc
Merge: 72941965 67a7ba37
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jun 28 23:21:25 2022 -0700
Merge pull request #150 from aidenybai/bump-million
commit 67a7ba37e899ca0555fa37e159af6d599cf468ee
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue Jun 28 21:43:28 2022 -0700
Bump million to 1.11.3
commit 72941965abc135f8df28b47a90a7b2965fb075bd
Merge: 34b03537 b732293f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jun 27 16:27:57 2022 -0700
Merge pull request #146 from geoffreygarrett/hugo
commit b732293f65999e9a1d3a40a5ddeccf53a385b1f3
Author: Geoffrey Garrett <g.h.garrett13@gmail.com>
Date: Tue Jun 28 01:21:22 2022 +0200
fix(head.html): Adds robustness to `config.yaml` favicon definitions
Initially assumed that `href` definitions should have `/...` as their
pattern, and `baseURL` would always end with `/`, however the omission
of `/` as the prefix of the former and suffix of the latter
simultaneously, would result in broken favicon paths. Final comment:
`..///...` is not breaking, which is worst case scenario with this fix.
commit 7070a1992a6c9462d50afcc7139f8f97e1dce2b8
Author: Geoffrey Garrett <g.h.garrett13@gmail.com>
Date: Tue Jun 28 01:15:33 2022 +0200
docs(config.md): Fixed multi-favicon examples and general favicon explanation throughout
commit 997937af5a6dc317da56ae294dce927ec5930a4b
Author: Geoffrey Garrett <g.h.garrett13@gmail.com>
Date: Tue Jun 28 00:45:48 2022 +0200
docs(config.md): Added short explainer on favicons
commit a334b45b17f0966214d44a5b775c273e1ba7874b
Author: Geoffrey Garrett <g.h.garrett13@gmail.com>
Date: Mon Jun 27 22:05:35 2022 +0200
docs(content/notes/config.md): Adds documentation for the new favicon support
commit 473ea2c66f9122cec2647c281ca47cc073ca5fd0
Author: Geoffrey Garrett <g.h.garrett13@gmail.com>
Date: Mon Jun 27 22:04:32 2022 +0200
feat(layouts/partials/head.html): Adds general favicon support with dict and string input format
commit 34b0353797a0d24c309139034918ad2060f504f5
Merge: dbd4fb75 52a185f7
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jun 7 08:43:52 2022 -0700
Merge pull request #140 from DhammaCharts/hugo
commit 52a185f73b18d8e5a564c2144401de750b0e025a
Author: DhammaCharts <100090806+DhammaCharts@users.noreply.github.com>
Date: Mon Jun 6 16:49:01 2022 +0100
change enableGlobalGraph to false
commit 69c74ca6b5854cbb3e7dd895dca0539f51f49720
Author: DhammaCharts <100090806+DhammaCharts@users.noreply.github.com>
Date: Mon Jun 6 16:48:16 2022 +0100
minor adjustment
commit ab809249c8f57c1980de2fa850eef66301619307
Author: DhammaCharts <100090806+DhammaCharts@users.noreply.github.com>
Date: Mon Jun 6 16:42:53 2022 +0100
Update layouts/partials/head.html
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
commit 84c75d05460dd2974ff04a43f6a770fc31deca63
Merge: a275123b dbd4fb75
Author: DhammaCharts <100090806+DhammaCharts@users.noreply.github.com>
Date: Mon Jun 6 12:56:47 2022 +0100
Merge branch 'hugo' into hugo
commit dbd4fb7595055551118e7dab59a11459bcdc3d9b
Merge: 84c6e1ef a1293f82
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Jun 3 10:59:18 2022 -0700
Merge pull request #139 from aidenybai/prerender-latex
commit a275123be2b1d528dbde23beb9880933c4e22c3e
Author: DhammaCharts <100090806+DhammaCharts@users.noreply.github.com>
Date: Thu Jun 2 08:35:28 2022 +0100
better font behaviour
commit c88f31c3645bb0002171bf21850c7ca6d217c73f
Author: DhammaCharts <100090806+DhammaCharts@users.noreply.github.com>
Date: Thu Jun 2 08:16:02 2022 +0100
change to object destructuring for drawGraph() arguments
commit d261655d96f9ed084a176ed113b0d11f1351c6de
Author: DhammaCharts <100090806+DhammaCharts@users.noreply.github.com>
Date: Thu Jun 2 07:49:09 2022 +0100
remove unnecessary ternary
commit c0800a874980ab0f24fc2e350d70792d9c7f2956
Author: DhammaCharts <100090806+DhammaCharts@users.noreply.github.com>
Date: Thu Jun 2 07:45:44 2022 +0100
change baseURL back to original
commit ac0dd50c048d68884b0ada42e3ab0476fb29ef65
Author: DhammaCharts <100090806+DhammaCharts@users.noreply.github.com>
Date: Wed Jun 1 21:30:40 2022 +0100
uncomment window.Million
commit e809896338b51e65ca862809e79884469476f2de
Author: DhammaCharts <100090806+DhammaCharts@users.noreply.github.com>
Date: Wed Jun 1 21:22:31 2022 +0100
increase scale
commit 19606ba63d15edd1e4a98bf1ce5cd510a24880e0
Author: DhammaCharts <100090806+DhammaCharts@users.noreply.github.com>
Date: Wed Jun 1 21:19:03 2022 +0100
add www.
commit 1e237ef677f3b958597460175269eed4b0638112
Author: DhammaCharts <100090806+DhammaCharts@users.noreply.github.com>
Date: Wed Jun 1 20:15:44 2022 +0100
change baseURL
commit 5a1fbc937470b4f43b318dd0fa9af01b4a47b188
Author: DhammaCharts <100090806+DhammaCharts@users.noreply.github.com>
Date: Wed Jun 1 13:49:27 2022 +0100
Improve graph display, options and ability to have a global graph on the home page, local graphs on subpage.
commit a1293f820a733978f1da8ebd13e676f46634f60d
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Sun May 29 20:40:44 2022 -0700
Prerender latex
commit 84c6e1efed856b2e03100e4cfd88f2d9cd44cb9c
Merge: 775a1b24 8673a7bc
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat May 28 23:27:54 2022 -0700
Merge pull request #138 from aidenybai/add-footer-config
commit 8673a7bc3d1061eb11381e8d7e85dd0d2e1fa64c
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Sat May 28 22:52:18 2022 -0700
Add option to toggle footer
commit 775a1b2490883e1eefa1c87f5477007365d694d6
Merge: cbc2bea4 006b74ec
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri May 27 19:21:05 2022 -0700
Merge pull request #137 from aidenybai/fix-non-spa-routing
commit 006b74ec6feed2d01099754c888bac4a9474a6b1
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Fri May 27 18:45:42 2022 -0700
Fix formatting
commit 8aba612a0013e84f0b3f9d60863c02ad1b0bfd6e
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Fri May 27 18:42:01 2022 -0700
Fix non-spa fallback
commit cbc2bea413ddf58c6316e49c45b5a5a55f4271e2
Merge: ba586adc ae240ff8
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri May 27 18:32:49 2022 -0700
Merge pull request #136 from aidenybai/custom-progress-bar-color
commit ae240ff82cd8de66c28b1608e72db6ed397cab13
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Fri May 27 18:31:36 2022 -0700
Remove redundant CSS rule
commit ba586adc76df6d75048a61e5dd529704496f6bda
Merge: 232bd2f0 159deabf
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri May 27 17:14:55 2022 -0700
Merge pull request #135 from aidenybai/bump-million
commit 159deabfe160c7570679269873f18776cb586437
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Fri May 27 16:14:17 2022 -0700
Bump to 1.9.6
commit 44984cdaf4dfca8c25e9b73066ee22c775ed6d2e
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Fri May 27 13:27:13 2022 -0700
Add support for progress bar
commit 683cb53cbd4d581a061b64a26da54285ef479e19
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Fri May 27 13:19:19 2022 -0700
Bump million to 1.9.5
commit 232bd2f016f7d57602fe39703407100f5d26f278
Merge: 0293c122 e0fd9570
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri May 27 11:01:20 2022 -0700
Merge pull request #134 from aidenybai/add-prefetching-within-graph
commit e0fd9570d746cb2aa270dbe64dae038fc02bdbac
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Fri May 27 09:49:28 2022 -0700
Bump million to 1.9.4
commit bc32bbeaed10eac3094fcaa899ca626dc8e56771
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Fri May 27 09:02:01 2022 -0700
Bump milliomn to 1.9.3
commit efb6c7845f0a2743dd07b81f1d03b03d058ede0d
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Fri May 27 08:40:00 2022 -0700
Add prefetch to graph
commit bd316d8249f096c4d5616d682f142f49d4ca914f
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Fri May 27 08:39:44 2022 -0700
Bump million to 1.9.2
commit 0293c122177bf8c595cda8b4dfb513d90b1e6b03
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon May 23 22:25:13 2022 -0700
feat: recent posts section/partial
commit 0439c163a03fc50487fbe1cbfc09dc38af7ed2f2
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri May 20 16:50:56 2022 -0400
fix: js not executing if spa disabled
commit 0b6711c2185abbde7e95125b672ee8b5d827cb8b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat May 14 16:47:50 2022 -0400
fix: tag boxes overlapping for content with many tags (closes #130)
commit ed9a8efd1ff4ee569fa4256e044151670abaea82
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu May 5 21:11:23 2022 -0400
fix inline link highlighting, safer latex render
commit e302f6c423136d1dbdfda48c2b241e62bb5654e7
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu May 5 20:35:32 2022 -0400
fix: more generic style to match bad nesting generated by popover interp
commit b21b27d1d3d68bfb4d285f39122a154fceefb9ab
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu May 5 20:30:55 2022 -0400
fix: clean wikilinks and render latex in popover
commit 364aee36fc8891c48ab2bd20c396ce321cd7a0a6
Merge: cea0f3eb 8b855b52
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu May 5 01:03:09 2022 -0400
fix: merge conf
commit cea0f3eb743b26db0d5297ab10e229617585fe0c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu May 5 00:58:50 2022 -0400
feat: contextual backlinks (closes #106)
commit 8b855b522ac472b666379743dafeace6ae37fb1a
Merge: b67a389b 7b3696b8
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed May 4 11:40:38 2022 -0400
Merge pull request #125 from aidenybai/fix-latex
commit 7b3696b877c33f8dc605be1f4f4a688fe0df5b84
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Wed May 4 08:39:25 2022 -0700
Remove pnpm debug log
commit b4ff12ca0b1b5179c20a1ea57f182caa703b0826
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Wed May 4 08:10:59 2022 -0700
Fix latex
commit b67a389beacfade21276461f3e275c07969664e5
Merge: a0997444 2b5c03c9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue May 3 13:59:02 2022 -0400
Merge pull request #124 from aidenybai/hugo
commit 2b5c03c97286e06e94e8a27634678e64473a2ec8
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 10:55:45 2022 -0700
Remove redundant URL construction
commit aaed5dc1f1849a54869743596a6133548e83392d
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 10:54:39 2022 -0700
Support /path root sites
commit 1a5d158fce648492c48644acfea039261ac1dffa
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 10:38:41 2022 -0700
Support active node with other data at end of url
commit a09974446d5be617267c2e6ad8c956e88ce83176
Merge: 03742621 9fc71603
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue May 3 13:21:32 2022 -0400
Merge pull request #123 from aidenybai/fix-popover
commit 9fc71603ba3fb58239e7c2647c92996076442900
Merge: d38f9bec 3789df80
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 10:18:41 2022 -0700
Merge
commit d38f9bec70c7e46d9e7662ba3925abc9cdd9370a
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 10:16:09 2022 -0700
Rename API and generalize router API
commit 771ebd8031819dcaf9e3d6744643677e30c14b64
Merge: e4cc625c 03742621
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 10:07:38 2022 -0700
Merge
commit e4cc625c33ecd2992dcf60f408417c3067b4fa2b
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 09:34:27 2022 -0700
Add future note about init function
commit 3789df80e437f9e31560e7eed14e33d80e5ff3a0
Merge: 32c79a56 03742621
Author: Aiden Bai 白宇彤 <aiden.bai05@gmail.com>
Date: Tue May 3 09:33:00 2022 -0700
Merge branch 'hugo' into fix-popover
commit 037426217c5bee94f7c619f62e63d71c1f31b5bb
Merge: 6e6dd4cb e646cdb0
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue May 3 12:29:26 2022 -0400
Merge pull request #122 from aidenybai/fix-active-graph-node
commit e646cdb0be7977f31fa1d619a5b9125875c73475
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 09:27:25 2022 -0700
Use explicit regex for trailing slash trim
commit 8d092a3a4aca9561f3ac852e01518f48c8ef68fe
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 09:22:51 2022 -0700
Remove unnecessary 'url' argument in graph.html
commit 32c79a561fa82dbf6537b96e83ab3da2a848b211
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 09:21:44 2022 -0700
Remove unnecessary 'url' argument in graph.html
commit 3c660dd9b5f9e1133bc8a1228287508504b7c132
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 09:20:01 2022 -0700
Remove unnecessary 'url' param in drawGraph
commit 4cca3c1f2df91ba7bb111346447279087e04069a
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 09:04:15 2022 -0700
Peg router version
commit 9d3bbd607687899d173e9087f2782d7460ebee82
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 08:53:18 2022 -0700
Fix active node on graph
commit 9c71f07355d8e98478e755875e53596f66c58fa9
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 08:48:35 2022 -0700
Enable config for testing
commit 77485b754dbb3d08e437b4157f3eafb5871624b9
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 08:47:42 2022 -0700
Fix popover
commit 6e6dd4cb0b396ae7ec4f273bccd254bc0f9885d5
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue May 3 10:57:20 2022 -0400
fix: trim trailing slash when calculating popover
commit 81fe2d24936ad4b783f41b260b4a4801bacb654b
Merge: 24d08d58 321e19dc
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue May 3 10:44:56 2022 -0400
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit 24d08d580d61363faab495a8a022248a7499dc26
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue May 3 10:43:22 2022 -0400
cfg: make SPA optional
commit 321e19dc415a316c71ba50e11ab0428bda92b0e6
Merge: 12d33619 97607c3c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue May 3 09:48:50 2022 -0400
Merge pull request #121 from benbohmer/patch-1
commit 12d33619a28a2e1a27fca109e3ba966bef65ebab
Merge: fc89ff26 4197ad46
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue May 3 09:47:48 2022 -0400
Merge pull request #120 from straightupjac/fix/github-info
commit 97607c3ca5ac837f7f6bc7a048b72a8271fbd570
Author: benbohmer <103453816+benbohmer@users.noreply.github.com>
Date: Tue May 3 09:10:45 2022 +0200
fix: keep / at end of URL to avoid redirects
Removed strings.TrimRight "/" in line 10 to keep the trailing slash at the end of URLs in regular links. This avoids having every single internal link being a 301 redirect.
commit 4197ad460afd96ab508d421939b92f80bbcdc5ca
Author: straightupjac <jdc.jaclyn@gmail.com>
Date: Tue May 3 01:51:15 2022 -0400
fix github info
commit fc89ff2680977dbaf1dabb91be01ad2b84903d8a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon May 2 13:00:41 2022 -0400
fix: broken semi and graph min-height
commit e9a33c04b5efcf01e9ba5a5bb1ec6619ea510122
Merge: 9ba0a4b3 b0e15e0c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon May 2 12:56:44 2022 -0400
fmt: remove semis for good
commit b0e15e0cbc445e12e3aabfe90ee2fc6bf2c33782
Merge: 66304da0 f1b85fb6
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon May 2 12:19:26 2022 -0400
Merge pull request #118 from aidenybai/add-router
commit 9ba0a4b34fa2e4993b8be021ee79d10d2674eba4
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon May 2 12:14:51 2022 -0400
fmt: remove semis :)
commit f1b85fb6d9612d9c9d5293e27e489576800ed219
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Mon May 2 09:10:40 2022 -0700
Fix clarification comment
commit 66304da027e35abff31f05e5a895ebca52976ccb
Merge: 416dc0b8 87144fca
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon May 2 12:06:57 2022 -0400
Merge pull request #119 from aidenybai/add-prettier
Add prettier config
commit 40d216759cb88e101aac06a7c02070336d2907ce
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Mon May 2 09:05:02 2022 -0700
Expand template
commit 5c602ab16f1f5e46bee5f44cec15860f785039ee
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Mon May 2 09:04:36 2022 -0700
Add clarification comments
commit 87144fca212b25093adbf743014d5c0d5b1d9c0d
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Mon May 2 08:57:25 2022 -0700
Use semi: false for prettier config
commit a9523dd39bf931e491750bb832dd13678e0e0c0d
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Sun May 1 22:08:14 2022 -0700
Add prettier config
commit bcb166c21cf4cf6d923608c12729373cf926eddb
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Sun May 1 22:06:33 2022 -0700
Add router
commit 416dc0b85cabfbb1dced0262b11256fa258f5ee9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Apr 30 13:13:30 2022 -0700
fix: add update for local hugo-obsidian on make update
commit b8a660e208333ea8ef4998c2f815411f12ce7067
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Apr 30 13:10:12 2022 -0700
feat: copyable header anchors (fixes #86)
commit ec86cca97bef277a3b3a84580c4164ce721a92a4
Merge: 87b5a7a2 f7027e7e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Apr 28 15:53:57 2022 -0700
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit 87b5a7a2519c70b6f6e678c6b86a3aefc4dd3218
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Apr 28 15:49:16 2022 -0700
feat: show graph titles on zoom (fixes #92)
commit c8d390dbc5a749af533f1ec05de2d5b6f37fa156
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Apr 28 13:45:29 2022 -0700
fix: always hide popover on mobile (fixes #104)
commit 3c7ece5405436c85282f156cf387b11d08cc2d87
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Apr 28 10:48:31 2022 -0700
fix: append trailing slash, fixes #111
commit f7027e7ecd26abe2a99ea1bb280808a4294bb4f2
Merge: f05ff5e6 0cfd93c5
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Apr 20 09:20:21 2022 -0700
Merge pull request #108 from exu3/patch-1
commit 0cfd93c57cdb31c0f0c48bddb407158ea2e0d7db
Author: Ella <git@ella.cx>
Date: Sun Apr 17 02:11:17 2022 -0700
Fix another typo
commit 3f8c47367830f9686b91c2c32158940de4c65466
Author: Ella <git@ella.cx>
Date: Sun Apr 17 01:33:16 2022 -0700
Fix typo: recomment -> recommend
commit f05ff5e62d5e2720a05cc3cde33f110686ab5268
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Apr 5 23:19:33 2022 -0700
fix: add dropshadow to popover, cleanup animation
commit 12ed9722d80e2ae517ac0face184339f07ae10fd
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Apr 5 22:43:11 2022 -0700
fix: popover selection wrongly including line breaks
commit 887d4d4f5ecb21e436f9a0c88cc690fc245c9747
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Apr 5 21:40:59 2022 -0700
deps: bump hugo -> v0.96.0
commit f9c7cdf928e8068532d2630336a7b08d5085548e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Apr 5 20:44:39 2022 -0700
fix: check for src before attempting to add popover
commit 2d55b6ac2e0580ee8f831e46065fc94db7c9d687
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Apr 5 18:07:40 2022 -0700
fix: missing whitespace chomp in link render hook
commit d5884aedb7dcd4e7711e53b7b462d1ac0bbc242e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Apr 5 14:14:19 2022 -0700
fix: wikilink patch not applying to transformed text like apostrophes
commit 66eaa444a41d1bd87bb1f28f9786412db6e7e274
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Apr 5 14:08:36 2022 -0700
fix: wikilink image relURL for images with spaces
commit 0ddc48a4529a06b48e10e0917c815d99220eebd3
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Apr 5 13:47:24 2022 -0700
fix: wikilink-like text in code fences #95, #97
commit cd19159c53a5f774275edc72bdc9bcb679b77242
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Apr 5 12:47:28 2022 -0700
feat: wikilink img support
commit 7808c66c4dd64ee1a4dc0255533a74f2996ab957
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Apr 5 09:41:13 2022 -0700
fix: align footer links
commit a7abc6ab96002d103e5e349f345d4108550256f5
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Apr 5 00:09:56 2022 -0700
docs: make update command and clarify update steps/potential danger
commit 9509a64354f40981ec0efccb7dda0c1c5da2c190
Merge: 53242b1e 3ce6944c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Apr 5 00:02:48 2022 -0700
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit 53242b1e5742d0730515b6e104ee626dfd5a14f2
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Apr 5 00:02:37 2022 -0700
add update target to Makefile
commit 3ce6944c189097cfde3415434cf33b56b3ceaf41
Merge: e2455050 3583265f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Apr 4 23:56:28 2022 -0700
Merge pull request #93 from meleu/patch-3
commit 3cec4fd950f69762daf7f44c46619cd31b1fc61e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Apr 4 23:30:28 2022 -0700
update screenshot
commit e245505082eedb720873e20331c36952ded67d09
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Apr 4 23:25:24 2022 -0700
feat: hide toc for short notes
commit fc4b9ded76c31ef940e281d9c1bfda850df23d5d
Merge: 3781b677 27c4761f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Apr 4 23:20:43 2022 -0700
Merge pull request #94 from meleu/patch-4
commit 27c4761fe01433b971ba6c2f67af3f003df56aed
Author: meleu <meleu@users.noreply.github.com>
Date: Mon Apr 4 20:15:40 2022 -0300
link to home goes to baseURL
commit 3583265f80afa081bf7a1fe996a9b3fe3c4e32e0
Author: meleu <meleu@users.noreply.github.com>
Date: Mon Apr 4 17:30:23 2022 -0300
docs: warn about possible lost of customization
commit 3781b67707ed9992a5aec843dc5ede7c2cb8a608
Merge: 1613511f 671fe053
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Apr 4 13:08:42 2022 -0700
Merge pull request #91 from meleu/patch-2
commit 671fe05312ded0e96ba16140290a375c51c975ba
Author: meleu <meleu@users.noreply.github.com>
Date: Mon Apr 4 17:07:43 2022 -0300
padding and border-radius matching bottom cards
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
commit 1613511f393fe9460937e7e88cc731d269bb6621
Merge: acab4887 575288ec
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Apr 4 09:45:05 2022 -0700
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit acab488784b52edfb176c5a455580abeb142324f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Apr 4 09:44:58 2022 -0700
re-add obsidian file
commit ff91dcd196d71356b021ec9d381767e7c38b0756
Merge: a287d112 575288ec
Author: meleu <meleu@users.noreply.github.com>
Date: Sun Apr 3 22:14:12 2022 -0300
Merge branch 'jackyzha0:hugo' into patch-2
commit a287d11246cc0c18a9bf4435bddffc9e163e64fd
Author: meleu <meleu.dev@gmail.com>
Date: Sun Apr 3 22:12:55 2022 -0300
add a collapsible ToC
commit 575288ece94d2093bda7467be1a25092bab9c366
Merge: 25b5ac43 1d9c0e4a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Apr 3 17:57:46 2022 -0700
Merge pull request #88 from meleu/patch-2
commit 25b5ac43ddbf9899e9a11b4ad8083a4c66bcf637
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Apr 3 17:43:37 2022 -0700
fix: favicon not showing on non-root domain #89
commit 1d9c0e4a44d4551b7d57678928600aed1428a243
Author: meleu <meleu.dev@gmail.com>
Date: Sun Apr 3 16:31:29 2022 -0300
use "enableToc: false"
commit e62d512d95bc52f3113cae5e3763665364fa7c72
Author: meleu <meleu.dev@gmail.com>
Date: Sun Apr 3 16:29:10 2022 -0300
disable ToC if frontmatter has "enableToc: false"
commit 8f15c5f8c1a0650d3c757f8cdf8ea12e4128ee97
Author: meleu <meleu@users.noreply.github.com>
Date: Sun Apr 3 16:22:32 2022 -0300
disable ToC if enableToc: false
commit efeaf9b49ccbc2e595277f6c558057e863e0ac8c
Merge: 91c4e3fb 22f11711
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Apr 3 11:44:39 2022 -0700
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit 91c4e3fb3a5d9e86e5fb513bb65da89d4b061b08
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Apr 3 11:42:42 2022 -0700
fix: multiline code block #87
commit 22f11711b2500b739e56ddb7d39660c4e8856be6
Merge: 16b177ce 5c3ef884
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Apr 3 08:17:13 2022 -0700
Merge pull request #85 from meleu/patch-1
Ah my git was being really weird with cases :')) thank you
commit 5c3ef884c78b190e5fc22e122d55af097d8bef3e
Author: meleu <meleu@users.noreply.github.com>
Date: Sun Apr 3 11:19:21 2022 -0300
duplicated file
commit 16b177ce6603db9bc242104c0ef5692e2832d3f7
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Apr 2 21:04:20 2022 -0700
README update
commit 14c6181d240e69f48f6a2548136613b2b0739720
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Apr 2 20:37:42 2022 -0700
bump hugo version v0.82 -> v0.92.2
commit e6e04c03c473175961e1d5f9c815c3671f237c8e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Apr 2 20:34:55 2022 -0700
fix latex misrendering
commit 146e975932a80634500720f88843041fdf62bfec
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Apr 2 20:21:16 2022 -0700
bump hugo obsidian, fix backlinks for subpathed quartz, update homepage
commit c117e38899a7e122fb4dee87f5d091e654e0939f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Apr 2 20:06:31 2022 -0700
feat: wikilinks implementation
commit 4fd983277e36e323675e2d77048fb3daaa016dc6
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Apr 2 17:38:39 2022 -0700
fix: cjk support + demo page
commit cc86136bcb4cc61219a8ee7573e792e6a6043dcd
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Apr 2 17:00:14 2022 -0700
feat: basic latex support
commit 8e083d4a93383214d5d020c925dc5d7b65cc04db
Merge: c51573ef 03b574b1
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Apr 2 14:53:05 2022 -0700
Merge pull request #83 from meleu/patch-2
commit 03b574b1606c836eda158c8fdfe0e251a1364fe8
Author: meleu <meleu.dev@gmail.com>
Date: Sat Apr 2 18:51:45 2022 -0300
cleanup
commit a469653f7575ae604ec3e979768f4ddfecf5e2b5
Author: meleu <meleu.dev@gmail.com>
Date: Sat Apr 2 18:50:58 2022 -0300
separate contact links semantically
commit c51573efa98de6b5b5e79fb60b49f31daca70527
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Apr 2 13:34:26 2022 -0700
feat: grey out broken links
commit 902d0f2a0fe84d383eb1b011aee636ccb9687f6f
Merge: 1ddd15af 9c5ecccf
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Apr 2 12:59:47 2022 -0700
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit 1ddd15afc6e69202080ffb91e8d82deb653a80b7
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Apr 2 12:59:38 2022 -0700
fix: non-unicode character in popover and search #67, #68
commit 16f8cd7100c7733b8ee29296fb0369ae24f899cd
Author: meleu <meleu@users.noreply.github.com>
Date: Sat Apr 2 13:37:12 2022 -0300
separate links with ​
commit 9c5ecccf25c35cd94bc6c7468d45e4c3e6a932bc
Merge: 3674df48 e3cd531c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Apr 1 14:17:35 2022 -0700
Merge pull request #82 from meleu/patch-1
commit e3cd531c537d4d82400275c1b018382a19041b4b
Author: meleu <meleu@users.noreply.github.com>
Date: Fri Apr 1 18:13:49 2022 -0300
fix custom.scss path
commit 3674df48b8eed55728780d05bc9b577e8aab0a3b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Apr 1 10:13:01 2022 -0700
fix pagination styling
commit 9e8c5587e433b3d1440803d7f995a2a8b55ba45e
Merge: 6605b13b 6edc9798
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Mar 31 23:16:00 2022 -0700
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit 6605b13b86c5e15bcaa2821937f97a59c4d2bbae
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Mar 31 23:15:54 2022 -0700
more troubleshooting, backlinks reference private page fix
commit 6edc979896f7548a8f9efe1c167fe9cd9d9e4c1c
Merge: 54a68e6e fc439224
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Mar 21 09:15:35 2022 -0700
Merge pull request #71 from siyangsun/patch-1
commit fc439224456010aad4802c9003c0dcebf1e38157
Author: Siyang <siyangsun2007@gmail.com>
Date: Sun Mar 20 22:37:05 2022 -0700
add to showcase and fix link to file
commit 54a68e6e5c020fa1e4eacf7942eb37974f332887
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Mar 18 10:53:39 2022 -0700
patch image
commit a6ab2f92ef8cb62d0399b1121cfabaa137906d51
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Mar 16 17:54:24 2022 -0700
add update
commit fda481fbb91fee6fc9e99c56c2cf80ff8835a946
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Mar 15 01:12:08 2022 -0700
fix: bump hugo-obsidian version to account for contentIndex paths on windows
commit 94e987dab5a50196bc2273addc6f908178abd0fb
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Mar 15 00:37:56 2022 -0700
feat: better titles for empty pages #61
commit e981c76ed4b2d220c0394bdcbf5a22a282561fd3
Merge: 651bfc5c f70128a3
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Mar 9 10:11:36 2022 -0800
Merge pull request #65 from claudio4/fix-text
commit f70128a3deacc26ceccb7d397ce6cd73acceb7f9
Author: Claudio Yanes <me@claudio4.com>
Date: Wed Mar 9 17:58:01 2022 +0000
Prevent overflow of long links and words
When a word (or any string withtout breakpoints (spaces, dashes....), making links the most common place where this becamoes an issue) is wider than its container, the text will simply overflow any container, including the viewport. This commit fixes this behaviour by making the word-drap strategy of the browser more aggresive.
commit 651bfc5cd284a259f429b50839c619dd1b94498a
Merge: 90727099 60794201
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Mar 7 10:45:07 2022 -0800
Merge pull request #62 from claudio4/hugo
commit 6079420178788ca74e574e35ad0212d1e6f41b6e
Merge: 978d5ca1 b96c60ed
Author: Claudio Yanes <me@claudio4.com>
Date: Mon Mar 7 18:28:14 2022 +0000
Merge branch 'jackyzha0-hugo' into hugo
commit b96c60edfc3429a2c478b2d1eb809fb9f20b4219
Merge: 978d5ca1 90727099
Author: Claudio Yanes <me@claudio4.com>
Date: Mon Mar 7 18:27:45 2022 +0000
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into jackyzha0-hugo
commit 978d5ca1aee23d6663e508aa24b389b6c9003d04
Author: Claudio Yanes <me@claudio4.com>
Date: Mon Mar 7 18:25:02 2022 +0000
Format JS
commit 907270992d7718f26d0a401ab700c6a0a414b440
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Mar 4 23:55:07 2022 -0800
fix: hide popover on mobile to prevent overflow
commit 6f9283e95b9f0b85c0d9dc7374ed75eff2a9149d
Author: Claudio Yanes <me@claudio4.com>
Date: Fri Mar 4 22:27:21 2022 +0000
Update makefile and docs
The artifacts produced by hugo-obsidian are now expected to be placed in
the assets/indices directory. This commit reflects this change in the
Makefile and in the docs.
commit 0fad5570d38b6a15e9a0cf2c1b1f24e6c2897551
Author: Claudio Yanes <me@claudio4.com>
Date: Fri Mar 4 04:14:42 2022 +0000
Add .gitkeep to assets/indices
commit dc9b421e21d02e9d247d1640cb518c416a5dcbab
Author: Claudio Yanes <me@claudio4.com>
Date: Fri Mar 4 04:12:43 2022 +0000
Remove unnecessary scrollbars
The margin property can escape the parent node and move it alongside
its child. This happens with singlePage div and the body, resulting in
scrollbars appearing as the body has the size of the viewport but
does not align with it. This phenomenon can be always observed
in the vertical axis and it can also be observed in the horizontal axis
when the viewport it’s not wide enough (mostly in mobile).
Using paddings prevents this “extra space” from scraping and displacing
the body.
Also, the value 100vw does not take into account the space taken by the
vertical scrollbar, thus making the body wider than the actual viewport,
producing a horizontal scrollbar.
commit 8779e72c77c2e454d444b86d3d5ebda9bfab46d7
Author: Claudio Yanes <me@claudio4.com>
Date: Fri Mar 4 03:34:45 2022 +0000
Add attribute property to scripts from jsdelivr
Adding the integrity attribute protects the website (by refusing to load
the script) against malicious modifications of the script
in the case of jsdelivr gets hacked
commit 7f6523337c96e631e80b18c888b2f237ea8a4482
Author: Claudio Yanes <me@claudio4.com>
Date: Fri Mar 4 03:24:32 2022 +0000
Move popover to the end of the page
The popover script doesn’t ever start in until the DOM has finished
Loading, so wait for the script to be downloaded and parsed before
Showing the content to the user makes no sense.
commit 7e0f2e44497adeade4aa5a99da897be29cb49016
Author: Claudio Yanes <me@claudio4.com>
Date: Fri Mar 4 02:25:30 2022 +0000
Fix fetchData
The fetchData function suffer from a race condition. If the function is
called before the promise finishes, it will result in another pair of
HTTP request. This does not only make the function useless but
Actually, it makes it harmful as the data might be redownloaded twice.
Now fetchData is not a function but rather the promise by itself.
Previous callers are expected to await the variable instead, this
should be not concern as awaiting a promise multiple time in
JavaScript is completely safe.
commit 1313bd9779c638f09b8901f8432d6bc39910bce3
Author: Claudio Yanes <me@claudio4.com>
Date: Fri Mar 4 02:07:51 2022 +0000
Move css and js to appropriate files
Having the CSS and JS in the html template produces pages larger
than necessary, as each page need to contain all the js/css.
Separating them in appropriate files allow the browser to just download
them once and use them for all the pages. This is even more effective
with an aggressive cache policy for the js and css, something that can
be done without fear thanks to the implemented cache-busting.
Also, having then in separate files allows us to use Hugo pipelines
for minimizing the code.
commit 5234fae080f1d3dca4f105438e3e0151f12ca61c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Feb 28 08:24:29 2022 -0800
fix backlinks not using baseurl
commit 0ee0855e1c1843a86a7bcd58aee520784c165dba
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Feb 28 07:30:59 2022 -0800
bump hugo-obsidian to support root
commit e06e341468202eebd928dee6a222ea118ef06331
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Feb 28 07:14:55 2022 -0800
fix: explicitly set root as current directory to fix ignore files
commit 73e526a7d50315b9177c2c11d12ebcde71b05fbd
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Feb 23 12:28:25 2022 -0500
add screenshot to readme
commit cdc4f1a8407449be7a514414795f27ff3b70bf37
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Feb 22 13:36:08 2022 -0500
fix: relink search button (move outside content load listener)
commit 714b4fcfa30ac1155747b9af90bc0e9519cb4bba
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Feb 20 21:40:10 2022 -0500
fix links being broken for pages with spaces
commit 9c04ca026676445849081d32efb8e840465994d5
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Feb 17 10:49:41 2022 -0500
rtl docs
commit 388a2bf78bb08c2b37e918c3a2e0acc72803e187
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Feb 17 10:44:39 2022 -0500
docs updates
commit f192f9a23df34d30e223e20ab5e8cb8210a7dfe9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Feb 15 23:03:02 2022 -0500
fix #54: root all image urls
commit 3b3e6ec3b2a56ee4d03b6f4c84af886821bfbe84
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Feb 15 22:54:20 2022 -0500
fix relative pathing for dynamic fetch
commit 8e85e274f6e5913694b67319f1beb7a2ec5b5bed
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Feb 15 19:42:45 2022 -0500
change output to static instead of data
commit fcd5d2807d2bab68c6776e031e85d65fe88a6f7a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Feb 15 19:39:14 2022 -0500
feat: dynamically fetch indices
commit 4587b133600ac59e38d1fccc7c7dba9f2c8f4af5
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Feb 15 17:12:08 2022 -0500
feat: add rtl support as part of #47
commit fb9ea8dcb85e6d2ac6c2a8cf5057f2fb00871b26
Merge: c520db48 10f9843b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Feb 15 16:52:49 2022 -0500
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit c520db488213f6d7844a382fe4f621a85decd60e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Feb 15 16:52:32 2022 -0500
fix: #50, change css load order
commit 10f9843bb6476134532d2002b2d29841755767e1
Merge: 0dc51ff3 31297b7e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Feb 15 14:51:29 2022 -0500
Merge pull request #51 from brandonkboswell/patch-1
commit 0dc51ff39c9c867dd85c37a01c366cd5f278f032
Merge: c35086c5 fa3bc3de
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Feb 15 14:50:34 2022 -0500
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit c35086c5104aedcaae1aba00892b0b4359a8e3cf
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Feb 15 14:50:25 2022 -0500
visibility fix
commit 31297b7e5adfda0def68ac848c4e81789c7278b2
Author: Brandon Boswell <brandonkboswell@gmail.com>
Date: Sat Feb 12 22:35:03 2022 -0500
Added to the Showcase
commit fa3bc3de9273d2cb437605d1b229d9a8d79331b5
Merge: a271fb9d 41c443db
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Feb 11 17:24:54 2022 -0500
Merge pull request #48 from earnestma/earne/configurable-page-toc
commit 41c443dbf079e65ed69f57d3b9a5ce58dc403e6d
Author: earnest ma <me@earne.link>
Date: Fri Feb 11 17:05:38 2022 -0500
Add disableToc parameter to not show TOC on a page
commit a271fb9d74f56b9e44817c7f61300db8d7e713cd
Merge: 9645f003 49cdca5d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jan 31 12:28:40 2022 -0800
Merge pull request #46 from adube/patch-1
commit 49cdca5dfc32e56788f30a9a7e8b5a6225013edb
Author: Alexandre Dubé <adube@mapgears.com>
Date: Mon Jan 31 15:18:26 2022 -0500
Specify Hugo requires extended Sass/SCSS version
Hugo needs to be installed with its "extended" Sass/SCSS version, otherwise this template does not work.
commit 9645f0031756faf815b1df5501d736795cbccc62
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jan 27 09:38:28 2022 -0800
link fixing
commit 57ebf4c21c8b4f7c2ef5126ded39a9facaa848ee
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jan 10 13:08:50 2022 -0800
underscore fix, fix relative path being weird for graph
commit 54e3e071d1c66dec3e04e8246c58fc2067877044
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jan 10 09:00:45 2022 -0800
fix popover regex
commit d46e22383133b944201bf5cdf85d44c48c891d07
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jan 10 08:51:00 2022 -0800
revert baseurl fix
commit 6f9a29c174f8657a90d7dda8d39e933c220fa717
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jan 10 08:49:29 2022 -0800
various path fixes
commit 532bc610254db096807453bf223acaa91634fd81
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jan 5 19:42:13 2022 -0500
set relativeUrls to true
commit 99aea4826068564f81e7f1b402e00e3e101a1476
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jan 4 11:39:22 2022 -0500
docs update
commit 4a3766db56bd08990b59f73e805008e03817556c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jan 3 16:37:24 2022 -0500
update featurelist
commit 4e639979f8175b0a639ba2e25bbd8fa550d728bf
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jan 3 15:36:58 2022 -0500
fix copy selection
commit e49a1ac9db92c6c967be404b5a3b9e3194a4ed99
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jan 3 13:22:04 2022 -0500
made link preview optional
commit 4a3c4fdef550547aa80947ebaff1bda44b943d4d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jan 3 13:18:31 2022 -0500
popover implementation
commit 2b432d7f0b35987ca6886e7041dce861b7e21abb
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jan 2 20:02:47 2022 -0500
fix flex gap
commit 7507fd29912015a72f990b23023ae2946c6cd51b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jan 2 19:49:41 2022 -0500
fix search styling
commit ca886e40752a8a30762708ea87d7228f737c0cd2
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Dec 28 14:28:08 2021 -0500
fix render link for apostrophe
commit 3722e600ee3bd75130e4e228ea45c2074649329c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Dec 27 20:52:30 2021 -0500
bump hugo-obsidian
commit efeaf0f4e47c3484ad84b7b9f755735ae0d810cd
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Dec 27 20:16:21 2021 -0500
add pagination to section, fix graph linking
commit 1a8cdaad24789d75d9453351aff19b434e1ea5c9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Dec 27 19:43:01 2021 -0500
remove console.log
commit e4caa0d1d7fb3bdca6dee07fee299a3acdf40043
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Dec 27 19:35:42 2021 -0500
add taxonomy and term lists
commit a45856d7884fedd3a3bd6b80489c206c75427112
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Dec 27 17:53:33 2021 -0500
fix last modified not working for capitalized pages
commit dbe9b338ccc5df23882ebfa26c9020fb863a4124
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Dec 27 17:44:39 2021 -0500
fix capitalization
commit 000fcdbf991dcc7f81b4cf1b6d7116590070ffd0
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Dec 27 17:43:27 2021 -0500
fix casing
commit 612c44d719f1b47b3c7b3fc5b6ffb48ccec33ded
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Dec 27 17:34:53 2021 -0500
modify obsidian
commit e1911a58fff3b96754b3b49837ac2d4dd4fcf5aa
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Dec 27 17:28:53 2021 -0500
enable last modified info
commit b4e26971165d49604014a1ed38aaa18b2c20fc23
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Dec 27 15:59:19 2021 -0500
content section
commit 094ab9d064b8e3d24f0cb656aaf4e0ea08365ac5
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Dec 27 13:15:10 2021 -0500
dedupe backlinks
commit 39592347cc742838a1d078031b897fe26a94adaf
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Dec 27 13:06:58 2021 -0500
add graph depth config
commit 165d33810d63f98953f4dd8c40f6d7741f967664
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Dec 26 21:13:21 2021 -0500
base tags
commit 6fbfa7170b17e062abd4c26e4b55a3934fb4ff1c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Dec 26 00:09:15 2021 -0500
various font and colour fixes
commit 43837f9e2ec4033722cb6957bd67c688afb3ae2c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Dec 25 23:45:30 2021 -0500
add makefile, fix link padding, test capitalization
commit 2ba01c831178facd35c62adcb22f3cc39ead6975
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Dec 24 15:51:37 2021 -0500
fix untitled #36
commit 114b7ca913b4250d594b711d7bfbe98ab23b562d
Merge: 5bd5642c 091be704
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Dec 24 09:48:41 2021 -0500
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit 5bd5642c99d6d144c9932533dfdc3484bdb72b71
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Dec 24 09:48:22 2021 -0500
add toLowerCase to id
commit 48d01810c4629341d9481632fc7f769dcffe0bd7
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Dec 23 14:40:59 2021 -0800
fix config setting, fix font size for h1 in article
commit 3a98c8b554c4b0e141f46a777c0fefe5ad4d4178
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Dec 23 14:32:47 2021 -0800
actually display site title
commit 69c86e407fa14ea94c75de82ca55ec9efaf6fb37
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Dec 23 14:21:39 2021 -0800
update subdomain docs
commit 56d2382c282431115b2964d440b790ce11f19e72
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Dec 23 14:05:27 2021 -0800
fix relative link styling, change graph and backlinks to refer to name rather than path
commit 091be7040b2f3da212a68a491bb8872543fddfea
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Dec 23 13:37:29 2021 -0800
Create CODE_OF_CONDUCT.md
commit 09b5522a488177129bfc7b35b700d7e76c64d5f8
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Dec 23 13:22:22 2021 -0800
Update issue templates
commit b9d7adafccc7a77f735afe11c80e0e8db534a31d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Dec 23 13:18:03 2021 -0800
Create FUNDING.yml
commit afeb18212d62663b7bbec5a08c05851bd584acd3
Merge: c64322ad bc909559
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Dec 2 20:06:18 2021 -0800
Merge pull request #28 from juaoose/overflow
commit bc90955959d818797e84c944247736e871faee3f
Author: Juaoose <jjrg1994@gmail.com>
Date: Thu Dec 2 22:58:34 2021 -0500
remove horizontal scrollbar
commit c64322ad3f1b72f83e675a53060b005d57704901
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 20 22:55:53 2021 -0800
remove bad wikilink
commit 48eb9ebc5fdba0845c6295e8abb6f574ec75171d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 20 22:53:26 2021 -0800
better search, fix spacing support, bump hugo-obsidian
commit 82ba843e42198d2ef2829eb6e668377bc9ebe4be
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Nov 15 15:54:18 2021 -0800
search styling
commit 8ca31df3f22e2678cf201105c1cb2925aca3c7d3
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Oct 31 09:59:38 2021 -0700
search patch
commit df23b99951fd7cb3bdf839639bce58b3e98c2d26
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Oct 30 23:27:33 2021 -0700
more search improvements
commit 6005a2e0a0667e9b78bfd419d3e8590a7fcc25f8
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Oct 27 20:10:04 2021 -0700
css fixes
commit de940d6a4b8a51f308b4544d21941bdb9a99aa66
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Oct 26 17:06:00 2021 -0700
update graph redir
commit 806d11f874119a1207332850e3263d87334a573d
Merge: 03bb3a3b 1fc2da4f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Oct 26 17:03:07 2021 -0700
Merge pull request #23 from bur3ku/hugo
commit 1fc2da4fe293f47ec47a7b5d33fa94fa3a06bb3b
Merge: 9292de63 24776624
Author: Blake Allen <blakesnake100@gmail.com>
Date: Tue Oct 26 16:58:37 2021 -0700
Merge branch 'hugo' of https://github.com/bur3ku/quartz into hugo
commit 9292de63336da42651c646253ef6000621d5328b
Author: Blake Allen <blakesnake100@gmail.com>
Date: Tue Oct 26 16:58:08 2021 -0700
remove unnecessary regex, use encodeuri for label instead of replace
commit 24776624047bea380c51dbb503cdf335d37b83b0
Merge: a14d06aa 03bb3a3b
Author: Blake Allen <blake.edward.allen@gmail.com>
Date: Tue Oct 26 12:46:03 2021 -0700
Merge branch 'hugo' into hugo
commit a14d06aa3d37396531dbfe09bb3b18b7eb9b96ad
Author: Blake Allen <blakesnake100@gmail.com>
Date: Tue Oct 26 12:44:25 2021 -0700
fix conflict fix
commit e0535dbe3219e297945284ca2af9862bd457a893
Author: Blake Allen <blakesnake100@gmail.com>
Date: Tue Oct 26 12:43:55 2021 -0700
fix conflict
commit 8eca1e60f78f40d6b598aa397bb315adfc53d9ad
Author: Blake Allen <blakesnake100@gmail.com>
Date: Tue Oct 26 12:36:20 2021 -0700
change %20 in node labels to whitespace, change %20 in node hrefs to hyphen
commit 03bb3a3bae297b51ffabb0d428f2c555771033f9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Oct 25 15:06:29 2021 -0700
normalize search styling
commit f7b89db8ee85e54a438db2e2cac3c55e805281c9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Oct 25 15:00:55 2021 -0700
search fix
commit 1835b97a7a2faf23809bb39d0bec7a2b77b3b81c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Oct 24 23:45:55 2021 -0700
better homepage
commit f56642f13cb5bffb8c05b239c6a7b90e1b6453e5
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Oct 24 23:32:55 2021 -0700
forgot string lol
commit 22a9c0ddfcb38a15d4340f532faca7733349702b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Oct 24 23:31:09 2021 -0700
docs updates, add search to main page, fix redir bug
commit c1c061fbea8f6cdc6aec4992d21d2df73dc6ba4e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Oct 24 23:17:20 2021 -0700
bump docs
commit 6fd19069deb06988b3d34482a151a79a53b589d0
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Oct 24 23:17:13 2021 -0700
search improvements
commit 299533a4f47d2379ddbc209bcd6923a70a81e65d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Oct 24 23:17:00 2021 -0700
bump hugo-obsidian version
commit e1366ecb6173b7c5e799c46e3ed8acbb50aaf447
Author: Blake Allen <blakesnake100@gmail.com>
Date: Fri Oct 22 18:56:26 2021 -0700
fix accidental code
commit 776ef084c9c98163f96cce62621cb8b0cf59bbdd
Author: Blake Allen <blakesnake100@gmail.com>
Date: Fri Oct 22 18:32:57 2021 -0700
fix last commit
commit fc00ad5bffcd5a1b89a4c1cb19b12d77238cc4c2
Author: Blake Allen <blakesnake100@gmail.com>
Date: Fri Oct 22 14:04:09 2021 -0700
fix for notes with spaces not linking properly
commit 228f96e74dd0caae6514a230418812103527d439
Merge: ae2f7efd 071984a1
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 31 18:32:14 2021 -0400
Merge pull request #14 from juaoose/hugo
fix product typo in external hosting section
commit 071984a12d1c7887d0ef41b206e01bc5afefb95d
Author: Juan José Rodríguez <juaoose@users.noreply.github.com>
Date: Tue Aug 31 16:40:31 2021 -0500
fix product typo in external hosting section
commit ae2f7efde0eb997ab2f7be1cf1513af7f99df599
Author: jackyzha0 <j.zhao2k19@gmail.com>
Date: Sat Aug 28 20:58:14 2021 -0400
update showcase
commit cb38667c1df7d752a1a9ef45505a7e106ff03ef8
Merge: 1c851271 27c33f83
Author: jackyzha0 <j.zhao2k19@gmail.com>
Date: Fri Aug 27 14:08:18 2021 -0400
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit 27c33f8334f6ac4a67c2a12b8eed219e6d8aeb2b
Merge: 8850976d f9920f6d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Aug 13 17:45:32 2021 -0400
Merge pull request #9 from brechtcs/template
Execute darkmode script before first render
commit f9920f6d736754372075c8f1014ab9440e333317
Author: Brecht Savelkoul <brecht.savelkoul@alumni.lse.ac.uk>
Date: Fri Aug 13 22:46:00 2021 +0200
Execute darkmode script before first render
commit 8850976d8dbb9a67d0224ed1ea30bd90fdbf4faa
Merge: 9b427faa bb6a1e8c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 12 23:49:05 2021 -0400
Merge pull request #8 from SlRvb/patch-1
Add SlRvb Site to Showcase
commit bb6a1e8c349075f40ac96be25509951ad5dce715
Author: SlRvb <54087190+SlRvb@users.noreply.github.com>
Date: Thu Aug 12 20:46:23 2021 -0700
Add SlRvb Site to Showcase
2023-11-24 18:08:37 +00:00
|
|
|
max-height: 400;
|
2023-08-20 04:55:09 +00:00
|
|
|
overflow-y: auto;
|
2023-07-04 23:48:36 +00:00
|
|
|
|
2023-07-10 02:32:24 +00:00
|
|
|
// clearfix
|
|
|
|
content: "";
|
|
|
|
clear: both;
|
|
|
|
|
2023-07-04 23:48:36 +00:00
|
|
|
& > li:last-of-type {
|
Squashed commit of the following:
commit 76f2664277e07a7d1b011fac236840c6e8e69fdd
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Nov 13 22:57:05 2023 -0800
versioning: bump to v4.1.1
commit 74777118a7fd19e4a296706c2a4b5fdca546c4fa
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Nov 13 22:51:40 2023 -0800
feat: header and full-page transcludes (closes #557)
commit 8223465bda1e7b6085a9752ead806be85ff58b57
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Nov 12 14:33:19 2023 -0800
fix: make :has img selector direct
commit cf6ab9e9333b5f76cb9e06f6687f2b4f8fbe91bd
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Nov 12 14:27:53 2023 -0800
feat: option to specify npx quartz sync message (closes #583)
commit 74c63e448e28d9766f7ec631aac2645384b0975f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 11 21:13:10 2023 -0800
fix(style): dont internal-link highlight when image (closes #581)
commit 43d638a6de5a8a11c1a719c596b07ea957c7329a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 11 21:06:37 2023 -0800
perf: compute mapping of folder name to file data for faster breadcrumbs
commit d1551872ffeb08c34f59dc2042b43562c499b620
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 11 20:46:57 2023 -0800
fix: check if popover exists after fetching and before inserting
commit 275bea3051a6f2a7da65fef6dccc7cc52a0a15e3
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 11 20:46:29 2023 -0800
style + cfg: resolve breadcrumb titles by default and change arrow character
commit bc02791734aa969ff388c5f7068e402bd0e3862a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 11 20:27:51 2023 -0800
fix: .date.getTime() based sort
commit bf603c49c2edaa5fcbe42479421a336dcacf92b9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 11 12:08:54 2023 -0800
fix: sort rss feed by date
commit f67356c3d2d609a8a6b674ac650fc41d6dfb4cc7
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 11 12:02:34 2023 -0800
lint: format
commit 5d666d1860be721c573ebd24cb82d210a8567bbf
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 11 11:59:05 2023 -0800
fix: normalize relative urls (closes #569)
commit 22b7cf135e8b031550553947c48aa0dc00b3abbd
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 11 11:41:44 2023 -0800
types: cast in jsx.tsx to avoid @ts-ignore
commit 50a87d0d8673dbce6ebafef83f71f197df9bc196
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 11 11:39:56 2023 -0800
style: scrollable tables
commit 134b6ed582d6ce9d8fb8f1e58d2bae89c07c2d5d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 11 10:11:31 2023 -0800
fix: anchors links shouldnt cause reload (closes #574)
commit 99e8f5944fdd83110fbac4c9edc37cdcaf2c25f7
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 11 09:56:30 2023 -0800
fix: trailing slash aliases (closes #577)
commit e9f4e28a2d3e0b529586ddb5a50680a6e66412f3
Author: Yes365 <ninfovores365@gmail.com>
Date: Fri Nov 10 11:44:16 2023 +0800
fix: adapt vercel cleanurls (#487)
Co-authored-by: Harrison <Harrison@fanruan.com>
commit 2a6b9a9ea01e8e6a80fe51d01dc865595b67a612
Author: Niklas Schröder <33390735+lnschroeder@users.noreply.github.com>
Date: Tue Nov 7 18:16:48 2023 +0100
docs: fix property name for ToC toggle (#573)
commit e806c30fa1a7ab941969da01c05ac4adeeeeeb9e
Author: Mau Camargo <52770775+camargomau@users.noreply.github.com>
Date: Sun Nov 5 13:30:10 2023 -0600
docs: Add Mau Camargo's Notkesto to showcase (#570)
commit aac7b7e97d32580f6a9bd974b8a9068e5218ab9c
Author: Anson Yu <ansonyu24@gmail.com>
Date: Sat Nov 4 17:20:16 2023 -0400
docs: Update making plugins.md (#567)
:)
commit 101e9946bddd053a42d269e19e35feae46fe4305
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 4 12:11:42 2023 -0700
feat: add collapseByDefault option to TableOfContents (closes #566)
commit a62a97c7abcabea4509760e5af957eed66fa0755
Author: Emil Rofors <emirof@gmail.com>
Date: Fri Nov 3 16:40:43 2023 -0700
docs: add GitLab pages CI (#549)
* add .gitlab-ci.yml
* move GitLab CI to hosting.md
* remove extra folder name
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* remove test from gitlab instructions
* run prettier
---------
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
commit 923b72fb67cf3ee9842df630feaed72644470074
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Nov 1 10:03:45 2023 -0700
feat: auto-tag releases (closes #560)
commit 05a1c34c6f6973eebcbcc50f50b64c2a0d62e8fa
Author: Florence <59734957+Pydes-boop@users.noreply.github.com>
Date: Wed Nov 1 17:57:32 2023 +0100
docs: remove dead link (#561)
commit 06ccb89cd7d5a3cade1eb5c2155b9b06e5395b0b
Author: Blue Rose <134471273+bluerosegarden@users.noreply.github.com>
Date: Tue Oct 31 15:53:49 2023 -0500
docs: clarifications about globs (#559)
* Add note about fast-glob
* Add warning about non-markdown files
Also added a glob pattern to filter out all non-markdown files outside of a specified folder.
* run npm format
---------
Co-authored-by: wych <wychwitchcraft@gmail.com>
commit 01fc8e46409ee0fb7311f212726113d35aced82d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Oct 25 09:40:43 2023 -0700
fix: disable semi-broken flexsearch cache
commit 7c01e8dde06abb1a80118b5eddce3e238830ede0
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Oct 22 09:54:12 2023 -0700
feat: openLinksInNewTab option for link transformer
commit b7ae7a99dbd40ffc852642202031b29e98304c1f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Oct 21 21:12:11 2023 -0700
fix: styling for nested popover tag in page list
commit 60b3bc34cb07b5bec87cbd667ea9f804ff14cf3c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Oct 21 21:05:46 2023 -0700
fix: catch html to jsx errors (closes #547)
commit dc834015d02adcc7edb119fb5224a2a86c614142
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Oct 21 20:27:49 2023 -0700
fix(style): tag float orientation for long tags on page listing
commit 1e357ef5ac85ab55ad19f832513f5ca7a7e54a52
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Oct 21 20:09:49 2023 -0700
fix(style): prioritize base and custom scss over component css
commit 54e722a55d58f4bab86184ffc970159628fa6967
Author: freenandes <42041153+freenandes@users.noreply.github.com>
Date: Wed Oct 18 03:43:41 2023 +0100
docs: Update showcase.md (#540)
changed URL
commit 86d16b12a224d125ba469f91e885eedf97a9dfe8
Author: Thomas <65691606+NotTacoz@users.noreply.github.com>
Date: Wed Oct 18 10:43:20 2023 +0800
docs(explorer): Fixed small typo with extra } in explorer.md (#541)
commit ed971800c0a683f7096922fee0a6901250e239ae
Author: freenandes <42041153+freenandes@users.noreply.github.com>
Date: Tue Oct 17 16:58:28 2023 +0100
Update showcase.md (#539)
commit af9ddadc4de513f2bbaf75f70079970215ed6406
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Oct 14 13:45:56 2023 -0700
fix(css): import base from custom instead of the other way around (#536)
commit da0a062c05db18d8c1521661ac0ab735abff3c3f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Oct 8 09:59:18 2023 -0700
feat: docker support for v4 (closes #530)
commit f66d2c23aca2944abcb1a6e3d83977a9b2edf37a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Oct 8 09:15:06 2023 -0700
fix: ctrl+click with spa enabled
commit 3268d45a20fbead24f3a111064364574408aa926
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Oct 5 13:48:52 2023 -0700
css: make article relative
commit afa163f2fe9c52d4b3bf1a2e4d48887916b67c24
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Oct 5 13:30:06 2023 -0700
style: styling for codeblocks without langs (#527)
commit cec4877adb7e89f4d4e0a442e82655e0d35dbe16
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Thu Oct 5 18:19:56 2023 +0200
fix(breadcrumbs): problem with folder whitespace (#522)
* fix(breadcrumbs): problem with folder whitespace
use slugs for folder hrefs so folder paths get resolved properly
* feat: only use `slug` for constructing crumbs
* fix: remove capitalization
commit cf0c090e3c5af86097e2460b00adc52ef8555e9d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Oct 4 09:23:56 2023 -0700
specify minimum npm version
commit c8f5dbbad3a85749d8a74f5e3e3b222fe547d5d6
Author: Luca Salvarani <lucasalvarani99@gmail.com>
Date: Mon Oct 2 02:20:55 2023 +0200
fix: Fix `Backlinks` not applying the display class (#519)
* fix: Fix `Backlinks` not applying the display class
Fix #518
* fix: Apply `displayClass` to all layout components
* refactor: Use same style
* fix: Remove `undefined` class using coalescing operator
commit ab5efac75fb0f20afe74bef33a2cf7e9ba0ba40f
Author: bfahrenfort <59982409+bfahrenfort@users.noreply.github.com>
Date: Sun Oct 1 11:47:22 2023 -0500
Fix: RSS title escaping (#521)
* Fix title escaping
* npm run format
commit 2f99339dcf93ef50b766263297785a32d9c35250
Author: Hrishikesh Barman <geekodour@users.noreply.github.com>
Date: Sat Sep 30 00:05:26 2023 +0530
feat: add transformations for latex in oxhugofm (#510)
ox-hugo currently supports the following syntax for latex equations:
- https://orgmode.org/manual/LaTeX-fragments.html
- https://ox-hugo.scripter.co/doc/equations
This syntax is supported by mathjax as is mentioned in the ox-hugo documentation.
But quartz uses remark-math which has some issues with the \( \) syntax.
See https://github.com/remarkjs/remark-math/issues/39
This change adds few more transformations to the OxHugoFlavouredMarkdown
plugin, which makes a best effort conversion of this syntax into what
the Quartz Latex transformer plugin supports.
With these changes, the generated files show latex formatting with
default quartz configuration.
Sidenote on `\_` escape by ox-hugo:
ox-hugo escapes, _ using \_, we match against it after we transform
equations into what quartz supports($$ and $).
This could be achieved using lookaround like regex as follows
```js
(?<=(\$|\$\$)[\s\S]*) -> Positive lookbehind for $ or $$
\\_ -> Matches \_
(?=[\s\S]*(?:\1)) Positive lookahead for $ or $$ if matched
const escapedUnderscoreRegex = new RegExp(/(?<=(\$|\$\$)[\s\S]*)\\_(?=[\s\S]*(?:\1))/, "g")
````
But since lookahead/behind can slow things down on large files, we just
look up all equations with $ and $$ delimiters and then try replacing \_
commit 5232d09af520e12bc421cf19ae5d231a7e36cd4d
Author: ArtfulAzeria <146041757+ArtfulAzeria@users.noreply.github.com>
Date: Fri Sep 29 20:17:48 2023 +0200
feat: Better and more responsive tag behavior (#515)
* fix(explorer): default sortFn implementation (#511)
* fix: use `numeric` + `base` for localeCompare
* docs(explorer): update default sortFn
* fix: better and more responsive tag behavior
* tags css moved to TagList.tsx
* used npm run format
* merged tag declarations
---------
Co-authored-by: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
commit 0138085c16856d20d1d2cad5670f1f61c8e500d1
Author: Catchears <57631841+Catchears@users.noreply.github.com>
Date: Fri Sep 29 17:19:10 2023 +0200
docs: fix typo in breadcrumbs documentation (#513)
commit 0b61f6fbfd20556102ce23444ae7eb9348472952
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Fri Sep 29 10:26:15 2023 +0200
feat: implement breadcrumb component (#508)
* feat: implement breadcrumbs
* style: fix styling, move breadcrumbs to top
* refactor: move `capitalize to `lang.ts``
* refactor: clean breadcrumb generation
* feat: add options to breadcrumbs
* feat: implement `resolveFrontmatterTitle`
* feat: add `hideOnRoot` option
* feat(consistency): capitalize every crumb
* style: add `flex-wrap` to parent container
* refactor: clean `Breadcrumbs.tsx`
* feat(accessibility): use `nav`, add aria label
* style: improve look in popovers by adding margin
* docs: write docs for breadcrumb component
* refactor: collapse `if` condition for hideOnRoot
* chore: add todo for perf optimization
* docs: update introduction
commit d4c122646ccd6fc989b4436e16b2dffdc931dee6
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Thu Sep 28 17:39:44 2023 +0200
fix(explorer): default sortFn implementation (#511)
* fix: use `numeric` + `base` for localeCompare
* docs(explorer): update default sortFn
commit d22c3c107a9c6422ef251bd1076ddd9c4fe47a42
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Sep 25 18:15:55 2023 -0700
fix: coerce title to string
commit 697bffdb8b1bef143823f77a118de90286fe325a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Sep 24 14:47:30 2023 -0700
fix: treat the 0 time as invalid too
commit ea5742c328c97a20f7add4994aa7e443fc6f7f39
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Sep 24 10:31:47 2023 -0700
fix: mermaid copy source position
commit 95eec5b49db53801e23b4b47778cb0b6153db83f
Author: Chad Lee <git@chadly.net>
Date: Sun Sep 24 12:27:42 2023 -0500
add site to showcase (#504)
commit c5b9137f12ea372d9196e41ffffc91eee7ad772e
Author: Vince Imbat <96913392+vinceimbat@users.noreply.github.com>
Date: Sat Sep 23 10:39:02 2023 +0800
docs: Adds Vince Imbat to showcase (#501)
commit 13c867322629f5ee59c54b95679585b370e1442b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Sep 22 10:04:37 2023 -0700
feat: add warning for invalid date format
commit a897cc1f531844a2e4da36f8712b7aedec0c5824
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Sep 22 09:43:34 2023 -0700
feat: add warning for missing home page
commit d93599364a3dd0b46068826cf14ed7b25aa59fc3
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Fri Sep 22 17:20:19 2023 +0200
docs(showcase): fix pull request redirect link (#500)
commit fa69c2a5656254251b74dbd5545bef000f67af2f
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Thu Sep 21 19:35:11 2023 +0200
fix(explorer): increase consistency, explicitly use font-family (#496)
* fix(explorer): display name for folders without `index` file
* docs(explorer): add section for folder display names
* docs(explorer): fix broken wikilink
* fix(consistency): explicitly set font + label/link fix
Use consistent styling between folders with `folderClickBehavior: "link"` and `"collapse`
* Update quartz/components/styles/explorer.scss
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* Update quartz/components/styles/explorer.scss
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
---------
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
commit 8eb1554b13532a2441b41d2018800c56cfa84ce9
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Thu Sep 21 18:54:33 2023 +0200
fix(explorer): display names for folders without frontmatter (#494)
* fix(explorer): display name for folders without `index` file
* docs(explorer): add section for folder display names
commit dcdeae4e7bd527945b887ca347b3b4408c03055b
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Thu Sep 21 18:53:19 2023 +0200
docs(explorer): update default config + new example (#493)
commit 48452231d5fcd14ef218928bde9ae7e5bc745f4a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Sep 20 16:09:18 2023 -0700
perf: memoize filetree computation (#490)
* perf: memoize filetree computation
* format
* var -> let
commit 16d33fb77193710bede887d6a177d2144b78fb67
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Sep 20 16:08:54 2023 -0700
feat: display name for folders, expand explorer a little bit (#489)
* feat: display name for folders, expand explorer a little bit
* update docs
commit b029eeadabe0877df6ec11443c68743f1494bc40
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Wed Sep 20 22:55:29 2023 +0200
feat(explorer): improve accessibility and consistency (+ bug fix) (#488)
* feat(consistency): use `all: unset` on button
* style: improve accessibility and consistency for explorer
* fix: localStorage bug with folder name changes
* chore: bump quartz version
commit 6a9e6352e88aa9ff18e5b33cf2de442a250bd960
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Sep 20 13:52:45 2023 -0700
Revert "feat: Making Quartz available offline by making it a PWA (#465)"
This reverts commit d6301fae90d9f922618bf0f413e273156731eef7.
commit 70e029d151ccbb9aeab30a0f811b9f529b7f8818
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Sep 20 13:52:29 2023 -0700
Revert "docs: wording changes for offline support"
This reverts commit 52a172d1a4911080444ff797183e29ba8175741e.
commit 0bad3ce7990aa4ef417128f9d74c2947fe5117fd
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Sep 20 11:58:52 2023 -0700
docs: document enableToc
commit 52a172d1a4911080444ff797183e29ba8175741e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Sep 20 11:40:36 2023 -0700
docs: wording changes for offline support
commit d6301fae90d9f922618bf0f413e273156731eef7
Author: Adam Brangenberg <adambrangenberg@proton.me>
Date: Wed Sep 20 20:38:13 2023 +0200
feat: Making Quartz available offline by making it a PWA (#465)
* Adding PWA and chaching for offline aviability
* renamed workbox config to fit Quartz' scheme
* Documenting new configuration
* Added missig umami documentation
* Fixed formatting so the build passes, thank you prettier :)
* specified caching strategies to improve performance
* formatting...
* fixing "404 manifest.json not found" on subdirectories by adding a / to manifestpath
* turning it into a plugin
* Removed Workbox-cli and updated @types/node
* Added Serviceworkercode to offline.ts
* formatting
* Removing workbox from docs
* applied suggestions
* Removed path.join for sw path
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* Removed path.join for manifest path
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* Removing path module import
* Added absolute path to manifests start_url and manifest "import" using baseUrl
* Adding protocol to baseurl
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* Adding protocol to start_url too then
* formatting...
* Adding fallback page
* Documenting offline plugin
* formatting...
* merge suggestion
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* merge suggestion
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* merge suggestion
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* merge suggestion
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* merge suggestion
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* merge suggestion
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* merge suggestion
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* merge suggestion
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* merge suggestion
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* merge suggestion
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* merge suggestion
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* merge suggestion
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* formatting...
* Fixing manifest path, all these nits hiding the actual issues .-.
* Offline fallback page through plugins, most things taken from 404 Plugin
* adding Offline Plugin to config
* formatting...
* Turned offline off as default and removed offline.md
---------
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
commit 27a6087dd5a25dd5031b86b9917adde6ef4b211a
Author: rwutscher <richard.wutscher@gmail.com>
Date: Tue Sep 19 21:26:30 2023 +0200
fix: tag regex no longer includes purely numerical 'tags' (#485)
* fix: tag regex no longer includes purely numerical 'tags'
* fix: formatting
* fix: use guard in findAndReplace() instead of expanding the regex
commit 1bf7e3d8b3966590ebfa3418d6fb2ce6a520c846
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Sep 19 10:22:39 2023 -0700
fix(nit): make defaultOptions on explorer not a function
commit cc31a40b0cb53cba7f51187cb6d68076c3f54c0f
Author: David Fischer <david@konst.fish>
Date: Tue Sep 19 18:25:51 2023 +0200
feat: support changes in system theme (#484)
* feat: support changes in system theme
* fix: run prettier
* fix: add content/.gitkeep
commit 0d3cf2922618774fc397dca8cb92fcf76fb0db02
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Mon Sep 18 23:32:00 2023 +0200
docs: fix explorer example (#483)
commit 6a2e0b3ad3a928247a03a76817d239e61cce0fe0
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Sun Sep 17 22:04:44 2023 +0200
fix: bad visibility for last explorer item (#478)
* fix: bad visibility for last explorer item
* feat(explorer): add pseudo element for observer
commit e67f409ec1fa36779f59a635eb3e16408275575d
Merge: af41f34b 4afb099b
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Sun Sep 17 21:36:04 2023 +0200
Merge pull request #479 from benschlegel/explorer-config
feat(explorer): add config for custom sort/map/filter functions
commit 4afb099bf3ec96e5d795e871ecb19575271c0714
Author: Ben Schlegel <ben5.schlegel@gmail.com>
Date: Sun Sep 17 21:32:23 2023 +0200
docs: fix examples
commit 6914d4b40caff901ccf3e9d9113c15129a68a80c
Author: Ben Schlegel <ben5.schlegel@gmail.com>
Date: Sun Sep 17 21:20:09 2023 +0200
docs: fix intra page links
commit af41f34bfd4126756e594ce4d6a46d4f4907754b
Author: Christian Gill <gillchristiang@gmail.com>
Date: Sun Sep 17 20:02:00 2023 +0200
fix(slug): Handle question mark (#481)
commit 7ac772fca8bf26c1023f905cdb77e6972a0d4b61
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Sun Sep 17 19:29:20 2023 +0200
fix: darkmode scroll bars (#480)
commit 5cc9253c41fda87ba473df7023567ba66ce3c32b
Author: Ben Schlegel <ben5.schlegel@gmail.com>
Date: Sun Sep 17 16:41:23 2023 +0200
docs(explorer): write docs for new features
commit 94a04ab1c9fd099c808f3f4e6633722e0d13ac85
Author: Ben Schlegel <ben5.schlegel@gmail.com>
Date: Sun Sep 17 15:51:08 2023 +0200
fix(explorer): filter function in `ExplorerNode`
commit 9358f73f1c939ce459d7835457527e35e1bdf857
Author: Ben Schlegel <ben5.schlegel@gmail.com>
Date: Sun Sep 17 12:41:06 2023 +0200
fix: display name for file nodes
commit f7029012dfb73ce04405bfe44e4e4d984818bf5f
Author: Ben Schlegel <ben5.schlegel@gmail.com>
Date: Sat Sep 16 21:58:38 2023 +0200
feat: black magic
add config for `order` array, which determines the order in which all passed config functions for explorer will get executed in.
functions will now dynamically be called on `fileTree` via array accessor (e.g. fileTree["sort"].call(...)) with corresponding function from options being passed to call)
commit fea352849c6972da4b3b8935eb2e86f6cefc76ed
Author: Ben Schlegel <ben5.schlegel@gmail.com>
Date: Sat Sep 16 19:45:21 2023 +0200
fix: create deep copy of file passed into tree
commit 3d8c470c0d298f720614318fb4c14575e72bbd2e
Author: Ben Schlegel <ben5.schlegel@gmail.com>
Date: Sat Sep 16 19:35:27 2023 +0200
feat(explorer): implement `map` fn argument
Add a function for mapping over all FileNodes as an option for `Explorer`
commit 31d16fbd2c82380af586e458b2c1ff29b90b53ae
Author: Ben Schlegel <ben5.schlegel@gmail.com>
Date: Sat Sep 16 19:18:59 2023 +0200
feat(explorer): integrate filter option
commit 036a33f70bcabc17469956740847796a5f13b9ab
Author: Ben Schlegel <ben5.schlegel@gmail.com>
Date: Sat Sep 16 17:47:44 2023 +0200
fix: use correct import for `QuartzPluginData`
commit 58aea1cb0791e18cd092d88de5374431eba7f1d3
Author: Ben Schlegel <ben5.schlegel@gmail.com>
Date: Sat Sep 16 17:28:58 2023 +0200
feat: implement filter function for explorer
commit c7d3474ba8cb49ab0f1978216d80b08ec2c8e5d7
Author: Ben Schlegel <ben5.schlegel@gmail.com>
Date: Sat Sep 16 12:40:19 2023 +0200
feat(explorer): add config to support custom sort fn
commit 422ba5c36586c7ebc31141da8bb539b4157aa01a
Author: Yuto Nagata <38714187+mouse484@users.noreply.github.com>
Date: Sat Sep 16 11:17:20 2023 +0900
fix: umami analytics date attribute (#477)
commit 9ae6343dd0104d44e6bdf083572f987b70ba50c9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Sep 15 10:33:38 2023 -0700
Revert "fix: use git dates by default, @napi/git is fast enough"
This reverts commit 5dcb7e83fc3c8383ebbc84aac4553df4ad3ef59a.
commit 5dcb7e83fc3c8383ebbc84aac4553df4ad3ef59a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Sep 15 09:46:06 2023 -0700
fix: use git dates by default, @napi/git is fast enough
commit 91f9ae2d71d5c28ba7d2182eed5a9f77da1fbe8d
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Fri Sep 15 18:39:16 2023 +0200
feat: implement file explorer component (closes #201) (#452)
* feat: add basic explorer structure„
* feat: integrate new component/plugin
* feat: add basic explorer structure
* feat: add sort to FileNodes
* style: improve style for explorer
* refactor: remove unused explorer plugin
* refactor: clean explorer structure, fix base (toc)
* refactor: clean css, respect displayClass
* style: add styling to chevron
* refactor: clean up debug statements
* refactor: remove unused import
* fix: clicking folder icon sometimes turns invisible
* refactor: clean css
* feat(explorer): add config for title
* feat: add config for folder click behavior
* fix: `no-pointer` not being set for all elements
new approach, have one `no-pointer` class, that removes pointer events and one `clickable` class on the svg and button (everything that can normally be clicked). then, find all children with `clickable` and toggle `no-pointer`
* fix: bug where nested folders got incorrect height
this fixes the bug where nested folders weren't calculating their total height correctly. done by adding class to main container of all children and calculating total
* feat: introduce `folderDefaultState` config
* feat: store depth for explorer nodes
* feat: implement option for collapsed state + bug fixes
folderBehavior: "link" still has bad styling, but major bugs with pointers fixed (not clean yet, but working)
* fix: default folder icon rotation
* fix: hitbox problem with folder links, fix style
* fix: redirect url for nested folders
* fix: inconsistent behavior with 'collapseFolders' opt
* chore: add comments to `ExplorerNode`
* feat: save explorer state to local storage (not clean)
* feat: rework `getFolders()`, fix localstorage read + write
* feat: set folder state from localStorage
needs serious refactoring but functional (except folder icon orientation)
* fix: folder icon orientation after local storage
* feat: add config for `useSavedState`
* refactor: clean `explorer.inline.ts`
remove unused functions, comments, unused code, add types to EventHandler
* refactor: clean explorer
merge `isSvg` paths, remove console logs
* refactor: add documentation, remove unused funcs
* feat: rework folder collapse logic
use grids instead of jank scuffed solution with calculating total heights
* refactor: remove depth arg from insert
* feat: restore collapse functionality to clicks
allow folder icon + folder label to collapse folders again
* refactor: remove `pointer-event` jank
* feat: improve svg viewbox + remove unused props
* feat: use css selector to toggle icon
rework folder icon to work purely with css instead of JS manipulation
* refactor: remove unused cfg
* feat: move TOC to right sidebar
* refactor: clean css
* style: fix overflow + overflow margin
* fix: use `resolveRelative` to resolve file paths
* fix: `defaultFolderState` config option
* refactor: rename import, rename `folderLi` + ul
* fix: use `QuartzPluginData` type
* docs: add explorer documentation
commit 14cbbdb8a2f69ebc51cd53a82b50206c543778b0
Author: Oskar Manhart <52569953+oskardotglobal@users.noreply.github.com>
Date: Thu Sep 14 05:55:59 2023 +0200
feat: display tag in graph view (#466)
* feat: tags in graph view
* fix: revert changing graph forces
* fix: run prettier
commit cce389c81d262d1d2a2bd8140c879efd68e3c6dd
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Sep 13 11:28:53 2023 -0700
feat: note transclusion (#475)
* basic transclude
* feat: note transclusion
commit 4461748a85b8795651d0c02451368dffff607938
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Sep 13 09:43:14 2023 -0700
fix dont show html in search when rssFullHtml is true (closes #474)
commit 6ecdcb5e24f2783e6fa73de69e848f0f319c4fc4
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Sep 12 22:55:50 2023 -0700
feat: resolve block references in obsidian markdown
commit e3b879741b6d32f56e1d1bfd0bac57f0d68c1113
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Sep 12 21:44:03 2023 -0700
feat: rich html rss (closes #460)
commit 60a3c543398aed8caf44b411a4dc10e8d1e26fcc
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Sep 12 21:29:57 2023 -0700
fix: 404 page styling for nested pages (closes #458)
commit 71d81bde1d12aa386ec70be31cc86a37a7426bce
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Sep 12 19:18:44 2023 -0700
feat: rss limit (closes #459)
commit a19df64be8423063c2484ab35300fb0bef324a14
Author: hcplantern <38579760+HCPlantern@users.noreply.github.com>
Date: Tue Sep 12 14:00:21 2023 +0800
fix: callout parsing (#469)
commit 4e23e6724493a8d112c6ff22e14cf4aabd5e9af1
Author: Oskar Manhart <52569953+oskardotglobal@users.noreply.github.com>
Date: Mon Sep 11 08:11:42 2023 +0200
feat: plugin for remark-breaks (#467)
* feat: plugin for remark-breaks
* fix: update package-lock.json
* fix: styling
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* Update linebreaks.ts
* Update index.ts
---------
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
commit a66c239797e3e80e2dc8b7059eee8c51bcf4ca8f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Sep 10 23:07:17 2023 -0700
ci: print bundleInfo
commit 53f1c88738550eb2646cc0a03469dc230839a258
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Sep 8 09:29:57 2023 -0700
fix: more lenient date parsing for templates
commit 06df00b18621f08a211bec33f566ecb7ef4ec22e
Author: Stefano Cecere <stefano.cecere@krur.com>
Date: Thu Sep 7 17:13:41 2023 +0200
typo (it's draft, not drafts) (#456)
commit 2525bfbab5553f970997ea3c60af180cbef1fdd2
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Sep 6 22:24:15 2023 -0700
fix: links to index not showing in graph (closes #450)
commit 828aa71fe34aae675a7552957e8a062c82f595f6
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Sep 6 21:47:59 2023 -0700
fix: escape encoding for titles in rss
commit ef1ead31dccd05f4275405b843ff47fa28a5116d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Sep 6 21:31:01 2023 -0700
fix: encodeuri for slugs in rss
commit 989bee597987bba2aeae4266cb32ac8e899f638c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Sep 6 21:08:08 2023 -0700
docs: correct field for ignorePatterns
commit 8d6029b7b844044d06fe17de89db6881954a8fec
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Sep 6 21:02:21 2023 -0700
feat: 404 page emitter
commit 2d52eba4133293a27f6df98c252785ba4ddee575
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Sep 6 20:25:38 2023 -0700
fix: dont transform external links
commit 6ef4246cf186414d1b8ee868cfa9d24314f0bc0a
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Mon Sep 4 07:36:30 2023 +0200
docs: update `full-text-search.md` (#447)
commit 616a7f148a283b2fd7c5204c60ddf1b08f42d125
Author: Dr Kim Foale <kim@gfsc.studio>
Date: Mon Sep 4 05:29:58 2023 +0100
docs: Make it clearer that wikilinks go to paths not page titles (#448)
commit e8a04efaf1b82560cbcf7694ac6c7dda1c82612f
Author: Adam Brangenberg <adambrangenberg@proton.me>
Date: Mon Sep 4 06:28:57 2023 +0200
feat(analytics): Support for Umami (#449)
commit 7e42be8e46501c752dda9bd174fb93ea9dccec22
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Sun Sep 3 18:32:46 2023 +0200
feat(search): add arrow key navigation (#442)
* feat(search): add arrow navigation
* chore: format
* refactor: simplify arrow navigation
* chore: remove comment
* feat: rework arrow navigation to work without state
* feat: make pressing enter work with arrow navigation
* fix: remove unused css class
* chore: correct comment
* refactor(search): use optional chaining
commit 8c354f6261dda6d9761f594002db53c9d7a8e8e2
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Sun Sep 3 18:06:05 2023 +0200
fix: clipboard button visible in search (#445)
commit 505673acd71e6b023abae19c706a736b257cff2a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Sep 2 18:07:26 2023 -0700
feat: pluralize things in lists
commit 23f43045c49f17fe5ace480f7026855acf2a30b8
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Fri Sep 1 23:12:32 2023 +0200
fix(search): matches getting highlighted in title (#440)
commit 90dac31216b5d3f59e65ec5778e21a308a744e11
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Fri Sep 1 19:09:58 2023 +0200
feat: Implement search for tags (#436)
* Quartz sync: Aug 29, 2023, 10:17 PM
* style: add basic style to tags in search
* feat: add SearchType + tags to search preview
* feat: support multiple matches
* style(search): add style to matching tags
* feat(search): add content to preview for tag search
* fix: only display tags on tag search
* feat: support basic + tag search
* refactor: extract common `fillDocument`, format
* feat: add hotkey to search for tags
* chore: remove logs
* fix: dont render empty `<ul>` if tags not present
* fix(search-tag): make case insensitive
* refactor: clean `hideSearch` and `showSearch`
* feat: trim content similar to `description.ts`
* fix(search-tag): hotkey for windows
* perf: re-use main index for tag search
commit 2d6dc176c3e1fbb520a5da1beb60bbb1d8e948ba
Author: Pelayo Arbués <gonzalezpelayo@gmail.com>
Date: Thu Aug 31 21:12:06 2023 +0200
Adds Pelayo Arbues to showcase (#435)
commit b213ba45e2e706332e057b131adc946f882f090b
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Thu Aug 31 20:55:04 2023 +0200
fix: regex for matching highlights (closes #437) (#438)
* fix: regex for matching highlights
* fix: regex for empty highlights
commit 5fa6fc97899c905b6fbc14fa1d24334f3e68fa77
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 29 10:37:00 2023 -0700
fix: aliasredirects not using full path, add permalink support
commit 1cc09ef76db129fb3670e95560312adeefab913c
Author: Jeffrey Fabian <jeffrey.fabian61@gmail.com>
Date: Tue Aug 29 13:14:54 2023 -0400
feat: support kebab-case and nested tags in Obsidian-flavored Markdown tag-in-content parsing (#425)
* enhancement: support kebab-case and nested tags in ofm transformer
* update regex/capture groups to allow for (arbitrarily) nested values and tags of only -/_
* Update quartz/plugins/transformers/ofm.ts
---------
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
commit c35cd422c65a58f1069302aad0cf9eef7f93d987
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Mon Aug 28 19:00:49 2023 +0200
fix: correct graph labels for `index.md` nodes (#431)
commit 082fdf2e8098ef6bcb46a7dfabf8c6b9fd096346
Author: Jeremy Press <jeremypress1@gmail.com>
Date: Sun Aug 27 20:57:19 2023 -0700
Fix typo :) (#430)
commit b6b1dabde0f63ca0ae743aa7f4266ca892d7b5e5
Author: Jeremy Press <jeremypress1@gmail.com>
Date: Sun Aug 27 17:39:42 2023 -0700
feat: support configurable ws port and remote development (#429)
Co-authored-by: Jeremy Press <jeremy@replit.com>
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
commit 4b89202f7e834cf8b5c5aa39e8f1778706492085
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Mon Aug 28 00:59:51 2023 +0200
cleanup: rework cli to allow invoking create and build outside of cli (#428)
* refactor: move `bootstrap-cli.mjs` tp cli
also update reference in docs
* refactor(cli): move build handler to `cli-functions`
* refactor(cli): move create to handler + helpers
* refactor(cli): extract arg definitions
* refactor: rename handlers and helpers
* refactor(cli): move update, await handlers
* refactor(cli): create constants, migrate to helpers
* refactor(cli): migrate `restore`
* refactor(cli): migrate `sync`
* format
* refactor(cli): remove old imports/functions
* refactor(cli): remove unused imports + format
* chore: remove old log statement
* fix: fix imports, clean duplicate code
* fix: relative import
* fix: simplified cacheFile path
* fix: update cacheFile import path
* refactor: move bootstrap-cli to quartz
* format
* revert: revert path to bootstrap-cli
* ci: re-run
* ci: fix execution permission
commit 52ca312f41ee6da5202cd9632d8501340ada3a67
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 27 12:27:42 2023 -0700
fix: slugify tag on page before adding (closes #411)
commit c91e62c376d481534d89084e5c04846878dff6d3
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Sun Aug 27 02:19:45 2023 +0200
Fix search bar after navigate (#424)
commit ad4145fb10dbf32d8f99e1de555339dba0979f72
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Sat Aug 26 22:21:44 2023 +0200
feat: support CLI arguments for `npx quartz create` (#421)
* feat(cli): add new args for content + link resolve
* feat(cli): validate cmd args
* feat(cli): add chalk + error code to errors
* feat(cli): support for setup/link via args
* refactor(cli): use yargs choices instead of manual
Scrap manual check if arguments are valid, use yargs "choices" field instead.
* feat(cli): add in-dir argument+ handle errors
add new "in-directory" argument, used if "setup" is "copy" or "symlink" to determine source. add error handling for invalid permutations of arguments or non existent path
* feat(cli): dynamically use cli or provided args
use "in-directory" arg as `originalFolder` if available, otherwise get it from manual cli process
* run format
* fix: use process.exit instead of return
* refactor: split CommonArgv and CreateArgv
* refactor(cli): rename create args, use ${} syntax
* fix(cli): fix link resolution strategy arg
* format
* feat(consistency): allow partial cmd args
commit 74c3ebb7bd7ef126246f8ea03565db73cd5e7f38
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 26 10:48:34 2023 -0700
style: fix mulitline callout styling
commit e3265f841637de197e5cf4a5471372b5178f1e4d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 26 10:42:55 2023 -0700
docs: simplify oxhugo page
commit bc543f81d9ada5e61cb9690834a5f83c02997d63
Author: Hrishikesh Barman <geekodour@users.noreply.github.com>
Date: Sat Aug 26 11:22:23 2023 +0530
feat(plugins): add OxHugoFlavouredMarkdown (#419)
* feat(plugins): add OxHugoFlavouredMarkdown
ox-hugo is an org exporter backend that exports org files to
hugo-compatible markdown in an opinionated way. This plugin adds some
tweaks to the generated markdown to make it compatible with quartz but
the list of changes applied it is not extensive.
In the future however, we could leapfrog ox-hugo altogether and
create a quartz site directly out of org-roam files. That way we won't
have to do all the ritual dancing that this plugin has to perform.
See https://github.com/k2052/org-to-markdown
* fix: add toml to remarkFrontmatter configuration
* docs: add docs for OxHugoFlavouredMarkdown
* fixup! docs: add docs for OxHugoFlavouredMarkdown
commit 5c6d1e27baef74a42cc292276c5832b010a38fd5
Author: Hrishikesh Barman <geekodour@users.noreply.github.com>
Date: Fri Aug 25 22:55:46 2023 +0530
feat(plugins): add toml support for frontmatter (#418)
* feat(plugins): add toml support for frontmatter
Currently frontmatter is expected to be yaml, with delimiter set to
"---". This might not always be the case, for example ox-hugo(a hugo
exporter for org-mode files) exports in toml format with the delimiter
set to "+++" by default.
With this change, the users will be able use frontmatter plugin to
support this toml frontmatter format.
Example usage: `Plugin.FrontMatter({delims: "+++", language: 'toml'})`
- [0] https://ox-hugo.scripter.co/doc/org-meta-data-to-hugo-front-matter/
* fixup! feat(plugins): add toml support for frontmatter
commit 340e3ef5116cd99c8ddfdbb3d9e0bbd914e07825
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Fri Aug 25 18:03:49 2023 +0200
feat(consistency): Add `.obsidian` to ignorePatterns (#420)
commit 953ef29f4e238ef9ae186ab79eeec1bf4f3921a6
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 24 12:31:15 2023 -0700
format, ensure ci runs on prs
commit 94ce0883e7fbf38252377af2f144c971a2ff591b
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Thu Aug 24 21:28:06 2023 +0200
style: integrate tertiary color to text-select (#413)
commit 8cf7280614f8c1f2c9aaba5671f388d63bbea4dd
Author: Zero King <l2dy@icloud.com>
Date: Fri Aug 25 02:41:20 2023 +0800
feat: reproducible build (#412)
for sitemap, RSS and contentIndex.json.
commit c8412a5b0ac90d9d7beb7e03ed9a4763e834a865
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 24 10:03:14 2023 -0700
format
commit fc4b8f3d3fad90b6f7d8dedc58201df68da1280e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 24 09:38:00 2023 -0700
fix: ensure recentnotes uses proper date
commit 6cd0612d40a5011f19f5ca2e5e804477779e393f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 24 09:17:43 2023 -0700
fix: add better warning when defaultDateType is not set due to upgrade
commit 9851697b583efdd40173ebbdd484030f2adb0732
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 24 09:05:19 2023 -0700
version bump to 4.0.10
commit c36a9f3fb7c2128610d20312ffb332bd238c89de
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 24 08:56:40 2023 -0700
feat: add defaultDateType config
commit 98d82415dc8d60c3a35ea4dee21c86e406605763
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 24 08:31:06 2023 -0700
fix: lock to never read when site is building
commit 9d2340e90b55fb9480e0901bc7360f3d72e688da
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Thu Aug 24 17:14:52 2023 +0200
docs: fix typo in `authoring content.md` (#408)
commit 8200c8d0402cb40e9f65c49dac5be621360a3a20
Author: bfahrenfort <59982409+bfahrenfort@users.noreply.github.com>
Date: Thu Aug 24 00:57:49 2023 -0500
Revert contentIndex to RSS 2.0 (#407)
commit 2e0e518f5dbddc3b55e9dd1a085c2a88d365b599
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 23 15:16:04 2023 -0700
format
commit 632c27b7ec133d15d890eb28c98eb9716ca01407
Author: Zane Helton <me@zaaane.com>
Date: Wed Aug 23 18:14:23 2023 -0400
docs: update `hosting.md` with Vercel hosting instructions (#406)
* Update hosting.md with Vercel hosting instructions
* Update docs/hosting.md
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* Update docs/hosting.md
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* Run npm run format
---------
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
commit bfb416b35a02dabbdaedc9e3c8980f8b4aadd9aa
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 23 13:10:23 2023 -0700
fix: text wrap in popover
commit 960c1814d07449dd9fd5e70eea770ba762780b53
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 23 12:23:49 2023 -0700
docs: make incompability of trailing slashes clear
commit eed4472aeecdcb0f2b233df69884f03bd45fc293
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 23 12:18:50 2023 -0700
fix: use proper full base for links.ts
commit b99eb7ebce21065b7ff59cdd3226d4fc173b3878
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 23 12:11:16 2023 -0700
docs: whitespace
commit 0aaf88b8521e2bc667cae525356eea3550ad9c96
Author: kanpov <71177577+kanpov@users.noreply.github.com>
Date: Wed Aug 23 22:09:04 2023 +0300
Fix #403 by moving documentation to separate directory to avoid merge conflicts (#405)
commit a1a1e7e1e0c06f2f7b759c5aecd6a9ceba3e2717
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 23 11:36:34 2023 -0700
fix: builds should no accumulate on repeated changes (closes #404)
commit 3209f7c3b7837fd845cbef645155a9484ea0253a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 23 09:19:00 2023 -0700
deps: native addons for lightningcss
commit cde1e26129f8cd6b183ccc1c35a06f76dedeff9c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 23 09:16:44 2023 -0700
deps: install exact
commit 1128efcf237d275343daaab16e1b1d3e228999b9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 23 09:10:30 2023 -0700
deps: esbuild and esbuild-sass-plugin
commit d2f52549955ff7600cc5897e67806df4ebf85f91
Author: Aaron Pham <29749331+aarnphm@users.noreply.github.com>
Date: Wed Aug 23 12:05:01 2023 -0400
fix(esbuild): conflict with esbuild-sass-plugin (#402)
commit 3064839c2d2ea0a9976bef83db12102647572083
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 22 23:37:02 2023 -0700
version bump to 4.0.9
commit b444c5c13b983bf80df8b6d020eb246e9fd3e78e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 22 23:33:58 2023 -0700
fix: percent-encoding for files with %, contentIndex for non-latin chars (closes #397, closes #399)
commit 36548d59866ab3236677ff25af106b882c0694f6
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 22 22:41:50 2023 -0700
fix: toc for cyrillic and other non-latin alphabets (closes #396)
commit 99dbe525d9b221bf12778ed899c94ef103a77c45
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 22 22:27:41 2023 -0700
fix: properly lock across source and content refresh by sharing a mutex
commit 8b63ff882ae28b1a1774293673a7531463d6a5e5
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 22 22:14:16 2023 -0700
fix: tag support for non-latin alphabets (fixes #398)
commit b991cf2ee8a456a15f2b566843d93a9b7a9a0c29
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 22 21:30:31 2023 -0700
fix: spa hijacks back button (closes #400)
commit bb677840fc1ff14637fab8a99841dd532f408fce
Author: 松浦 知也 Matsuura Tomoya <me@matsuuratomoya.com>
Date: Wed Aug 23 01:16:55 2023 +0900
fixed broken CJK links (#390)
commit c60b3d5e3444e46587c1143dab784c53204070ae
Author: Ikko Eltociear Ashimine <eltociear@gmail.com>
Date: Wed Aug 23 01:16:21 2023 +0900
fix: typo in bootstrap-cli.mjs (#394)
commit e10de3febffd3e3b7eaa3aed611aea03153e6a82
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Aug 21 17:01:18 2023 -0700
fix: server-handler crash from filename (closes #386)
commit b69556c918e2a4a27b047e8de6b02861f04d5a9e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Aug 21 16:43:22 2023 -0700
fix: async-mutex not exclusively locking correectly
commit ce7057107266c1d96a909977add472af83f0e9f9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Aug 21 09:14:47 2023 -0700
docs: use canonical quartz.jzhao.xyz, update bootstrap script to point to correct hosting link
commit 8c943f47d6ddedc5da4b9447fec173a16d91758c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Aug 21 09:00:13 2023 -0700
format, update default sidepanel width
commit 2774e976d20226df1554ebddd6c7d2e390cae42d
Author: 松浦 知也 Matsuura Tomoya <me@matsuuratomoya.com>
Date: Tue Aug 22 00:45:47 2023 +0900
fix: opts being overriden in graph option (#384)
commit bb93ac1c83fd8d13593f7f9688de02eba60de913
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 23:50:19 2023 -0700
docs: fix links to networked thought
commit 777ff51c7a704459f9708086845b62aa8fe4e89d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 20:48:35 2023 -0700
format
commit 4e42d52e166dcc3c62775cb3bf86c209d098c158
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 20:47:07 2023 -0700
fix: ctrl + k breaking after page nav
commit d0f67d993507219cfa0824db8a3e59286f0ebf09
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 18:41:37 2023 -0700
move wss server start after http
commit 952d6cb3dd63bb50056198c1d7782314f8976bbf
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 18:08:44 2023 -0700
fix: nav event with spa off, anchor nav refresh page
commit 173ec240d2ed5b25f18ef42823334ae800b3527d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 17:50:56 2023 -0700
fix: jump to anchor on deployed site triggering spa refresh
commit 425c9789a451e69adbba2d99193e38e8915e8804
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 16:59:25 2023 -0700
remove checkout step from instructions as v4 is the default branch
commit 7b7064ad2be68e8d6d43123c12529ca94a325fcb
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 15:38:37 2023 -0700
fix: ensure code exists inside pre before adding clipboard
commit ca17af4ae20b9310da52a3752b8d7744c932f3e2
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 15:02:24 2023 -0700
fix: dont show index page for folder in its own listing
commit 71471117c5ec4acdfc0b8335b4462ab43d86fce6
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 14:34:00 2023 -0700
fix: ci runs on v4
commit e65ea48fae5a279ad4e50594b03621904f84e477
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 14:27:44 2023 -0700
fix: add async-mutex to builds on large vaults
commit b99d4cd8ce99ea1e52a97654ab153774a6bc598a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 14:05:37 2023 -0700
recent notes css fixes
commit 1bb00e72bb4ab8fcac186ef6961e400c60fb07de
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 13:00:33 2023 -0700
add docs for recent notes
commit 236130ac221f7d254ec9881f529f4ca567e15234
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 12:46:37 2023 -0700
css fixes, add recent notes, more robust quartz update
commit 5adf3c67a8f1939b891fadd2c8c30cf201d87943
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 08:57:56 2023 -0700
add engines field
commit 9d77edaf94d23f207552b3a650189810ba2252cd
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 01:08:18 2023 -0700
fix description not being used in folder and tag listings
commit 0ef1b5b522d1d6c0c79cd0538a2d63a9bf71a973
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 00:54:13 2023 -0700
update plausible url
commit cfb7d1232e005736dc549fb24ec5a02d53fc5206
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 00:52:49 2023 -0700
docs: update notes for tag and folder listings
commit 03fd62496f94c7cc007f802fc10290581d08deb0
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 00:02:41 2023 -0700
docs: note about updating default branch
commit d205eb568686a718cae889d51fde5ae18d352b30
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 19 22:19:49 2023 -0700
docs: make setting upstream more clear, docs on npx quartz restore
commit 96a3bfeafbe3e46bdf3e217dd934b026bc1b9f9f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 19 22:04:29 2023 -0700
fix: put quotations around font
commit 95fb6ccfcb5d887f1085bc1b58204b4138a2e804
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 19 21:59:20 2023 -0700
readme fix
commit e26248292179ebb691dfa99621192b2258c9b9c3
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 19 21:59:01 2023 -0700
fix: string for aliases being treated as array of chars
commit eb4d3dc5b405fda29ccde917902483a76835894c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 19 21:55:09 2023 -0700
css: fix scrollbars on windows
commit 90d6c1ed24283d0b046ba7eee2e6533a73cf3683
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 19 21:38:10 2023 -0700
add git fetch to migration instructions
commit 443c1828901f364cb7f5708a64a32494eea28d28
Merge: 791b8e2d a6236d97
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 19 21:16:31 2023 -0700
Merge branch 'v4' of https://github.com/jackyzha0/quartz into v4
commit 791b8e2d9f826de8cd0e3db3aead04ad8c65bc6e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 19 21:16:24 2023 -0700
add sponsors
commit a6236d97cf847a88dc2f72450372d440561032ac
Author: Matt Dunn <55315824+TheRealMattDunn@users.noreply.github.com>
Date: Sun Aug 20 03:15:14 2023 +0100
Adding to Showcase page (#367)
commit b1debaebff5c5753149e02e990439e7e56528852
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 19 18:56:45 2023 -0700
update docs
commit 7b8017413c16c0153c58919ab30e0e2de6e71f02
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 19 18:04:17 2023 -0700
impl baseDir option for quartz build --serve for local testing
commit 6681f28af0bb753918699c41ef9a8421f6b7cd08
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 19 16:55:36 2023 -0700
fix trailing slash causing folder listing to not fetch content correctly
commit 78f4cdbe109308fa33cb87387952aef5a528ebbe
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 19 16:40:02 2023 -0700
avoid 404 on icon for spa navigations with anchors
commit dd47be1bc65d3a8050d6ce9e77cd0e3b10e2a1a9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 19 16:28:44 2023 -0700
improve path resolution stability
commit c874e7e9378a5ba895870e9680484fb4af5c6e93
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 19 15:52:25 2023 -0700
base path refactor to better support subpath hosting
commit 3201f83b70bb2ee1d1daeb585a26e8cd6b8ce95f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Aug 18 18:24:09 2023 -0700
v4-alpha -> v4
commit d8bec631b6dee8f5b9c42f75d154252e53e81b77
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Aug 18 18:22:38 2023 -0700
update docs on github pages and syncing
commit 6f1f820289ce37d328c4bc8cceba1f702df52e15
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 17 23:39:15 2023 -0700
fix typo in docs
commit 8bc7a50dfa91dd7ba6b657aca6dbc437fa6df6b7
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 17 21:54:42 2023 -0700
format
commit 569beb410b967b8511a5d18cdee74280df681d15
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 17 21:49:58 2023 -0700
ensure sync includes untracked files
commit 5713d30670fc9ca1f9d86e6f0698bd011a68f674
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 17 21:24:41 2023 -0700
ensure contentfolder is passed to popContentFolder
commit a13094544318b06902b54a24ea61691fe598a2fc
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 17 21:20:15 2023 -0700
fix when symlink targ is calculated and added npx quartz restore
commit e10f6da01140f483162fe33cc77b2255b0683ac7
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 17 21:08:26 2023 -0700
format
commit a7cca3242ad7adc5163d70aa2cc8ee23c92211e5
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 17 21:07:40 2023 -0700
deref symlink on quartz sync
commit 0998bc355e6425e6b2bdf3d2da7124aa7b63b2a2
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 17 01:58:11 2023 -0700
fix rebuild debouncing
commit 07a327e05aa2a48aa11faf9aa0e049201d622f8f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 17 01:34:50 2023 -0700
fix back button in spa not working between two pages that both have hash fragments
commit 58d9dc0528cc5d7232ac7a237c98213ff1075f39
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 17 00:55:52 2023 -0700
format
commit 0c199975f2d469ecdfd7efcf2ddd16ffa1dc492b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 17 00:55:28 2023 -0700
various path fixes for links to extensions, fix relative paths in links
commit 2dc0ae279cae87e37c94c42d4ad87107f2a5b5d2
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 16 22:09:11 2023 -0700
fix import paths
commit 2f6747b1666316e579c6e7238092ac6a65d00925
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 16 22:04:15 2023 -0700
fix relative path resolution in router and link crawling
commit 232652149a287054df7e7c5136dafd3f55a79bf0
Author: Sohaib <98542228+sohaibology@users.noreply.github.com>
Date: Mon Aug 14 20:59:47 2023 -0400
Update hosting.md (#371)
commit 7bde99b4e2d49e30dad1e0d58ccc34c2e7482005
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 13 17:47:07 2023 -0700
fix: add trailing slash to local serving
commit f1c9ca495e450ecb62dade70c4b60d86e106f79c
Author: vintro <77507980+vintrocode@users.noreply.github.com>
Date: Sun Aug 13 20:19:50 2023 -0400
docs: note about existing content at same path on different branches
commit 4f4b04eeb4f41067e4759bec5c2f5db181150520
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 12 21:18:51 2023 -0700
format docs
commit d6e73f221c3e52ce6591cbd01621530e5f6fd703
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 12 21:16:34 2023 -0700
fix relative path resolution logic, add more path tests
commit 6d9ffd6da508743407b3b88a89ed831b53321d59
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 12 17:44:35 2023 -0700
404 page styling on local
commit c89f8b1a9a20becd982ed0b4bc88b1685a15832d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 12 10:33:57 2023 -0700
fix nested callout folding
commit 8fd496bbef4bc62315f3a0893177da730d8c4262
Author: Sohaib <98542228+sohaibology@users.noreply.github.com>
Date: Sat Aug 12 16:52:16 2023 -0400
Update hosting.md (#368)
commit aed3f5fccbe6a70186b339af4716980a5950b989
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 12 10:17:07 2023 -0700
fmt
commit c55d54f068a102d85dc16c5c0e63db413bc56145
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 12 10:16:55 2023 -0700
enable rich text in callout title
commit 7bffc2183ece33e2d84909a5677dac0ae2563ddd
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 12 00:24:30 2023 -0700
include home page in search
commit 827dd918476e225238d8412551df2866e4f9e616
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 12 00:03:11 2023 -0700
format, make search async
commit e1dd6aee863878a02f51200b3878d619220c22f3
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Aug 11 23:55:17 2023 -0700
fix wikilinks to anchors in the same document
commit 83269ac26e41f8e81b56e000b4347ee60d4ff84b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Aug 11 23:40:06 2023 -0700
fix scanning for tags in content
commit ed62ece491310e75d336db844d8ce56d3d26be31
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Aug 11 23:27:59 2023 -0700
fix broken tag listing links to tags
commit 736c3981c4affff8dea1eb908ff760ee740ec4a3
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Aug 11 23:25:44 2023 -0700
fix emit filepaths, tag emit being overriden by content
commit 79e828696a9e53357f61bd89c36e41555575c2c2
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Aug 11 22:47:50 2023 -0700
feature docs
commit 259d0a6d9ac5a02f0281e3fc061861b23481348f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Aug 11 00:31:44 2023 -0700
more documentation
commit df02ea20d7e12e8b9ffdd2968afaf5893c433488
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 10 21:32:11 2023 -0700
spacing fix
commit 21cc6a5da9edefd199c0b2158b85b8cd10dd901c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 10 21:29:11 2023 -0700
run prettier
commit cefbca4753a7d98f93f57a6452a09f6308e2fe27
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 10 21:16:07 2023 -0700
docs on making plugins
commit ad3f7b2d5fe15af2626250463994f5a9e9ba6d0a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 9 09:18:44 2023 -0700
format
commit ebf3263b7efacc9ac499f3f1f1bbc91451899ae0
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 9 09:10:40 2023 -0700
update npx quartz update script
commit cea6834fef54da59fc1692d1db0221b93793238f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 9 00:26:33 2023 -0700
profiling, better concurrency heuristics
commit 68ccd1d79de7cef275605e238238c1a80bbb074f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 8 22:53:01 2023 -0700
format
commit 49bd6bc3ffe1d3507e00bae62c12d9b045363090
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 8 22:52:49 2023 -0700
better concurrency debugging, --concurrency flag for npx quartz build
commit e4950e06a15e34134b9feb064749748080bd59a1
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 8 21:31:36 2023 -0700
fix getFileExtension missing numeric extensions (e.g. mp4)
commit e21f0f9bb97cbc4bd59f6bce0e0fce451b6d2b01
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 8 21:28:09 2023 -0700
change reading time to content meta
commit ee9ed4f2877bff1a64104b6d97ed0d51b1bb6fa3
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 8 20:36:24 2023 -0700
fix head.tsx
commit 2706a137a042b4bf932b0ace9934914f290605f3
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 8 20:18:31 2023 -0700
guide to creating components
commit 09d4eb0684eac96747778656fc4a8f8085c41388
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Aug 7 23:57:24 2023 -0700
fix notes
commit 533d68e642ca82b540d57a449d0e2c98ed921d6e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Aug 7 23:56:50 2023 -0700
most of creating components, increase legibility of bold in article and callouts
commit 774a162850883468052fd5c5a79cf8786bd96989
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Aug 7 21:51:23 2023 -0700
format
commit 2ac5dd49da34d33e4086630d371cbaf1ed294153
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Aug 7 21:51:06 2023 -0700
fix regression in code block font-size boosting on safari mobile
commit 527ce6546e7ec50e7720ff7b9b6ff79a89c3b7fc
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Aug 7 21:41:18 2023 -0700
various css fixes, fix new image loading bug when previewing, path docs
commit d02af6a8ae4c3bea4c94ad63c118d517318146fe
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Aug 7 17:34:38 2023 -0700
architecture, fix vendor prefixing
commit b4cacd59569c066c52bbe163165c2a30d6ce3ad0
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 6 22:07:33 2023 -0700
format
commit cd9dc6ecb570c08291e73d9db001e6068df4d88a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 6 22:07:08 2023 -0700
fix css transforms for mobile
commit d8d9dd22c9e81f344f3ab56f7262d804c2720fcd
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 6 20:52:17 2023 -0700
fix shortest path for non-md files, mobile fix
commit 075ac33474d5d439b01daf5392738a3ea810b86d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 6 19:54:11 2023 -0700
note formatting
commit 3adc73a703142b3c0475570e4de16701b2797524
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 6 19:52:30 2023 -0700
docs upgrade, ci changes
commit 028bcec62c3ca019a96783f17eaee1ecce6e092b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 6 17:09:29 2023 -0700
mobile fixes, fix bug when linking to anchor on home, docs
commit db6054a8c19703345cfdd6dd4a08f35986c14acc
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 5 18:00:52 2023 -0700
format, remove markdown from being procesed
commit a0d651d64dfd766157324fd86791da2168028cf2
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 5 17:53:29 2023 -0700
reverse query param hack to re-add sourcemap support
commit 1da467d2143a260af8e5b7d2d2f68f0fcaa0260c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 5 16:43:50 2023 -0700
non-admonition callout fix
commit 7c09627df4bd61e3b4fbd6fd84a1971b40ff72b3
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 5 15:34:10 2023 -0700
improve hot reload robustness
commit c402f0c3857a75cc101c3459866c94e646fd2957
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 5 11:28:09 2023 -0700
more robust error handling, config hotreload
commit 9e76b257d4be4b9e6ea7b514074ef74d8d125f4b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Aug 4 22:35:21 2023 -0700
fix mermaid initialization
commit 21a7ec23078c04601acc4741ee141d7560e0d6f2
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 3 23:36:00 2023 -0700
bump mathjax version
commit 6423f85614dc87a320625d2efe2088d648c127ff
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 3 23:28:34 2023 -0700
fix execsync
commit 3a2eae0a16cfc275182f8a26af0a77f0e9bd07c1
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 3 23:24:34 2023 -0700
fix fetch flags
commit 2acfb9e8701d2b001a82a6af75969a1df7d97b67
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 3 23:08:04 2023 -0700
format, add upstream
commit 93986c6e7c8893ae3068bb3ea2ba187e5e1d6f43
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 3 22:29:46 2023 -0700
update pull strategy
commit 4877a9c934201e8f0e4e83821efe2dc3f9299d9a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 3 00:08:13 2023 -0700
fix callout aliases not being used properly
commit 6457496b4b8222d95d9b5ab47e8eda62d7241739
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 2 23:42:49 2023 -0700
readme fixes, force
commit fdf1e2a41d079c4f2d1f3df7c297fa0d92a18cc9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 2 23:29:28 2023 -0700
use checkout for pulling updates
commit 663c41fa41faad1528335a18c73a197ed5c6ea11
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 2 23:04:26 2023 -0700
use posix style paths for all path ops
commit de72dd4e4af550cd72847d7cc0924a5859edb9e1
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 2 22:16:46 2023 -0700
format
commit 5537ca41e0069725e98ef9ad59a2d4dbaa0bd8ae
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 2 22:16:32 2023 -0700
use autostash and pull
commit 558a50916446746768fa43bbdfc8e229d8ec7759
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 2 22:11:46 2023 -0700
format
commit d7842e0ce713e338f21374cea407a46cace18cca
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 2 22:10:13 2023 -0700
make path and globbing more platform invariant
commit 264ea3d54438b30bc7d9280e076e3f6e29d0ff8c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 2 20:59:56 2023 -0700
add gitattributes for windows
commit 0a33ff7a82658ecc6db3bb881db167f69893499c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 2 20:56:31 2023 -0700
fix test matrix for ci
commit 429f331c212d598b0d7ff44f20f75cf007bcf32b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 2 20:53:13 2023 -0700
make ci also run on windows, re-add css minification
commit 9a0f20012a8f5051aa2faac62f91dc4f2a38151c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 2 00:07:41 2023 -0700
windows patches
commit c8c108c7f702ca3710733d6d455ca2661e13e8d3
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 1 23:29:58 2023 -0700
change default strategy to be rebase
commit aaae7d46c21491397b1f723d5ae16cff4f258544
Merge: a70e846b cbae88fc
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 1 22:48:32 2023 -0700
Merge branch 'v4-alpha' of https://github.com/jackyzha0/quartz into v4-alpha
commit a70e846b0a14f3065bbf613221fee0e3b09c12ef
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 1 22:47:16 2023 -0700
flag to allow ofm replace in html embed
commit cbae88fc4e9b98764cfccca2e85f265c4b894573
Author: Adam Brangenberg <adambrangenberg@proton.me>
Date: Mon Jul 31 05:08:32 2023 +0100
Removing redundant properties (#356)
commit cc7950267089648e4329531105fe5f8ba011b1b4
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jul 25 23:37:24 2023 -0700
make layouts simpler to think about
commit 45f9087f03fde7e7d762e25a9f2966d1e6e907f3
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jul 25 22:27:59 2023 -0700
fix checkbox/tasklist styling
commit 1c1a56902371d20e35ad3849cc806a2272f8e8df
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jul 25 21:11:06 2023 -0700
fix formatting
commit cee2883c0889a65e2786d70eb81932f5ed017e59
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jul 25 21:10:37 2023 -0700
nested tag support and tag index page
commit c0278a8c65d74441a6237e0a90c08f8b7b263d95
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jul 24 21:54:47 2023 -0700
font loading options, optimize css
commit e82ba97a396e4e9d77486b48e6ee8b1dfd1c1b4c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jul 24 00:07:58 2023 -0700
actually add processed tag to frontmatter
commit 041a4ce7bc39c65483eaeeddc97e6946cb49f540
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jul 24 00:04:01 2023 -0700
fix watch-mode batching
commit 569ff1a801f92c0761b5ddc9dbff52833b193c94
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 23 21:53:34 2023 -0700
npm i on quartz update
commit 351b4ab13be6b1e43eb286ffac2646d0479ba678
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 23 21:41:09 2023 -0700
styling fixes for stacking order and overflow
commit 4811500b1b9c169aac82254d771677cd6dc2a86c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 23 18:20:43 2023 -0700
make component resources a proper emitter
commit 236ba56be17f53f701fcfc6ca81b867defa433bd
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 23 17:59:44 2023 -0700
version bump, update doc
commit 7c2bb4ee4c4ee4d6abc8f7f3757d40c039a1bcac
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 23 17:58:35 2023 -0700
bundleinfo flag, minify scripts
commit 8fd75ffbfda30edd5a134a1fbf9b81ac3cebb2ff
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 23 17:42:00 2023 -0700
support attachments folder
commit 55a1fb8c41b6a34cc5cdfc5ec2533ed1f642211d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 23 17:09:12 2023 -0700
format
commit 9e83af04a78d5988bd517bcc61c48998bbfa17ef
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 23 17:07:19 2023 -0700
refactor static and asset emission to be actual emitter plugins
commit 000eb4c3c0ce6451702202824b49f609a45ab6f6
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 23 15:37:06 2023 -0700
update feature list
commit 5599eb590e1b9163d41847153545764ed9b02ff6
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 23 14:02:57 2023 -0700
feat: process tags in content
commit ae2e3b463a91d94caa8bdf62e5c3a3d726b8b4e4
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 23 11:49:26 2023 -0700
improve error handling while serving
commit fd7c33c5372dd61283fc44f4dccbff0e71fcbf5b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 23 11:19:15 2023 -0700
style fixes for search bar and title on mobile
commit 76fdb3b4d8f2060cf742911d28c0654fe7280609
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 23 11:04:20 2023 -0700
fix styles
commit 27a5f7ef8ef0b52ade767138ebd1e202f8b66476
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 23 11:02:45 2023 -0700
various typography and styling fixes
commit ab228748abb85474a1c1f5f9410ad8e1167e2c23
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jul 22 17:42:13 2023 -0700
oops actually use npm run check
commit 76fa9bbe00eba4249b12ef7c86ccdac4faa6051f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jul 22 17:39:10 2023 -0700
run prettier on ci
commit 7db2eda76cf51fd631d385c12a7b411339406067
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jul 22 17:27:41 2023 -0700
run prettier
commit 2034b970b649b37347921842b5223a7274e34d89
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jul 22 17:26:03 2023 -0700
configure prettier
commit 8dd73704e6e95254d2addf51fede6329f90796b8
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jul 22 16:06:36 2023 -0700
hot content reload
commit b7966ff7fa2829ac9d128f1d560a2b98149514ac
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jul 20 21:51:55 2023 -0700
update features list
commit 01d7d8e55448abe0a929d8730c735bed5d929048
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jul 19 23:03:59 2023 -0700
fix tag pages to emit to tag/index.html to override content and folder pages
commit 83d47f7aaa247371ad8a51b8d5245afe8f4af620
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jul 19 22:00:44 2023 -0700
rename github action
commit 76c092dcf20959bc52fcb13b28cee50cd4217e40
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jul 19 21:59:48 2023 -0700
add custom.scss
commit 410fc9c8d37b0c4118c70678db5d2e55a842f486
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jul 19 21:59:39 2023 -0700
quartz update and quartz sync
commit 8e0ba45789a81ee28f6c67468f7fcf9ea45832db
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 16 10:39:35 2023 -0700
add link resolution prompt to quartz create
commit f82282367efd41192716fbb89e5a8756ff73bd5a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jul 15 23:33:06 2023 -0700
treat _index as index
commit a3e4c86a4cf18e31fe5b65d57ce120174c9f6aee
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jul 15 23:05:17 2023 -0700
fix ci, disable strict path type checks by default
commit 3ac6b42e16dca5a44ed3fec2c0314f1dbbc2322b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jul 15 23:02:12 2023 -0700
finish path refactoring, add sourcemap + better trace support
commit 906f91f8eed5e91a7afae95c7002a3e4553d6aae
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jul 13 00:19:35 2023 -0700
base path refactor, more docs
commit 08f8e3b4a4879dd7c91c16fbce80c4f2bc5e357f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 9 19:32:24 2023 -0700
docs + various polish
commit b90590b9f487cdd49f019375fa5a09aad2e8ec1f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jul 8 14:36:02 2023 -0700
polish
commit b3480bdc49120010da8d2805df02cbf84ca08bdc
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jul 6 19:18:18 2023 -0700
fix styling for bullet points
commit 9cbacca2d4062e2b2e512f761ab580218c623b33
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jul 6 18:45:38 2023 -0700
handle dates as tags
commit 05d1ca01c39e18fa08776d4800e201abf8779f3c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jul 6 18:32:48 2023 -0700
handle string tags
commit f7bf4038dc7fcf3adc09697797da1c68c932eadc
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jul 6 16:56:30 2023 -0700
fix path parsing
commit 465804a389f77807f68ca048cf9d7fac1314d8c5
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jul 5 00:16:06 2023 -0700
basic docs, remove publish, add quartz create
commit 92ca78709227c6117797c52eada7d471bb4ba96a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jul 4 18:26:11 2023 -0700
fix default callout state
commit fe2852ff258eabfab49af98619c9b5b9f41e004c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jul 4 18:08:36 2023 -0700
update package
commit 974b0da3086d21aabf5ef1a3eefa50675c0d4e95
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jul 4 18:02:59 2023 -0700
folder and tag descriptions, re-enable relative pathing
commit 2a17431460770b3375b455815f503781f7448c20
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jul 4 17:14:15 2023 -0700
fix popover zindex
commit 38cff2d670ecf7fd325aaaf776a4c250a72cc661
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jul 4 16:48:36 2023 -0700
more visual polish, adjust colours and spacing
commit ab9da02c60c962128820e6874e6f07c98bc3dda7
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jul 4 10:08:32 2023 -0700
fix indexing causing main thread freeze, various polish
commit e0ebee5aa9b3646de722f139f1d8d15591df538e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 2 13:08:29 2023 -0700
various polish
commit 4c904d88aba14d0d153bfac364630ad61832a73d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jul 1 13:35:27 2023 -0700
rss + sitemap
commit ba9f243728cab171f86b40b9d50db485af272a39
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jul 1 00:03:01 2023 -0700
tag and folder pages
commit 24348b24a94c5f9ca285642b751e6798b92eedd9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jun 19 22:50:25 2023 -0700
fix: parsing wikilinks that have codeblock anchors, scroll to anchor
commit fd5c8d17d3b3cd0a13b0a21a2b78d85010e02e12
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jun 19 20:37:45 2023 -0700
basic search implementation
commit c4cf0dcb022ff826433b63b8ff68830bb8503895
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jun 18 10:47:07 2023 -0700
local and global graph
commit 8bfee04c8c6948a88114d53769d4bb89b8ec7bf5
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jun 17 16:05:46 2023 -0700
popovers
commit cb89cce183215f6a8edcb6d166875e2982586002
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jun 17 14:36:06 2023 -0700
basic left,right layout
commit b5877824500a19c721c93eedc59704db94487a94
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jun 17 13:08:06 2023 -0700
collapsible callout
commit 6d5491fdcbccfad7af6c6dcc63ce2f67abd3850c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jun 17 12:07:40 2023 -0700
collapsible toc
commit 917d5791acd6361c691902b445bdc4f7129ba3fc
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Jun 16 19:41:59 2023 -0700
modern toc tweaks
commit 9d2024b11c7c24ec8112b5019504fc44b4e1a297
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jun 12 22:41:42 2023 -0700
taglist, mermaid
commit 2bfe90b7e64839d8ec6319fe93b76472b0285114
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jun 11 23:46:38 2023 -0700
add config to components
commit 352075ae81a3304a7bfa2512ef69b1cdacb26c12
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jun 11 23:26:43 2023 -0700
refactor plugins to be functions instead of classes
commit b8c011410d6bcd6837f4efd6a3948196a0f7aeea
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Jun 9 23:06:02 2023 -0700
toc
commit 3a29f4c86ee7ed13fb8683b2728a856581e32de7
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Jun 9 19:58:58 2023 -0700
add custom spa solution
commit 59109a8c1d505f516d50d6b7f88cfe070bc1ca84
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jun 7 22:38:45 2023 -0700
add flamethrower router
commit 317cce9314ad78d90714dc55aa82a2c3dfa75d1a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jun 7 22:27:32 2023 -0700
generic quartz component for layout
commit dde36fa5589a362b60b7b72eb7793a3f133e159c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jun 7 10:52:53 2023 -0700
update gh actions
commit 1cb4dadf13913009660685b6f2c163c939e2a51a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jun 6 21:19:00 2023 -0700
codeblock copy
commit 0813f127a30b376c5d5552a8cdb6e5cad5969c38
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jun 6 20:58:26 2023 -0700
fix darkmode script load
commit 4d3579ca9876d3ca6612589d116c3a300a60b446
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jun 6 19:48:37 2023 -0700
darkmode scripts
commit 89e0311a98732201651a6a6c1eea3e9656e28fb2
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jun 6 00:00:38 2023 -0700
embeds
commit 700036e84c805ab0a59f88b368006a28a97b76d1
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jun 5 22:14:17 2023 -0700
callouts
commit 1406ee0f05dc688e1b7635d3ce14e63d1c42a973
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jun 4 13:37:43 2023 -0400
update spinners
commit 9ad89997a533744695b380b315f1f70293bb30c4
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jun 4 12:35:45 2023 -0400
multi-core builds
commit 4bdc17d4a11f0ba517c6d9124d296458332c536b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jun 3 15:07:19 2023 -0400
inline scripts
commit fcd81353f88b613e5e93c089e10e530d08695b3f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jun 1 19:48:38 2023 -0400
heading linking
commit 04eeb2d10c2bb8cac595a879446c1dcbfac4d6a6
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jun 1 19:05:14 2023 -0400
syntax higlighting
commit 42d3a7de1711bbd40a2b6857e3bf7ff17685f5d9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jun 1 17:35:31 2023 -0400
scss support
commit c1c46ad67e58884389fb59c17d81845fe0fbcad0
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jun 1 12:33:20 2023 -0400
obsidian flavored markdown support
commit 3636c052eb054d93a8a3ddfb9fdd873d5fe83a5d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed May 31 17:41:44 2023 -0400
link processing
commit 21c007e2fcf73fe4ef04dd07db7116afed46047a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed May 31 17:01:23 2023 -0400
rendering, link resolution, asset copying
commit ad6ce0d73fbd015e00e59ec30bda3cc8de777832
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue May 30 08:02:20 2023 -0700
plugin integration round 2
commit a757521313fb2c623d4dfda95eb97d3189bfe253
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun May 28 17:44:08 2023 -0700
base setup
commit 7b1da7a8456b0404ad4ebcb8afd523a6618439ff
Author: BSD-Yassin <103321053+BSD-Yassin@users.noreply.github.com>
Date: Thu Apr 27 20:12:56 2023 +0200
i18n: Update fr.toml (#313)
commit e482fa10970fd6a0c1c0ec836db84ba4187bc8f7
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Apr 6 15:06:01 2023 -0700
fix: graph and tooltip sometimes not showing
commit ba7a968881083b9d3b3b6ecd65df076e76bcb164
Author: Mattia Ippoliti <Ippolitimattia@gmail.com>
Date: Sat Apr 1 22:50:08 2023 +0200
fix: padding for empty title callouts (#308)
commit db27557aa307921cf035b7f62d9d9f2b452b1018
Author: Md Jawad Noor Asif <jawad.asif.bd@gmail.com>
Date: Thu Mar 30 17:14:06 2023 +0600
fix: search highlight not showing because for trailing slash (#306)
commit b7c305e0024ca78c1d9f9d7a5107ffc124c56ab1
Author: Mike Walton <walton.myke@gmail.com>
Date: Wed Mar 22 22:56:20 2023 -0700
adding myself to the showcase (#301)
commit 74fe4d6813dfce9760464141410b683bd8964d45
Author: Daniel Lazaro <daniel@dlazaro.ca>
Date: Sat Mar 18 12:20:56 2023 -0400
docs: Update link to callouts documentation (#300)
commit d6c31595b320562313010ca68002942ac951a069
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Mar 16 10:33:01 2023 -0700
deps: bump hugo-obsidian
commit aa5ab03d4ad6e7cb4d9efd3f9c177ebde7e4c4af
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Mar 2 09:14:29 2023 -0800
docs: update to account for github changes
commit ecba6071b899d62492c3970924bbf24c2ba951f3
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Feb 25 13:04:15 2023 -0800
deps: bump hugo-obsidian
commit 983efab94c31bb19b532e120f2f70f45f788b7c8
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Feb 12 16:46:11 2023 -0800
fix: recent notes partial sorting
commit 10e41743e5df81195479aa2dd3ba4d5fb5b1ebf3
Author: Dev Uni <wlwhsvkdlxh@gmail.com>
Date: Wed Feb 8 01:38:20 2023 +0900
fix: Bad UI due to head.html (#284)
commit bde44fadf20a1f91a466653f9552ce8bd658e2f9
Author: Simon Späti <simu@sspaeti.com>
Date: Tue Feb 7 09:16:15 2023 +0100
feat: Adding Twitter and Social image preview including description (#207)
commit 6885651f7b4504446b456a2e61a85f1b787b3873
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Feb 6 12:58:34 2023 -0800
feat: max-width for large screens
commit 7df2bb6f5e681ce3329e4faf6ac6cbcda7a3f14e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Feb 5 12:01:49 2023 -0800
fix: fix duplicate link click tracking
commit 11959de11ce76f0f47284b946a577481c0ffaeaa
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Feb 5 11:34:39 2023 -0800
feat: add more plausible events
commit a73aca8ed9c16915928206bad6fa0ccf4e9b2b8b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Feb 5 10:39:58 2023 -0800
feat: switch from GA to Plausible for analytics
commit 93610e232b366c6f6cb9695d4755fa578dc28aa0
Author: Adam Brangenberg <adambrangenberg@proton.me>
Date: Wed Feb 1 21:34:18 2023 +0100
feat: Remove leading slash of folders in graph view (#282)
commit 712dab5c8cd8933d9cdb63d4c833940c461a09da
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jan 31 11:00:28 2023 -0800
docs: remove broken links from showcase
commit 77b3907b23b6d453dd7bfa04e4cef6f28d68ca54
Author: Olivér Falvai <ofalvai@gmail.com>
Date: Tue Jan 31 19:48:20 2023 +0100
docs: Clarify Obsidian settings (#280)
commit 8fc63586c428f1d9dcb1e084c0d9a48802b15582
Author: herrwinfried <ozgurarslln@icloud.com>
Date: Sun Jan 29 23:14:11 2023 +0300
feat: Added Turkish translation (#275)
commit 24c9777a5202a9fc9a86525955ba08ec3b2dc6ec
Author: Apoorv Khandelwal <mail@apoorvkh.com>
Date: Sat Jan 21 10:01:05 2023 -0800
feat: Embedding multimodal assets (#274)
commit 7a8811a184c8bd6206ee041d6486b7e456d5a84a
Author: Quadrubo <71718414+Quadrubo@users.noreply.github.com>
Date: Wed Jan 18 17:25:01 2023 +0100
added the liveReloadPort as an option for docker (#272)
commit eb2f6aeca891135389e58da0016c60af1363df61
Author: chaosarium <38693485+chaosarium@users.noreply.github.com>
Date: Mon Jan 9 17:14:11 2023 -0500
Fix callout behaviour inconsistent with Obsidian (closes #168) (#268)
commit b78008532f09dce26018ea7ea544f0e40d36756d
Author: Md Jawad Noor Asif <jawad.asif.bd@gmail.com>
Date: Tue Jan 10 04:12:52 2023 +0600
feat: Added Bangla translations (#266)
commit c5b103c85feafa96d5e5ecc572b043331d4a6bd4
Author: Md Jawad Noor Asif <jawad.asif.bd@gmail.com>
Date: Wed Jan 4 09:10:25 2023 +0600
fix: fix unicode broken tags (#261)
commit 614a6222a1638c159d2ac9c005be5b2ddec78dd2
Author: Adam Brangenberg <adambrangenberg@proton.me>
Date: Thu Dec 29 16:43:41 2022 +0100
refactor: General performance/style improvements (#262)
commit dc4373789617a58d517eac59c3e60fabb47eafd0
Author: chaosarium <38693485+chaosarium@users.noreply.github.com>
Date: Sat Dec 24 12:10:59 2022 -0500
fix edge cases link processing (#258)
Fixes https://github.com/jackyzha0/quartz/issues/176
commit ea37486309409048681496fb2449c1182d0f44eb
Author: toof <toof@toof.jp>
Date: Sun Dec 25 00:38:49 2022 +0900
fix: fix misspelling (#259)
commit c1b0eafce668c0c7498a5875c23c074eeb71e842
Author: chaosarium <38693485+chaosarium@users.noreply.github.com>
Date: Thu Dec 22 13:34:21 2022 -0500
feat: Added simplified Chinese translations (#257)
commit ce5df837f5f6ed57f9e9f85439ee9a40ebf234dc
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Dec 3 21:03:12 2022 -0800
feat: latex in search results
commit 4cd6f7efdf9161f1a1c7ad381d5bc4f2828eedb8
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Nov 30 18:00:12 2022 -0800
fix: text highlighting
commit 5a7936e23af000d7cefbf2dcb2ba4c16f1f993dc
Author: Apoorv Khandelwal <mail@apoorvkh.com>
Date: Wed Nov 30 17:41:05 2022 -0800
fix: Replacing "internal-link broken" with link to asset (#232)
commit 5fd707714faaaac5c3d39ec056ff88446fcb3cc2
Author: Jon Erling Hustadnes <jonerling.hustadnes@gmail.com>
Date: Sun Nov 27 19:55:43 2022 +0100
feat: Added Norwegian localization (#242)
commit 717a13a580fb82063d40525bcc63cd1d36f5994a
Author: Filippo Andrea Sighinolfi <83777862+Sighi-04@users.noreply.github.com>
Date: Sun Nov 27 19:55:13 2022 +0100
feat: Added italian localization in i18n/it.toml (#239)
commit 5f3d4306997e87437b4c9de97aa9eed355133965
Author: Brendan Ang <53790951+bbawj@users.noreply.github.com>
Date: Mon Nov 28 02:53:52 2022 +0800
feat: add support for mermaid diagrams (#244)
commit 66f3e249fe90cba366a99fe08f0898af27fe59e6
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Nov 23 08:34:19 2022 -0800
fix: only run docker publish on main repository
commit e374e3abd42c1719ad1fdc6bd9c641efb2ddf954
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Nov 21 23:36:27 2022 -0800
fix: jump to search for operand
commit f08a76a738235d1ad8e0b17f74988386dcfd86cd
Author: SafEight <43656822+SafEight@users.noreply.github.com>
Date: Mon Nov 21 21:05:46 2022 +0000
fix: External links ending in .md don't get trimmed (#236)
Co-authored-by: SAF <saf@saf.saf>
fixes https://github.com/jackyzha0/quartz/issues/229
commit d80f6946c854365336062f71f0c922fb42beea54
Author: Morgan Gallant <morgan@morgangallant.com>
Date: Tue Nov 22 01:54:45 2022 +0900
fix: Semantic Search: Use Operand Beta API (#235)
commit 120d104230b1c762a57eb41240e18aee6c289c08
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Nov 20 15:14:48 2022 -0800
update config for search
commit e9aa6ae9e7ec1792b11ebcb6cac606c47ae3cf7d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Nov 20 15:09:58 2022 -0800
feat: docker docs, semantic search alpha
commit c12af32a5ade0240630ff3b9fc11d877d6a16825
Author: Apoorv Khandelwal <apoorv.khand@gmail.com>
Date: Sun Nov 20 17:03:53 2022 -0500
feat: Dockerfile and automated container build (#230)
commit de2b6b9a1b95cb6af7eb421d9a4de054e7e41315
Author: SafEight <43656822+SafEight@users.noreply.github.com>
Date: Sat Nov 19 21:17:55 2022 +0000
feat: Replace == with <mark> (#234)
Co-authored-by: SAF <saf@saf.saf>
commit 7f9f58860dc98038798e362e52c5d39c750858cb
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 19 11:18:57 2022 -0800
feat: allow enableToc to override default no TOC on a per-page basis
commit 151b9851d6828ef28ed75a40e12be01e421b94d8
Author: jet457 <abhmul@gmail.com>
Date: Sat Nov 19 13:10:41 2022 -0600
docs: add Abhijeet's math-wiki to the showcase (#228)
commit d56a58044dcc619f6e26674316e7c38fc8ace8c4
Author: saucecoat <43880196+saucecoat@users.noreply.github.com>
Date: Sun Oct 30 06:08:44 2022 +0000
Added German translation (#223)
commit 689201bfbde5bd48b001bfa2b54db6a1d5a4aa81
Author: Conor <hzk@konor.fr>
Date: Wed Oct 26 18:12:35 2022 +0200
feat: Add French translation (#221)
commit 9b72edcd9cce10d6064e4e8b2f61b7db2966515d
Merge: 8704edcc 0a602eda
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Oct 25 13:14:13 2022 -0700
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit 8704edcca2f14c8662affa5a730083949f3f5749
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Oct 25 13:14:06 2022 -0700
deps: bump ubuntu version (closes #218)
commit 0a602eda1bc0c5446dbbc2917b3c3dcd1ad99c6b
Author: Evan Cater <evan.ecater@gmail.com>
Date: Mon Oct 24 12:13:35 2022 -0400
fix euler's identity (#220)
commit 72571a75884a10cd78205d79a5e475e17a4d9451
Author: Javier Zaleta Martínez <94091554+javierzaleta@users.noreply.github.com>
Date: Tue Oct 18 19:25:55 2022 -0500
feat: Add Spanish translation (#217)
commit 3409a49f156263aa36ca866e0d2b0b16645c2162
Author: Charles Chamberlain <charlesetc@users.noreply.github.com>
Date: Sun Oct 16 12:43:43 2022 -0400
fix: Apply monospace style to all meta in a popover (#216)
commit 666ffebe90c04dc7fe064a98232538826af70738
Author: Pavol Komlos <62595149+plundration@users.noreply.github.com>
Date: Wed Oct 12 17:21:28 2022 +0200
Decode the heading id from split link (#214)
commit 8ea1525df40751af2702a508c3ecf2edf2d76107
Author: Seth <37915796+iSaluki@users.noreply.github.com>
Date: Mon Oct 3 19:45:54 2022 +0100
Add SethMB Work (#203)
commit dd11d56dd986c82914ce529fb43c8e2beb78a094
Merge: cd7e2088 169ef442
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Sep 23 10:17:34 2022 -0700
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit cd7e2088d564023b073a458282e3a63b7a108c0b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Sep 23 10:17:28 2022 -0700
feat: hide TOC when no headers (closes #204)
commit 169ef442b9ae1a61af516edc5c90ff0299d91a25
Author: Simon Späti <simon@airbyte.io>
Date: Wed Sep 14 19:05:51 2022 +0200
Adding reference projects (#196)
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
commit 8e3042df4901885b051300c5ae2131bdcc613a57
Author: DongDong Chen <cdd2zju@gmail.com>
Date: Thu Sep 15 01:05:20 2022 +0800
add my showcase : oldwinterの数字花园 (#192)
commit 2145e92b004909070bd4a20d0f9fd1c0ddc70756
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Sep 12 11:08:07 2022 -0700
fix: make latex rendering size more simialr to obsidian
commit e6c7a4e1e2e3b0437b5dbbbeb7abc4e05622db16
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Sep 11 18:03:55 2022 -0700
fix: latex rendering bugs + patch for #195
commit ca84da5b31fa00ca6c729a9b500efeb28f90b41b
Author: Nikola Georgiev <42315052+nikolageorgiev2000@users.noreply.github.com>
Date: Mon Sep 12 01:05:14 2022 +0100
feat: Hide full path to file in Wikilinks by default (#195)
commit 0d1670adbaa63e4972bd560efd3c046eb03e48ca
Merge: 5c770f96 ce55eca7
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Aug 29 14:23:19 2022 -0400
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit 5c770f965a6af0d40926640d957e7841f71b908b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Aug 29 14:23:04 2022 -0400
Update Quartz version in documentation
commit ce55eca73bdfc6c043137dcbd7a2bda24cfce9af
Author: Andrii Yefremov <56955307+decatetsu@users.noreply.github.com>
Date: Mon Aug 29 21:15:18 2022 +0300
Add Ukrainian translation (#191)
commit 591c4813ec8ee700caa45253464290d315d57603
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 28 01:09:52 2022 -0400
deps: bump hugo-obsidian version
commit 83e7aec3c9dca4dba4b25605f5c88a7a3cecf386
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 24 00:45:08 2022 -0400
fix: tag list styling
commit 25ba1159ad5cabfe79c80a40ead158c389a68bef
Author: Youssif Shaaban Alsager <ysh-alsager@hotmail.com>
Date: Wed Aug 24 05:32:40 2022 +0200
feat: Add internationalization (i18n) support (#182)
commit e38eaa94d6d0d91486bd3b778102658a36ee254f
Author: Vincent Huang <vincenthuang75025@yahoo.com>
Date: Sat Aug 20 20:31:06 2022 -0500
Popover preview should show relevant heading (#180)
commit a78926ede5a951b2ba48e506c93d25060e240c0e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 11 11:42:16 2022 -0700
feat: link previews to page-list (closes #173)
commit 5c76d8dad9d993010c4e57c6de4e90911a3cd11a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Aug 5 11:08:52 2022 -0700
fix: make callout detection case-insensitive (closes #171)
commit 3dcc1f1106c1ad81cf6cd0a45f51249d719d694f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Aug 5 11:04:01 2022 -0700
feat: better graph scaling (closes #170)
commit ff770927fdbb13e07572b3993686686da4493cc9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 4 14:50:24 2022 -0700
style: _callouts.scss simplification (#169)
commit 7ffc907907b14722bf691d1cbd5f178c1c0943a6
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 3 23:46:55 2022 -0700
fix: CJK search (closes #163)
commit 6dd4c64a4c09eed71718fe67491dda95f286d345
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Aug 1 07:59:49 2022 -0700
fix: highlights being stripped in non-semantic search mode
commit 8fc6b8e28ebd08eb05aea80e602b9f279f660b5b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 31 18:21:17 2022 -0700
docs: update, re-added debounce
commit b10b23a47bb822bc3eee671d24fd954ec8d74a7d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 31 18:02:06 2022 -0700
docs: add documentation for Operand Search, remove debounce
commit 23380d0519365d09cb629a66fe2ccba1c56e91f2
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 31 16:55:25 2022 -0700
fix: title not being selected properly, bump hugo-obsidian for uri fix
commit dd047305afa0618d2a5cd11baec064a1c74ccb90
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 31 12:33:36 2022 -0700
deps: bump hugo-obsidian to fix bug of writing to non-existent directory during build
commit 54a8fd4a563bd3de815aaae2c9d9efd57e65be22
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 31 12:24:53 2022 -0700
deps: bump hugo-obsidian to properly copy linkmap
commit 5ef9aad501f17b57107a35508a093211ecf2dbd8
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 31 12:16:36 2022 -0700
feat: add support for semantic search using operand
commit 14b89105dc10eeb3b9b48abf16eda2b9420c64a0
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 31 10:54:23 2022 -0700
refactor: move search utils to util.js
commit 93d039fe7cf14246477844aa1b116585a260003d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 31 10:14:36 2022 -0700
deps: bump hugo-obsidian version
commit 234c707a93e1dbe438d0a45f1348cc6c39e2a265
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jul 30 18:46:19 2022 -0700
docs: improve scss structure and admonition styling, update docs
commit 728d8529ec1a782752abd9254fbc4cae11b8468a
Author: Emile Bangma <ewjbangma@hotmail.com>
Date: Sun Jul 31 02:29:26 2022 +0200
Support Admonition callouts (#166) (closes #88)
commit e142f37e8dea7f6f502026cc35ea02390be63556
Merge: d747b19e 1f3da4b8
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jul 19 09:03:26 2022 -0700
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit d747b19e6104def4b550d86b2ce6ce923773d8ad
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jul 19 09:03:19 2022 -0700
docs: copy edits
commit 1f3da4b8292a7c2ef7eafe9b3a00ef40eb30edac
Author: Pranav M <pranavm7@outlook.com>
Date: Mon Jul 18 11:45:36 2022 -0400
feat: edit the clipboard button to change border colour on success (#162)
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
commit e15e39155de54dc1624bab80eefbccd6a783cd0c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Jul 15 14:26:31 2022 -0700
fix: give precedence to date created over last modified if defined (#101)
commit dff5ae0d4debfdb2de226984e86a987d99d039ad
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jul 14 13:09:21 2022 -0700
style: improve header anchor styling
commit b2555ced61628008e9a1321921376c3f9fb53791
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jul 14 12:02:35 2022 -0700
feat: add description section to section/term/taxonomies, fix header margin
commit 7ccff2cf3d4f7a96be2cf890093798067951fd2e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jul 14 11:49:47 2022 -0700
fix: styling on page-list for smaller screens
commit e0b6606d500e69cc52715729f075808de90f376b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jul 14 10:38:34 2022 -0700
fix: make section-li scss more generic
commit d7a42a2fd7919ac37ff98be31edc34c3511d255f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jul 14 10:30:07 2022 -0700
feat: improve styling for lists, fix anchor offset
commit 422b6cc25bec38785e52f304261f7a7f392ec9e4
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jul 13 23:51:33 2022 -0700
feat: css typography improvements
commit 22c8981bb9a97743f02ab5d5feabda7ff5a6afc4
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jul 13 23:37:54 2022 -0700
feat: css refactor for easy font change
commit 8b2a82a96a2c7c3f40fd5648c756db3408947fdb
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jul 13 22:27:13 2022 -0700
fix: change / to use base url
commit 81af8c459bc9924b8c7137aee9385ed5f5deeb3c
Author: y1450 <107429941+y1450@users.noreply.github.com>
Date: Thu Jul 14 00:02:11 2022 +0200
fix: remove console log (#159)
commit ffe22689eb43f42afc2d6bcf9b8b190b19a7e5d1
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jul 13 15:01:50 2022 -0700
feat: use floating-ui for better popover positioning
commit c1b8fe1221e3367f0632ce43f602e811c0fd0284
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jul 13 14:32:32 2022 -0700
feat: restyle search icon
commit b7a619bbd73f9220f8c1fcbad203792c78343464
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jul 12 14:37:10 2022 -0700
fix: tabsize not being respected
commit 74993d19b72aee78e89b0b13b8f1d4a72fe5fe29
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jul 5 15:42:57 2022 -0700
docs + fix: broken partial and description of enableGitHubEdit
commit 25a4d3b6e17c2a5f6a935446ea97d06a323f71f6
Author: rphla <101242699+rphla@users.noreply.github.com>
Date: Wed Jul 6 06:39:29 2022 +0800
Add GitHub "edit" button (#157)
commit aaf31f419eb167dbb7582fb103be29f0bef95ba9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 3 11:50:13 2022 -0700
fix: copy code block logic for non code pages
commit f54df35767dcda9bc4853decff86d57323593685
Author: Geoffrey Garrett <g.h.garrett13@gmail.com>
Date: Sun Jul 3 20:42:35 2022 +0200
Copy to clipboard feature for code block (#152)
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
commit 015ed4cfa2db4636e03debcda0d4201f24346098
Author: Aiden Bai 白宇彤 <aiden.bai05@gmail.com>
Date: Sat Jul 2 19:40:18 2022 -0700
Fix `width: auto` for SPA routing (#156)
commit a8137edf247c46ef3a5af78c48bcd299a13c1a7d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jul 2 17:14:17 2022 -0700
fix: adjust weird colours for err highlighting
commit eda370334a3798070c2f79ec38021edb3b33a84f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Jul 1 11:27:50 2022 -0700
fix: image scaling for md-style links (closes #155)
commit d3e20b8b94c9229e94fccbe54c867efde6847c6e
Author: Geoffrey Garrett <g.h.garrett13@gmail.com>
Date: Fri Jul 1 20:03:52 2022 +0200
Added optional rendering of code block titles (#148)
commit 8d7a7b712f5a4ee49e3687de8fb00f76d7571368
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Jul 1 11:02:42 2022 -0700
fix: non-SPA fn defs (closes #154)
commit 0896814959e912cabaf9ec83bc0a3eb77d152842
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jun 29 17:35:29 2022 -0700
docs: remove test image from hosting
commit 8b2fba895aa804e895eaa02a622f318113a35663
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jun 29 17:34:05 2022 -0700
feat: image scaling (closes #131)
commit e884f4927f3e48285ca6689507f5e0f61072de04
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jun 29 17:17:53 2022 -0700
fix: anchor formatting (closes #141)
commit 2b0482ae4c5ef7d5c7cc5d33419c1fb440c0238a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jun 29 17:03:41 2022 -0700
docs: fix page weight
commit 8a100edeb81382dc838f600ee1b8dbd3e7560e37
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jun 29 16:57:36 2022 -0700
docs: polish and update
commit 200c60514207d7970968e31740797fad76f56ee7
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jun 29 16:16:06 2022 -0700
feat: enable raw html by default (fixes #143)
commit f2078ee621b7137c49b176156ff70ddb5359d5a8
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jun 29 16:12:33 2022 -0700
fix: prefix images with base url for non-root quartz
commit 916c51c19c3aa5406cf1d5062f10a0b858f487cc
Merge: 72941965 67a7ba37
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jun 28 23:21:25 2022 -0700
Merge pull request #150 from aidenybai/bump-million
commit 67a7ba37e899ca0555fa37e159af6d599cf468ee
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue Jun 28 21:43:28 2022 -0700
Bump million to 1.11.3
commit 72941965abc135f8df28b47a90a7b2965fb075bd
Merge: 34b03537 b732293f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jun 27 16:27:57 2022 -0700
Merge pull request #146 from geoffreygarrett/hugo
commit b732293f65999e9a1d3a40a5ddeccf53a385b1f3
Author: Geoffrey Garrett <g.h.garrett13@gmail.com>
Date: Tue Jun 28 01:21:22 2022 +0200
fix(head.html): Adds robustness to `config.yaml` favicon definitions
Initially assumed that `href` definitions should have `/...` as their
pattern, and `baseURL` would always end with `/`, however the omission
of `/` as the prefix of the former and suffix of the latter
simultaneously, would result in broken favicon paths. Final comment:
`..///...` is not breaking, which is worst case scenario with this fix.
commit 7070a1992a6c9462d50afcc7139f8f97e1dce2b8
Author: Geoffrey Garrett <g.h.garrett13@gmail.com>
Date: Tue Jun 28 01:15:33 2022 +0200
docs(config.md): Fixed multi-favicon examples and general favicon explanation throughout
commit 997937af5a6dc317da56ae294dce927ec5930a4b
Author: Geoffrey Garrett <g.h.garrett13@gmail.com>
Date: Tue Jun 28 00:45:48 2022 +0200
docs(config.md): Added short explainer on favicons
commit a334b45b17f0966214d44a5b775c273e1ba7874b
Author: Geoffrey Garrett <g.h.garrett13@gmail.com>
Date: Mon Jun 27 22:05:35 2022 +0200
docs(content/notes/config.md): Adds documentation for the new favicon support
commit 473ea2c66f9122cec2647c281ca47cc073ca5fd0
Author: Geoffrey Garrett <g.h.garrett13@gmail.com>
Date: Mon Jun 27 22:04:32 2022 +0200
feat(layouts/partials/head.html): Adds general favicon support with dict and string input format
commit 34b0353797a0d24c309139034918ad2060f504f5
Merge: dbd4fb75 52a185f7
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jun 7 08:43:52 2022 -0700
Merge pull request #140 from DhammaCharts/hugo
commit 52a185f73b18d8e5a564c2144401de750b0e025a
Author: DhammaCharts <100090806+DhammaCharts@users.noreply.github.com>
Date: Mon Jun 6 16:49:01 2022 +0100
change enableGlobalGraph to false
commit 69c74ca6b5854cbb3e7dd895dca0539f51f49720
Author: DhammaCharts <100090806+DhammaCharts@users.noreply.github.com>
Date: Mon Jun 6 16:48:16 2022 +0100
minor adjustment
commit ab809249c8f57c1980de2fa850eef66301619307
Author: DhammaCharts <100090806+DhammaCharts@users.noreply.github.com>
Date: Mon Jun 6 16:42:53 2022 +0100
Update layouts/partials/head.html
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
commit 84c75d05460dd2974ff04a43f6a770fc31deca63
Merge: a275123b dbd4fb75
Author: DhammaCharts <100090806+DhammaCharts@users.noreply.github.com>
Date: Mon Jun 6 12:56:47 2022 +0100
Merge branch 'hugo' into hugo
commit dbd4fb7595055551118e7dab59a11459bcdc3d9b
Merge: 84c6e1ef a1293f82
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Jun 3 10:59:18 2022 -0700
Merge pull request #139 from aidenybai/prerender-latex
commit a275123be2b1d528dbde23beb9880933c4e22c3e
Author: DhammaCharts <100090806+DhammaCharts@users.noreply.github.com>
Date: Thu Jun 2 08:35:28 2022 +0100
better font behaviour
commit c88f31c3645bb0002171bf21850c7ca6d217c73f
Author: DhammaCharts <100090806+DhammaCharts@users.noreply.github.com>
Date: Thu Jun 2 08:16:02 2022 +0100
change to object destructuring for drawGraph() arguments
commit d261655d96f9ed084a176ed113b0d11f1351c6de
Author: DhammaCharts <100090806+DhammaCharts@users.noreply.github.com>
Date: Thu Jun 2 07:49:09 2022 +0100
remove unnecessary ternary
commit c0800a874980ab0f24fc2e350d70792d9c7f2956
Author: DhammaCharts <100090806+DhammaCharts@users.noreply.github.com>
Date: Thu Jun 2 07:45:44 2022 +0100
change baseURL back to original
commit ac0dd50c048d68884b0ada42e3ab0476fb29ef65
Author: DhammaCharts <100090806+DhammaCharts@users.noreply.github.com>
Date: Wed Jun 1 21:30:40 2022 +0100
uncomment window.Million
commit e809896338b51e65ca862809e79884469476f2de
Author: DhammaCharts <100090806+DhammaCharts@users.noreply.github.com>
Date: Wed Jun 1 21:22:31 2022 +0100
increase scale
commit 19606ba63d15edd1e4a98bf1ce5cd510a24880e0
Author: DhammaCharts <100090806+DhammaCharts@users.noreply.github.com>
Date: Wed Jun 1 21:19:03 2022 +0100
add www.
commit 1e237ef677f3b958597460175269eed4b0638112
Author: DhammaCharts <100090806+DhammaCharts@users.noreply.github.com>
Date: Wed Jun 1 20:15:44 2022 +0100
change baseURL
commit 5a1fbc937470b4f43b318dd0fa9af01b4a47b188
Author: DhammaCharts <100090806+DhammaCharts@users.noreply.github.com>
Date: Wed Jun 1 13:49:27 2022 +0100
Improve graph display, options and ability to have a global graph on the home page, local graphs on subpage.
commit a1293f820a733978f1da8ebd13e676f46634f60d
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Sun May 29 20:40:44 2022 -0700
Prerender latex
commit 84c6e1efed856b2e03100e4cfd88f2d9cd44cb9c
Merge: 775a1b24 8673a7bc
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat May 28 23:27:54 2022 -0700
Merge pull request #138 from aidenybai/add-footer-config
commit 8673a7bc3d1061eb11381e8d7e85dd0d2e1fa64c
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Sat May 28 22:52:18 2022 -0700
Add option to toggle footer
commit 775a1b2490883e1eefa1c87f5477007365d694d6
Merge: cbc2bea4 006b74ec
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri May 27 19:21:05 2022 -0700
Merge pull request #137 from aidenybai/fix-non-spa-routing
commit 006b74ec6feed2d01099754c888bac4a9474a6b1
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Fri May 27 18:45:42 2022 -0700
Fix formatting
commit 8aba612a0013e84f0b3f9d60863c02ad1b0bfd6e
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Fri May 27 18:42:01 2022 -0700
Fix non-spa fallback
commit cbc2bea413ddf58c6316e49c45b5a5a55f4271e2
Merge: ba586adc ae240ff8
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri May 27 18:32:49 2022 -0700
Merge pull request #136 from aidenybai/custom-progress-bar-color
commit ae240ff82cd8de66c28b1608e72db6ed397cab13
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Fri May 27 18:31:36 2022 -0700
Remove redundant CSS rule
commit ba586adc76df6d75048a61e5dd529704496f6bda
Merge: 232bd2f0 159deabf
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri May 27 17:14:55 2022 -0700
Merge pull request #135 from aidenybai/bump-million
commit 159deabfe160c7570679269873f18776cb586437
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Fri May 27 16:14:17 2022 -0700
Bump to 1.9.6
commit 44984cdaf4dfca8c25e9b73066ee22c775ed6d2e
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Fri May 27 13:27:13 2022 -0700
Add support for progress bar
commit 683cb53cbd4d581a061b64a26da54285ef479e19
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Fri May 27 13:19:19 2022 -0700
Bump million to 1.9.5
commit 232bd2f016f7d57602fe39703407100f5d26f278
Merge: 0293c122 e0fd9570
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri May 27 11:01:20 2022 -0700
Merge pull request #134 from aidenybai/add-prefetching-within-graph
commit e0fd9570d746cb2aa270dbe64dae038fc02bdbac
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Fri May 27 09:49:28 2022 -0700
Bump million to 1.9.4
commit bc32bbeaed10eac3094fcaa899ca626dc8e56771
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Fri May 27 09:02:01 2022 -0700
Bump milliomn to 1.9.3
commit efb6c7845f0a2743dd07b81f1d03b03d058ede0d
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Fri May 27 08:40:00 2022 -0700
Add prefetch to graph
commit bd316d8249f096c4d5616d682f142f49d4ca914f
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Fri May 27 08:39:44 2022 -0700
Bump million to 1.9.2
commit 0293c122177bf8c595cda8b4dfb513d90b1e6b03
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon May 23 22:25:13 2022 -0700
feat: recent posts section/partial
commit 0439c163a03fc50487fbe1cbfc09dc38af7ed2f2
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri May 20 16:50:56 2022 -0400
fix: js not executing if spa disabled
commit 0b6711c2185abbde7e95125b672ee8b5d827cb8b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat May 14 16:47:50 2022 -0400
fix: tag boxes overlapping for content with many tags (closes #130)
commit ed9a8efd1ff4ee569fa4256e044151670abaea82
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu May 5 21:11:23 2022 -0400
fix inline link highlighting, safer latex render
commit e302f6c423136d1dbdfda48c2b241e62bb5654e7
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu May 5 20:35:32 2022 -0400
fix: more generic style to match bad nesting generated by popover interp
commit b21b27d1d3d68bfb4d285f39122a154fceefb9ab
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu May 5 20:30:55 2022 -0400
fix: clean wikilinks and render latex in popover
commit 364aee36fc8891c48ab2bd20c396ce321cd7a0a6
Merge: cea0f3eb 8b855b52
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu May 5 01:03:09 2022 -0400
fix: merge conf
commit cea0f3eb743b26db0d5297ab10e229617585fe0c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu May 5 00:58:50 2022 -0400
feat: contextual backlinks (closes #106)
commit 8b855b522ac472b666379743dafeace6ae37fb1a
Merge: b67a389b 7b3696b8
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed May 4 11:40:38 2022 -0400
Merge pull request #125 from aidenybai/fix-latex
commit 7b3696b877c33f8dc605be1f4f4a688fe0df5b84
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Wed May 4 08:39:25 2022 -0700
Remove pnpm debug log
commit b4ff12ca0b1b5179c20a1ea57f182caa703b0826
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Wed May 4 08:10:59 2022 -0700
Fix latex
commit b67a389beacfade21276461f3e275c07969664e5
Merge: a0997444 2b5c03c9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue May 3 13:59:02 2022 -0400
Merge pull request #124 from aidenybai/hugo
commit 2b5c03c97286e06e94e8a27634678e64473a2ec8
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 10:55:45 2022 -0700
Remove redundant URL construction
commit aaed5dc1f1849a54869743596a6133548e83392d
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 10:54:39 2022 -0700
Support /path root sites
commit 1a5d158fce648492c48644acfea039261ac1dffa
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 10:38:41 2022 -0700
Support active node with other data at end of url
commit a09974446d5be617267c2e6ad8c956e88ce83176
Merge: 03742621 9fc71603
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue May 3 13:21:32 2022 -0400
Merge pull request #123 from aidenybai/fix-popover
commit 9fc71603ba3fb58239e7c2647c92996076442900
Merge: d38f9bec 3789df80
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 10:18:41 2022 -0700
Merge
commit d38f9bec70c7e46d9e7662ba3925abc9cdd9370a
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 10:16:09 2022 -0700
Rename API and generalize router API
commit 771ebd8031819dcaf9e3d6744643677e30c14b64
Merge: e4cc625c 03742621
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 10:07:38 2022 -0700
Merge
commit e4cc625c33ecd2992dcf60f408417c3067b4fa2b
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 09:34:27 2022 -0700
Add future note about init function
commit 3789df80e437f9e31560e7eed14e33d80e5ff3a0
Merge: 32c79a56 03742621
Author: Aiden Bai 白宇彤 <aiden.bai05@gmail.com>
Date: Tue May 3 09:33:00 2022 -0700
Merge branch 'hugo' into fix-popover
commit 037426217c5bee94f7c619f62e63d71c1f31b5bb
Merge: 6e6dd4cb e646cdb0
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue May 3 12:29:26 2022 -0400
Merge pull request #122 from aidenybai/fix-active-graph-node
commit e646cdb0be7977f31fa1d619a5b9125875c73475
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 09:27:25 2022 -0700
Use explicit regex for trailing slash trim
commit 8d092a3a4aca9561f3ac852e01518f48c8ef68fe
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 09:22:51 2022 -0700
Remove unnecessary 'url' argument in graph.html
commit 32c79a561fa82dbf6537b96e83ab3da2a848b211
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 09:21:44 2022 -0700
Remove unnecessary 'url' argument in graph.html
commit 3c660dd9b5f9e1133bc8a1228287508504b7c132
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 09:20:01 2022 -0700
Remove unnecessary 'url' param in drawGraph
commit 4cca3c1f2df91ba7bb111346447279087e04069a
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 09:04:15 2022 -0700
Peg router version
commit 9d3bbd607687899d173e9087f2782d7460ebee82
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 08:53:18 2022 -0700
Fix active node on graph
commit 9c71f07355d8e98478e755875e53596f66c58fa9
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 08:48:35 2022 -0700
Enable config for testing
commit 77485b754dbb3d08e437b4157f3eafb5871624b9
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 08:47:42 2022 -0700
Fix popover
commit 6e6dd4cb0b396ae7ec4f273bccd254bc0f9885d5
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue May 3 10:57:20 2022 -0400
fix: trim trailing slash when calculating popover
commit 81fe2d24936ad4b783f41b260b4a4801bacb654b
Merge: 24d08d58 321e19dc
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue May 3 10:44:56 2022 -0400
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit 24d08d580d61363faab495a8a022248a7499dc26
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue May 3 10:43:22 2022 -0400
cfg: make SPA optional
commit 321e19dc415a316c71ba50e11ab0428bda92b0e6
Merge: 12d33619 97607c3c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue May 3 09:48:50 2022 -0400
Merge pull request #121 from benbohmer/patch-1
commit 12d33619a28a2e1a27fca109e3ba966bef65ebab
Merge: fc89ff26 4197ad46
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue May 3 09:47:48 2022 -0400
Merge pull request #120 from straightupjac/fix/github-info
commit 97607c3ca5ac837f7f6bc7a048b72a8271fbd570
Author: benbohmer <103453816+benbohmer@users.noreply.github.com>
Date: Tue May 3 09:10:45 2022 +0200
fix: keep / at end of URL to avoid redirects
Removed strings.TrimRight "/" in line 10 to keep the trailing slash at the end of URLs in regular links. This avoids having every single internal link being a 301 redirect.
commit 4197ad460afd96ab508d421939b92f80bbcdc5ca
Author: straightupjac <jdc.jaclyn@gmail.com>
Date: Tue May 3 01:51:15 2022 -0400
fix github info
commit fc89ff2680977dbaf1dabb91be01ad2b84903d8a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon May 2 13:00:41 2022 -0400
fix: broken semi and graph min-height
commit e9a33c04b5efcf01e9ba5a5bb1ec6619ea510122
Merge: 9ba0a4b3 b0e15e0c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon May 2 12:56:44 2022 -0400
fmt: remove semis for good
commit b0e15e0cbc445e12e3aabfe90ee2fc6bf2c33782
Merge: 66304da0 f1b85fb6
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon May 2 12:19:26 2022 -0400
Merge pull request #118 from aidenybai/add-router
commit 9ba0a4b34fa2e4993b8be021ee79d10d2674eba4
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon May 2 12:14:51 2022 -0400
fmt: remove semis :)
commit f1b85fb6d9612d9c9d5293e27e489576800ed219
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Mon May 2 09:10:40 2022 -0700
Fix clarification comment
commit 66304da027e35abff31f05e5a895ebca52976ccb
Merge: 416dc0b8 87144fca
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon May 2 12:06:57 2022 -0400
Merge pull request #119 from aidenybai/add-prettier
Add prettier config
commit 40d216759cb88e101aac06a7c02070336d2907ce
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Mon May 2 09:05:02 2022 -0700
Expand template
commit 5c602ab16f1f5e46bee5f44cec15860f785039ee
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Mon May 2 09:04:36 2022 -0700
Add clarification comments
commit 87144fca212b25093adbf743014d5c0d5b1d9c0d
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Mon May 2 08:57:25 2022 -0700
Use semi: false for prettier config
commit a9523dd39bf931e491750bb832dd13678e0e0c0d
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Sun May 1 22:08:14 2022 -0700
Add prettier config
commit bcb166c21cf4cf6d923608c12729373cf926eddb
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Sun May 1 22:06:33 2022 -0700
Add router
commit 416dc0b85cabfbb1dced0262b11256fa258f5ee9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Apr 30 13:13:30 2022 -0700
fix: add update for local hugo-obsidian on make update
commit b8a660e208333ea8ef4998c2f815411f12ce7067
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Apr 30 13:10:12 2022 -0700
feat: copyable header anchors (fixes #86)
commit ec86cca97bef277a3b3a84580c4164ce721a92a4
Merge: 87b5a7a2 f7027e7e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Apr 28 15:53:57 2022 -0700
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit 87b5a7a2519c70b6f6e678c6b86a3aefc4dd3218
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Apr 28 15:49:16 2022 -0700
feat: show graph titles on zoom (fixes #92)
commit c8d390dbc5a749af533f1ec05de2d5b6f37fa156
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Apr 28 13:45:29 2022 -0700
fix: always hide popover on mobile (fixes #104)
commit 3c7ece5405436c85282f156cf387b11d08cc2d87
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Apr 28 10:48:31 2022 -0700
fix: append trailing slash, fixes #111
commit f7027e7ecd26abe2a99ea1bb280808a4294bb4f2
Merge: f05ff5e6 0cfd93c5
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Apr 20 09:20:21 2022 -0700
Merge pull request #108 from exu3/patch-1
commit 0cfd93c57cdb31c0f0c48bddb407158ea2e0d7db
Author: Ella <git@ella.cx>
Date: Sun Apr 17 02:11:17 2022 -0700
Fix another typo
commit 3f8c47367830f9686b91c2c32158940de4c65466
Author: Ella <git@ella.cx>
Date: Sun Apr 17 01:33:16 2022 -0700
Fix typo: recomment -> recommend
commit f05ff5e62d5e2720a05cc3cde33f110686ab5268
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Apr 5 23:19:33 2022 -0700
fix: add dropshadow to popover, cleanup animation
commit 12ed9722d80e2ae517ac0face184339f07ae10fd
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Apr 5 22:43:11 2022 -0700
fix: popover selection wrongly including line breaks
commit 887d4d4f5ecb21e436f9a0c88cc690fc245c9747
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Apr 5 21:40:59 2022 -0700
deps: bump hugo -> v0.96.0
commit f9c7cdf928e8068532d2630336a7b08d5085548e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Apr 5 20:44:39 2022 -0700
fix: check for src before attempting to add popover
commit 2d55b6ac2e0580ee8f831e46065fc94db7c9d687
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Apr 5 18:07:40 2022 -0700
fix: missing whitespace chomp in link render hook
commit d5884aedb7dcd4e7711e53b7b462d1ac0bbc242e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Apr 5 14:14:19 2022 -0700
fix: wikilink patch not applying to transformed text like apostrophes
commit 66eaa444a41d1bd87bb1f28f9786412db6e7e274
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Apr 5 14:08:36 2022 -0700
fix: wikilink image relURL for images with spaces
commit 0ddc48a4529a06b48e10e0917c815d99220eebd3
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Apr 5 13:47:24 2022 -0700
fix: wikilink-like text in code fences #95, #97
commit cd19159c53a5f774275edc72bdc9bcb679b77242
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Apr 5 12:47:28 2022 -0700
feat: wikilink img support
commit 7808c66c4dd64ee1a4dc0255533a74f2996ab957
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Apr 5 09:41:13 2022 -0700
fix: align footer links
commit a7abc6ab96002d103e5e349f345d4108550256f5
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Apr 5 00:09:56 2022 -0700
docs: make update command and clarify update steps/potential danger
commit 9509a64354f40981ec0efccb7dda0c1c5da2c190
Merge: 53242b1e 3ce6944c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Apr 5 00:02:48 2022 -0700
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit 53242b1e5742d0730515b6e104ee626dfd5a14f2
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Apr 5 00:02:37 2022 -0700
add update target to Makefile
commit 3ce6944c189097cfde3415434cf33b56b3ceaf41
Merge: e2455050 3583265f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Apr 4 23:56:28 2022 -0700
Merge pull request #93 from meleu/patch-3
commit 3cec4fd950f69762daf7f44c46619cd31b1fc61e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Apr 4 23:30:28 2022 -0700
update screenshot
commit e245505082eedb720873e20331c36952ded67d09
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Apr 4 23:25:24 2022 -0700
feat: hide toc for short notes
commit fc4b9ded76c31ef940e281d9c1bfda850df23d5d
Merge: 3781b677 27c4761f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Apr 4 23:20:43 2022 -0700
Merge pull request #94 from meleu/patch-4
commit 27c4761fe01433b971ba6c2f67af3f003df56aed
Author: meleu <meleu@users.noreply.github.com>
Date: Mon Apr 4 20:15:40 2022 -0300
link to home goes to baseURL
commit 3583265f80afa081bf7a1fe996a9b3fe3c4e32e0
Author: meleu <meleu@users.noreply.github.com>
Date: Mon Apr 4 17:30:23 2022 -0300
docs: warn about possible lost of customization
commit 3781b67707ed9992a5aec843dc5ede7c2cb8a608
Merge: 1613511f 671fe053
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Apr 4 13:08:42 2022 -0700
Merge pull request #91 from meleu/patch-2
commit 671fe05312ded0e96ba16140290a375c51c975ba
Author: meleu <meleu@users.noreply.github.com>
Date: Mon Apr 4 17:07:43 2022 -0300
padding and border-radius matching bottom cards
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
commit 1613511f393fe9460937e7e88cc731d269bb6621
Merge: acab4887 575288ec
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Apr 4 09:45:05 2022 -0700
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit acab488784b52edfb176c5a455580abeb142324f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Apr 4 09:44:58 2022 -0700
re-add obsidian file
commit ff91dcd196d71356b021ec9d381767e7c38b0756
Merge: a287d112 575288ec
Author: meleu <meleu@users.noreply.github.com>
Date: Sun Apr 3 22:14:12 2022 -0300
Merge branch 'jackyzha0:hugo' into patch-2
commit a287d11246cc0c18a9bf4435bddffc9e163e64fd
Author: meleu <meleu.dev@gmail.com>
Date: Sun Apr 3 22:12:55 2022 -0300
add a collapsible ToC
commit 575288ece94d2093bda7467be1a25092bab9c366
Merge: 25b5ac43 1d9c0e4a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Apr 3 17:57:46 2022 -0700
Merge pull request #88 from meleu/patch-2
commit 25b5ac43ddbf9899e9a11b4ad8083a4c66bcf637
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Apr 3 17:43:37 2022 -0700
fix: favicon not showing on non-root domain #89
commit 1d9c0e4a44d4551b7d57678928600aed1428a243
Author: meleu <meleu.dev@gmail.com>
Date: Sun Apr 3 16:31:29 2022 -0300
use "enableToc: false"
commit e62d512d95bc52f3113cae5e3763665364fa7c72
Author: meleu <meleu.dev@gmail.com>
Date: Sun Apr 3 16:29:10 2022 -0300
disable ToC if frontmatter has "enableToc: false"
commit 8f15c5f8c1a0650d3c757f8cdf8ea12e4128ee97
Author: meleu <meleu@users.noreply.github.com>
Date: Sun Apr 3 16:22:32 2022 -0300
disable ToC if enableToc: false
commit efeaf9b49ccbc2e595277f6c558057e863e0ac8c
Merge: 91c4e3fb 22f11711
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Apr 3 11:44:39 2022 -0700
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit 91c4e3fb3a5d9e86e5fb513bb65da89d4b061b08
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Apr 3 11:42:42 2022 -0700
fix: multiline code block #87
commit 22f11711b2500b739e56ddb7d39660c4e8856be6
Merge: 16b177ce 5c3ef884
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Apr 3 08:17:13 2022 -0700
Merge pull request #85 from meleu/patch-1
Ah my git was being really weird with cases :')) thank you
commit 5c3ef884c78b190e5fc22e122d55af097d8bef3e
Author: meleu <meleu@users.noreply.github.com>
Date: Sun Apr 3 11:19:21 2022 -0300
duplicated file
commit 16b177ce6603db9bc242104c0ef5692e2832d3f7
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Apr 2 21:04:20 2022 -0700
README update
commit 14c6181d240e69f48f6a2548136613b2b0739720
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Apr 2 20:37:42 2022 -0700
bump hugo version v0.82 -> v0.92.2
commit e6e04c03c473175961e1d5f9c815c3671f237c8e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Apr 2 20:34:55 2022 -0700
fix latex misrendering
commit 146e975932a80634500720f88843041fdf62bfec
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Apr 2 20:21:16 2022 -0700
bump hugo obsidian, fix backlinks for subpathed quartz, update homepage
commit c117e38899a7e122fb4dee87f5d091e654e0939f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Apr 2 20:06:31 2022 -0700
feat: wikilinks implementation
commit 4fd983277e36e323675e2d77048fb3daaa016dc6
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Apr 2 17:38:39 2022 -0700
fix: cjk support + demo page
commit cc86136bcb4cc61219a8ee7573e792e6a6043dcd
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Apr 2 17:00:14 2022 -0700
feat: basic latex support
commit 8e083d4a93383214d5d020c925dc5d7b65cc04db
Merge: c51573ef 03b574b1
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Apr 2 14:53:05 2022 -0700
Merge pull request #83 from meleu/patch-2
commit 03b574b1606c836eda158c8fdfe0e251a1364fe8
Author: meleu <meleu.dev@gmail.com>
Date: Sat Apr 2 18:51:45 2022 -0300
cleanup
commit a469653f7575ae604ec3e979768f4ddfecf5e2b5
Author: meleu <meleu.dev@gmail.com>
Date: Sat Apr 2 18:50:58 2022 -0300
separate contact links semantically
commit c51573efa98de6b5b5e79fb60b49f31daca70527
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Apr 2 13:34:26 2022 -0700
feat: grey out broken links
commit 902d0f2a0fe84d383eb1b011aee636ccb9687f6f
Merge: 1ddd15af 9c5ecccf
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Apr 2 12:59:47 2022 -0700
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit 1ddd15afc6e69202080ffb91e8d82deb653a80b7
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Apr 2 12:59:38 2022 -0700
fix: non-unicode character in popover and search #67, #68
commit 16f8cd7100c7733b8ee29296fb0369ae24f899cd
Author: meleu <meleu@users.noreply.github.com>
Date: Sat Apr 2 13:37:12 2022 -0300
separate links with ​
commit 9c5ecccf25c35cd94bc6c7468d45e4c3e6a932bc
Merge: 3674df48 e3cd531c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Apr 1 14:17:35 2022 -0700
Merge pull request #82 from meleu/patch-1
commit e3cd531c537d4d82400275c1b018382a19041b4b
Author: meleu <meleu@users.noreply.github.com>
Date: Fri Apr 1 18:13:49 2022 -0300
fix custom.scss path
commit 3674df48b8eed55728780d05bc9b577e8aab0a3b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Apr 1 10:13:01 2022 -0700
fix pagination styling
commit 9e8c5587e433b3d1440803d7f995a2a8b55ba45e
Merge: 6605b13b 6edc9798
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Mar 31 23:16:00 2022 -0700
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit 6605b13b86c5e15bcaa2821937f97a59c4d2bbae
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Mar 31 23:15:54 2022 -0700
more troubleshooting, backlinks reference private page fix
commit 6edc979896f7548a8f9efe1c167fe9cd9d9e4c1c
Merge: 54a68e6e fc439224
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Mar 21 09:15:35 2022 -0700
Merge pull request #71 from siyangsun/patch-1
commit fc439224456010aad4802c9003c0dcebf1e38157
Author: Siyang <siyangsun2007@gmail.com>
Date: Sun Mar 20 22:37:05 2022 -0700
add to showcase and fix link to file
commit 54a68e6e5c020fa1e4eacf7942eb37974f332887
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Mar 18 10:53:39 2022 -0700
patch image
commit a6ab2f92ef8cb62d0399b1121cfabaa137906d51
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Mar 16 17:54:24 2022 -0700
add update
commit fda481fbb91fee6fc9e99c56c2cf80ff8835a946
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Mar 15 01:12:08 2022 -0700
fix: bump hugo-obsidian version to account for contentIndex paths on windows
commit 94e987dab5a50196bc2273addc6f908178abd0fb
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Mar 15 00:37:56 2022 -0700
feat: better titles for empty pages #61
commit e981c76ed4b2d220c0394bdcbf5a22a282561fd3
Merge: 651bfc5c f70128a3
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Mar 9 10:11:36 2022 -0800
Merge pull request #65 from claudio4/fix-text
commit f70128a3deacc26ceccb7d397ce6cd73acceb7f9
Author: Claudio Yanes <me@claudio4.com>
Date: Wed Mar 9 17:58:01 2022 +0000
Prevent overflow of long links and words
When a word (or any string withtout breakpoints (spaces, dashes....), making links the most common place where this becamoes an issue) is wider than its container, the text will simply overflow any container, including the viewport. This commit fixes this behaviour by making the word-drap strategy of the browser more aggresive.
commit 651bfc5cd284a259f429b50839c619dd1b94498a
Merge: 90727099 60794201
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Mar 7 10:45:07 2022 -0800
Merge pull request #62 from claudio4/hugo
commit 6079420178788ca74e574e35ad0212d1e6f41b6e
Merge: 978d5ca1 b96c60ed
Author: Claudio Yanes <me@claudio4.com>
Date: Mon Mar 7 18:28:14 2022 +0000
Merge branch 'jackyzha0-hugo' into hugo
commit b96c60edfc3429a2c478b2d1eb809fb9f20b4219
Merge: 978d5ca1 90727099
Author: Claudio Yanes <me@claudio4.com>
Date: Mon Mar 7 18:27:45 2022 +0000
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into jackyzha0-hugo
commit 978d5ca1aee23d6663e508aa24b389b6c9003d04
Author: Claudio Yanes <me@claudio4.com>
Date: Mon Mar 7 18:25:02 2022 +0000
Format JS
commit 907270992d7718f26d0a401ab700c6a0a414b440
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Mar 4 23:55:07 2022 -0800
fix: hide popover on mobile to prevent overflow
commit 6f9283e95b9f0b85c0d9dc7374ed75eff2a9149d
Author: Claudio Yanes <me@claudio4.com>
Date: Fri Mar 4 22:27:21 2022 +0000
Update makefile and docs
The artifacts produced by hugo-obsidian are now expected to be placed in
the assets/indices directory. This commit reflects this change in the
Makefile and in the docs.
commit 0fad5570d38b6a15e9a0cf2c1b1f24e6c2897551
Author: Claudio Yanes <me@claudio4.com>
Date: Fri Mar 4 04:14:42 2022 +0000
Add .gitkeep to assets/indices
commit dc9b421e21d02e9d247d1640cb518c416a5dcbab
Author: Claudio Yanes <me@claudio4.com>
Date: Fri Mar 4 04:12:43 2022 +0000
Remove unnecessary scrollbars
The margin property can escape the parent node and move it alongside
its child. This happens with singlePage div and the body, resulting in
scrollbars appearing as the body has the size of the viewport but
does not align with it. This phenomenon can be always observed
in the vertical axis and it can also be observed in the horizontal axis
when the viewport it’s not wide enough (mostly in mobile).
Using paddings prevents this “extra space” from scraping and displacing
the body.
Also, the value 100vw does not take into account the space taken by the
vertical scrollbar, thus making the body wider than the actual viewport,
producing a horizontal scrollbar.
commit 8779e72c77c2e454d444b86d3d5ebda9bfab46d7
Author: Claudio Yanes <me@claudio4.com>
Date: Fri Mar 4 03:34:45 2022 +0000
Add attribute property to scripts from jsdelivr
Adding the integrity attribute protects the website (by refusing to load
the script) against malicious modifications of the script
in the case of jsdelivr gets hacked
commit 7f6523337c96e631e80b18c888b2f237ea8a4482
Author: Claudio Yanes <me@claudio4.com>
Date: Fri Mar 4 03:24:32 2022 +0000
Move popover to the end of the page
The popover script doesn’t ever start in until the DOM has finished
Loading, so wait for the script to be downloaded and parsed before
Showing the content to the user makes no sense.
commit 7e0f2e44497adeade4aa5a99da897be29cb49016
Author: Claudio Yanes <me@claudio4.com>
Date: Fri Mar 4 02:25:30 2022 +0000
Fix fetchData
The fetchData function suffer from a race condition. If the function is
called before the promise finishes, it will result in another pair of
HTTP request. This does not only make the function useless but
Actually, it makes it harmful as the data might be redownloaded twice.
Now fetchData is not a function but rather the promise by itself.
Previous callers are expected to await the variable instead, this
should be not concern as awaiting a promise multiple time in
JavaScript is completely safe.
commit 1313bd9779c638f09b8901f8432d6bc39910bce3
Author: Claudio Yanes <me@claudio4.com>
Date: Fri Mar 4 02:07:51 2022 +0000
Move css and js to appropriate files
Having the CSS and JS in the html template produces pages larger
than necessary, as each page need to contain all the js/css.
Separating them in appropriate files allow the browser to just download
them once and use them for all the pages. This is even more effective
with an aggressive cache policy for the js and css, something that can
be done without fear thanks to the implemented cache-busting.
Also, having then in separate files allows us to use Hugo pipelines
for minimizing the code.
commit 5234fae080f1d3dca4f105438e3e0151f12ca61c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Feb 28 08:24:29 2022 -0800
fix backlinks not using baseurl
commit 0ee0855e1c1843a86a7bcd58aee520784c165dba
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Feb 28 07:30:59 2022 -0800
bump hugo-obsidian to support root
commit e06e341468202eebd928dee6a222ea118ef06331
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Feb 28 07:14:55 2022 -0800
fix: explicitly set root as current directory to fix ignore files
commit 73e526a7d50315b9177c2c11d12ebcde71b05fbd
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Feb 23 12:28:25 2022 -0500
add screenshot to readme
commit cdc4f1a8407449be7a514414795f27ff3b70bf37
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Feb 22 13:36:08 2022 -0500
fix: relink search button (move outside content load listener)
commit 714b4fcfa30ac1155747b9af90bc0e9519cb4bba
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Feb 20 21:40:10 2022 -0500
fix links being broken for pages with spaces
commit 9c04ca026676445849081d32efb8e840465994d5
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Feb 17 10:49:41 2022 -0500
rtl docs
commit 388a2bf78bb08c2b37e918c3a2e0acc72803e187
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Feb 17 10:44:39 2022 -0500
docs updates
commit f192f9a23df34d30e223e20ab5e8cb8210a7dfe9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Feb 15 23:03:02 2022 -0500
fix #54: root all image urls
commit 3b3e6ec3b2a56ee4d03b6f4c84af886821bfbe84
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Feb 15 22:54:20 2022 -0500
fix relative pathing for dynamic fetch
commit 8e85e274f6e5913694b67319f1beb7a2ec5b5bed
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Feb 15 19:42:45 2022 -0500
change output to static instead of data
commit fcd5d2807d2bab68c6776e031e85d65fe88a6f7a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Feb 15 19:39:14 2022 -0500
feat: dynamically fetch indices
commit 4587b133600ac59e38d1fccc7c7dba9f2c8f4af5
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Feb 15 17:12:08 2022 -0500
feat: add rtl support as part of #47
commit fb9ea8dcb85e6d2ac6c2a8cf5057f2fb00871b26
Merge: c520db48 10f9843b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Feb 15 16:52:49 2022 -0500
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit c520db488213f6d7844a382fe4f621a85decd60e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Feb 15 16:52:32 2022 -0500
fix: #50, change css load order
commit 10f9843bb6476134532d2002b2d29841755767e1
Merge: 0dc51ff3 31297b7e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Feb 15 14:51:29 2022 -0500
Merge pull request #51 from brandonkboswell/patch-1
commit 0dc51ff39c9c867dd85c37a01c366cd5f278f032
Merge: c35086c5 fa3bc3de
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Feb 15 14:50:34 2022 -0500
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit c35086c5104aedcaae1aba00892b0b4359a8e3cf
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Feb 15 14:50:25 2022 -0500
visibility fix
commit 31297b7e5adfda0def68ac848c4e81789c7278b2
Author: Brandon Boswell <brandonkboswell@gmail.com>
Date: Sat Feb 12 22:35:03 2022 -0500
Added to the Showcase
commit fa3bc3de9273d2cb437605d1b229d9a8d79331b5
Merge: a271fb9d 41c443db
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Feb 11 17:24:54 2022 -0500
Merge pull request #48 from earnestma/earne/configurable-page-toc
commit 41c443dbf079e65ed69f57d3b9a5ce58dc403e6d
Author: earnest ma <me@earne.link>
Date: Fri Feb 11 17:05:38 2022 -0500
Add disableToc parameter to not show TOC on a page
commit a271fb9d74f56b9e44817c7f61300db8d7e713cd
Merge: 9645f003 49cdca5d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jan 31 12:28:40 2022 -0800
Merge pull request #46 from adube/patch-1
commit 49cdca5dfc32e56788f30a9a7e8b5a6225013edb
Author: Alexandre Dubé <adube@mapgears.com>
Date: Mon Jan 31 15:18:26 2022 -0500
Specify Hugo requires extended Sass/SCSS version
Hugo needs to be installed with its "extended" Sass/SCSS version, otherwise this template does not work.
commit 9645f0031756faf815b1df5501d736795cbccc62
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jan 27 09:38:28 2022 -0800
link fixing
commit 57ebf4c21c8b4f7c2ef5126ded39a9facaa848ee
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jan 10 13:08:50 2022 -0800
underscore fix, fix relative path being weird for graph
commit 54e3e071d1c66dec3e04e8246c58fc2067877044
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jan 10 09:00:45 2022 -0800
fix popover regex
commit d46e22383133b944201bf5cdf85d44c48c891d07
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jan 10 08:51:00 2022 -0800
revert baseurl fix
commit 6f9a29c174f8657a90d7dda8d39e933c220fa717
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jan 10 08:49:29 2022 -0800
various path fixes
commit 532bc610254db096807453bf223acaa91634fd81
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jan 5 19:42:13 2022 -0500
set relativeUrls to true
commit 99aea4826068564f81e7f1b402e00e3e101a1476
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jan 4 11:39:22 2022 -0500
docs update
commit 4a3766db56bd08990b59f73e805008e03817556c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jan 3 16:37:24 2022 -0500
update featurelist
commit 4e639979f8175b0a639ba2e25bbd8fa550d728bf
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jan 3 15:36:58 2022 -0500
fix copy selection
commit e49a1ac9db92c6c967be404b5a3b9e3194a4ed99
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jan 3 13:22:04 2022 -0500
made link preview optional
commit 4a3c4fdef550547aa80947ebaff1bda44b943d4d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jan 3 13:18:31 2022 -0500
popover implementation
commit 2b432d7f0b35987ca6886e7041dce861b7e21abb
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jan 2 20:02:47 2022 -0500
fix flex gap
commit 7507fd29912015a72f990b23023ae2946c6cd51b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jan 2 19:49:41 2022 -0500
fix search styling
commit ca886e40752a8a30762708ea87d7228f737c0cd2
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Dec 28 14:28:08 2021 -0500
fix render link for apostrophe
commit 3722e600ee3bd75130e4e228ea45c2074649329c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Dec 27 20:52:30 2021 -0500
bump hugo-obsidian
commit efeaf0f4e47c3484ad84b7b9f755735ae0d810cd
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Dec 27 20:16:21 2021 -0500
add pagination to section, fix graph linking
commit 1a8cdaad24789d75d9453351aff19b434e1ea5c9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Dec 27 19:43:01 2021 -0500
remove console.log
commit e4caa0d1d7fb3bdca6dee07fee299a3acdf40043
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Dec 27 19:35:42 2021 -0500
add taxonomy and term lists
commit a45856d7884fedd3a3bd6b80489c206c75427112
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Dec 27 17:53:33 2021 -0500
fix last modified not working for capitalized pages
commit dbe9b338ccc5df23882ebfa26c9020fb863a4124
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Dec 27 17:44:39 2021 -0500
fix capitalization
commit 000fcdbf991dcc7f81b4cf1b6d7116590070ffd0
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Dec 27 17:43:27 2021 -0500
fix casing
commit 612c44d719f1b47b3c7b3fc5b6ffb48ccec33ded
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Dec 27 17:34:53 2021 -0500
modify obsidian
commit e1911a58fff3b96754b3b49837ac2d4dd4fcf5aa
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Dec 27 17:28:53 2021 -0500
enable last modified info
commit b4e26971165d49604014a1ed38aaa18b2c20fc23
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Dec 27 15:59:19 2021 -0500
content section
commit 094ab9d064b8e3d24f0cb656aaf4e0ea08365ac5
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Dec 27 13:15:10 2021 -0500
dedupe backlinks
commit 39592347cc742838a1d078031b897fe26a94adaf
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Dec 27 13:06:58 2021 -0500
add graph depth config
commit 165d33810d63f98953f4dd8c40f6d7741f967664
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Dec 26 21:13:21 2021 -0500
base tags
commit 6fbfa7170b17e062abd4c26e4b55a3934fb4ff1c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Dec 26 00:09:15 2021 -0500
various font and colour fixes
commit 43837f9e2ec4033722cb6957bd67c688afb3ae2c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Dec 25 23:45:30 2021 -0500
add makefile, fix link padding, test capitalization
commit 2ba01c831178facd35c62adcb22f3cc39ead6975
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Dec 24 15:51:37 2021 -0500
fix untitled #36
commit 114b7ca913b4250d594b711d7bfbe98ab23b562d
Merge: 5bd5642c 091be704
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Dec 24 09:48:41 2021 -0500
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit 5bd5642c99d6d144c9932533dfdc3484bdb72b71
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Dec 24 09:48:22 2021 -0500
add toLowerCase to id
commit 48d01810c4629341d9481632fc7f769dcffe0bd7
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Dec 23 14:40:59 2021 -0800
fix config setting, fix font size for h1 in article
commit 3a98c8b554c4b0e141f46a777c0fefe5ad4d4178
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Dec 23 14:32:47 2021 -0800
actually display site title
commit 69c86e407fa14ea94c75de82ca55ec9efaf6fb37
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Dec 23 14:21:39 2021 -0800
update subdomain docs
commit 56d2382c282431115b2964d440b790ce11f19e72
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Dec 23 14:05:27 2021 -0800
fix relative link styling, change graph and backlinks to refer to name rather than path
commit 091be7040b2f3da212a68a491bb8872543fddfea
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Dec 23 13:37:29 2021 -0800
Create CODE_OF_CONDUCT.md
commit 09b5522a488177129bfc7b35b700d7e76c64d5f8
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Dec 23 13:22:22 2021 -0800
Update issue templates
commit b9d7adafccc7a77f735afe11c80e0e8db534a31d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Dec 23 13:18:03 2021 -0800
Create FUNDING.yml
commit afeb18212d62663b7bbec5a08c05851bd584acd3
Merge: c64322ad bc909559
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Dec 2 20:06:18 2021 -0800
Merge pull request #28 from juaoose/overflow
commit bc90955959d818797e84c944247736e871faee3f
Author: Juaoose <jjrg1994@gmail.com>
Date: Thu Dec 2 22:58:34 2021 -0500
remove horizontal scrollbar
commit c64322ad3f1b72f83e675a53060b005d57704901
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 20 22:55:53 2021 -0800
remove bad wikilink
commit 48eb9ebc5fdba0845c6295e8abb6f574ec75171d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 20 22:53:26 2021 -0800
better search, fix spacing support, bump hugo-obsidian
commit 82ba843e42198d2ef2829eb6e668377bc9ebe4be
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Nov 15 15:54:18 2021 -0800
search styling
commit 8ca31df3f22e2678cf201105c1cb2925aca3c7d3
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Oct 31 09:59:38 2021 -0700
search patch
commit df23b99951fd7cb3bdf839639bce58b3e98c2d26
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Oct 30 23:27:33 2021 -0700
more search improvements
commit 6005a2e0a0667e9b78bfd419d3e8590a7fcc25f8
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Oct 27 20:10:04 2021 -0700
css fixes
commit de940d6a4b8a51f308b4544d21941bdb9a99aa66
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Oct 26 17:06:00 2021 -0700
update graph redir
commit 806d11f874119a1207332850e3263d87334a573d
Merge: 03bb3a3b 1fc2da4f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Oct 26 17:03:07 2021 -0700
Merge pull request #23 from bur3ku/hugo
commit 1fc2da4fe293f47ec47a7b5d33fa94fa3a06bb3b
Merge: 9292de63 24776624
Author: Blake Allen <blakesnake100@gmail.com>
Date: Tue Oct 26 16:58:37 2021 -0700
Merge branch 'hugo' of https://github.com/bur3ku/quartz into hugo
commit 9292de63336da42651c646253ef6000621d5328b
Author: Blake Allen <blakesnake100@gmail.com>
Date: Tue Oct 26 16:58:08 2021 -0700
remove unnecessary regex, use encodeuri for label instead of replace
commit 24776624047bea380c51dbb503cdf335d37b83b0
Merge: a14d06aa 03bb3a3b
Author: Blake Allen <blake.edward.allen@gmail.com>
Date: Tue Oct 26 12:46:03 2021 -0700
Merge branch 'hugo' into hugo
commit a14d06aa3d37396531dbfe09bb3b18b7eb9b96ad
Author: Blake Allen <blakesnake100@gmail.com>
Date: Tue Oct 26 12:44:25 2021 -0700
fix conflict fix
commit e0535dbe3219e297945284ca2af9862bd457a893
Author: Blake Allen <blakesnake100@gmail.com>
Date: Tue Oct 26 12:43:55 2021 -0700
fix conflict
commit 8eca1e60f78f40d6b598aa397bb315adfc53d9ad
Author: Blake Allen <blakesnake100@gmail.com>
Date: Tue Oct 26 12:36:20 2021 -0700
change %20 in node labels to whitespace, change %20 in node hrefs to hyphen
commit 03bb3a3bae297b51ffabb0d428f2c555771033f9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Oct 25 15:06:29 2021 -0700
normalize search styling
commit f7b89db8ee85e54a438db2e2cac3c55e805281c9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Oct 25 15:00:55 2021 -0700
search fix
commit 1835b97a7a2faf23809bb39d0bec7a2b77b3b81c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Oct 24 23:45:55 2021 -0700
better homepage
commit f56642f13cb5bffb8c05b239c6a7b90e1b6453e5
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Oct 24 23:32:55 2021 -0700
forgot string lol
commit 22a9c0ddfcb38a15d4340f532faca7733349702b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Oct 24 23:31:09 2021 -0700
docs updates, add search to main page, fix redir bug
commit c1c061fbea8f6cdc6aec4992d21d2df73dc6ba4e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Oct 24 23:17:20 2021 -0700
bump docs
commit 6fd19069deb06988b3d34482a151a79a53b589d0
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Oct 24 23:17:13 2021 -0700
search improvements
commit 299533a4f47d2379ddbc209bcd6923a70a81e65d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Oct 24 23:17:00 2021 -0700
bump hugo-obsidian version
commit e1366ecb6173b7c5e799c46e3ed8acbb50aaf447
Author: Blake Allen <blakesnake100@gmail.com>
Date: Fri Oct 22 18:56:26 2021 -0700
fix accidental code
commit 776ef084c9c98163f96cce62621cb8b0cf59bbdd
Author: Blake Allen <blakesnake100@gmail.com>
Date: Fri Oct 22 18:32:57 2021 -0700
fix last commit
commit fc00ad5bffcd5a1b89a4c1cb19b12d77238cc4c2
Author: Blake Allen <blakesnake100@gmail.com>
Date: Fri Oct 22 14:04:09 2021 -0700
fix for notes with spaces not linking properly
commit 228f96e74dd0caae6514a230418812103527d439
Merge: ae2f7efd 071984a1
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 31 18:32:14 2021 -0400
Merge pull request #14 from juaoose/hugo
fix product typo in external hosting section
commit 071984a12d1c7887d0ef41b206e01bc5afefb95d
Author: Juan José Rodríguez <juaoose@users.noreply.github.com>
Date: Tue Aug 31 16:40:31 2021 -0500
fix product typo in external hosting section
commit ae2f7efde0eb997ab2f7be1cf1513af7f99df599
Author: jackyzha0 <j.zhao2k19@gmail.com>
Date: Sat Aug 28 20:58:14 2021 -0400
update showcase
commit cb38667c1df7d752a1a9ef45505a7e106ff03ef8
Merge: 1c851271 27c33f83
Author: jackyzha0 <j.zhao2k19@gmail.com>
Date: Fri Aug 27 14:08:18 2021 -0400
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit 27c33f8334f6ac4a67c2a12b8eed219e6d8aeb2b
Merge: 8850976d f9920f6d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Aug 13 17:45:32 2021 -0400
Merge pull request #9 from brechtcs/template
Execute darkmode script before first render
commit f9920f6d736754372075c8f1014ab9440e333317
Author: Brecht Savelkoul <brecht.savelkoul@alumni.lse.ac.uk>
Date: Fri Aug 13 22:46:00 2021 +0200
Execute darkmode script before first render
commit 8850976d8dbb9a67d0224ed1ea30bd90fdbf4faa
Merge: 9b427faa bb6a1e8c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 12 23:49:05 2021 -0400
Merge pull request #8 from SlRvb/patch-1
Add SlRvb Site to Showcase
commit bb6a1e8c349075f40ac96be25509951ad5dce715
Author: SlRvb <54087190+SlRvb@users.noreply.github.com>
Date: Thu Aug 12 20:46:23 2021 -0700
Add SlRvb Site to Showcase
2023-11-24 18:08:37 +00:00
|
|
|
margin-bottom: 30px;
|
2023-07-04 23:48:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&:after {
|
|
|
|
pointer-events: none;
|
2023-07-23 00:27:41 +00:00
|
|
|
content: "";
|
2023-07-04 23:48:36 +00:00
|
|
|
width: 100%;
|
2023-07-23 00:27:41 +00:00
|
|
|
height: 50px;
|
2023-07-04 23:48:36 +00:00
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
bottom: 0;
|
2023-07-10 02:32:24 +00:00
|
|
|
opacity: 1;
|
|
|
|
transition: opacity 0.3s ease;
|
2023-07-04 23:48:36 +00:00
|
|
|
background: linear-gradient(transparent 0px, var(--light));
|
|
|
|
}
|
|
|
|
}
|
Squashed commit of the following:
commit 76f2664277e07a7d1b011fac236840c6e8e69fdd
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Nov 13 22:57:05 2023 -0800
versioning: bump to v4.1.1
commit 74777118a7fd19e4a296706c2a4b5fdca546c4fa
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Nov 13 22:51:40 2023 -0800
feat: header and full-page transcludes (closes #557)
commit 8223465bda1e7b6085a9752ead806be85ff58b57
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Nov 12 14:33:19 2023 -0800
fix: make :has img selector direct
commit cf6ab9e9333b5f76cb9e06f6687f2b4f8fbe91bd
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Nov 12 14:27:53 2023 -0800
feat: option to specify npx quartz sync message (closes #583)
commit 74c63e448e28d9766f7ec631aac2645384b0975f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 11 21:13:10 2023 -0800
fix(style): dont internal-link highlight when image (closes #581)
commit 43d638a6de5a8a11c1a719c596b07ea957c7329a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 11 21:06:37 2023 -0800
perf: compute mapping of folder name to file data for faster breadcrumbs
commit d1551872ffeb08c34f59dc2042b43562c499b620
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 11 20:46:57 2023 -0800
fix: check if popover exists after fetching and before inserting
commit 275bea3051a6f2a7da65fef6dccc7cc52a0a15e3
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 11 20:46:29 2023 -0800
style + cfg: resolve breadcrumb titles by default and change arrow character
commit bc02791734aa969ff388c5f7068e402bd0e3862a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 11 20:27:51 2023 -0800
fix: .date.getTime() based sort
commit bf603c49c2edaa5fcbe42479421a336dcacf92b9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 11 12:08:54 2023 -0800
fix: sort rss feed by date
commit f67356c3d2d609a8a6b674ac650fc41d6dfb4cc7
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 11 12:02:34 2023 -0800
lint: format
commit 5d666d1860be721c573ebd24cb82d210a8567bbf
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 11 11:59:05 2023 -0800
fix: normalize relative urls (closes #569)
commit 22b7cf135e8b031550553947c48aa0dc00b3abbd
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 11 11:41:44 2023 -0800
types: cast in jsx.tsx to avoid @ts-ignore
commit 50a87d0d8673dbce6ebafef83f71f197df9bc196
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 11 11:39:56 2023 -0800
style: scrollable tables
commit 134b6ed582d6ce9d8fb8f1e58d2bae89c07c2d5d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 11 10:11:31 2023 -0800
fix: anchors links shouldnt cause reload (closes #574)
commit 99e8f5944fdd83110fbac4c9edc37cdcaf2c25f7
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 11 09:56:30 2023 -0800
fix: trailing slash aliases (closes #577)
commit e9f4e28a2d3e0b529586ddb5a50680a6e66412f3
Author: Yes365 <ninfovores365@gmail.com>
Date: Fri Nov 10 11:44:16 2023 +0800
fix: adapt vercel cleanurls (#487)
Co-authored-by: Harrison <Harrison@fanruan.com>
commit 2a6b9a9ea01e8e6a80fe51d01dc865595b67a612
Author: Niklas Schröder <33390735+lnschroeder@users.noreply.github.com>
Date: Tue Nov 7 18:16:48 2023 +0100
docs: fix property name for ToC toggle (#573)
commit e806c30fa1a7ab941969da01c05ac4adeeeeeb9e
Author: Mau Camargo <52770775+camargomau@users.noreply.github.com>
Date: Sun Nov 5 13:30:10 2023 -0600
docs: Add Mau Camargo's Notkesto to showcase (#570)
commit aac7b7e97d32580f6a9bd974b8a9068e5218ab9c
Author: Anson Yu <ansonyu24@gmail.com>
Date: Sat Nov 4 17:20:16 2023 -0400
docs: Update making plugins.md (#567)
:)
commit 101e9946bddd053a42d269e19e35feae46fe4305
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 4 12:11:42 2023 -0700
feat: add collapseByDefault option to TableOfContents (closes #566)
commit a62a97c7abcabea4509760e5af957eed66fa0755
Author: Emil Rofors <emirof@gmail.com>
Date: Fri Nov 3 16:40:43 2023 -0700
docs: add GitLab pages CI (#549)
* add .gitlab-ci.yml
* move GitLab CI to hosting.md
* remove extra folder name
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* remove test from gitlab instructions
* run prettier
---------
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
commit 923b72fb67cf3ee9842df630feaed72644470074
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Nov 1 10:03:45 2023 -0700
feat: auto-tag releases (closes #560)
commit 05a1c34c6f6973eebcbcc50f50b64c2a0d62e8fa
Author: Florence <59734957+Pydes-boop@users.noreply.github.com>
Date: Wed Nov 1 17:57:32 2023 +0100
docs: remove dead link (#561)
commit 06ccb89cd7d5a3cade1eb5c2155b9b06e5395b0b
Author: Blue Rose <134471273+bluerosegarden@users.noreply.github.com>
Date: Tue Oct 31 15:53:49 2023 -0500
docs: clarifications about globs (#559)
* Add note about fast-glob
* Add warning about non-markdown files
Also added a glob pattern to filter out all non-markdown files outside of a specified folder.
* run npm format
---------
Co-authored-by: wych <wychwitchcraft@gmail.com>
commit 01fc8e46409ee0fb7311f212726113d35aced82d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Oct 25 09:40:43 2023 -0700
fix: disable semi-broken flexsearch cache
commit 7c01e8dde06abb1a80118b5eddce3e238830ede0
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Oct 22 09:54:12 2023 -0700
feat: openLinksInNewTab option for link transformer
commit b7ae7a99dbd40ffc852642202031b29e98304c1f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Oct 21 21:12:11 2023 -0700
fix: styling for nested popover tag in page list
commit 60b3bc34cb07b5bec87cbd667ea9f804ff14cf3c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Oct 21 21:05:46 2023 -0700
fix: catch html to jsx errors (closes #547)
commit dc834015d02adcc7edb119fb5224a2a86c614142
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Oct 21 20:27:49 2023 -0700
fix(style): tag float orientation for long tags on page listing
commit 1e357ef5ac85ab55ad19f832513f5ca7a7e54a52
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Oct 21 20:09:49 2023 -0700
fix(style): prioritize base and custom scss over component css
commit 54e722a55d58f4bab86184ffc970159628fa6967
Author: freenandes <42041153+freenandes@users.noreply.github.com>
Date: Wed Oct 18 03:43:41 2023 +0100
docs: Update showcase.md (#540)
changed URL
commit 86d16b12a224d125ba469f91e885eedf97a9dfe8
Author: Thomas <65691606+NotTacoz@users.noreply.github.com>
Date: Wed Oct 18 10:43:20 2023 +0800
docs(explorer): Fixed small typo with extra } in explorer.md (#541)
commit ed971800c0a683f7096922fee0a6901250e239ae
Author: freenandes <42041153+freenandes@users.noreply.github.com>
Date: Tue Oct 17 16:58:28 2023 +0100
Update showcase.md (#539)
commit af9ddadc4de513f2bbaf75f70079970215ed6406
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Oct 14 13:45:56 2023 -0700
fix(css): import base from custom instead of the other way around (#536)
commit da0a062c05db18d8c1521661ac0ab735abff3c3f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Oct 8 09:59:18 2023 -0700
feat: docker support for v4 (closes #530)
commit f66d2c23aca2944abcb1a6e3d83977a9b2edf37a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Oct 8 09:15:06 2023 -0700
fix: ctrl+click with spa enabled
commit 3268d45a20fbead24f3a111064364574408aa926
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Oct 5 13:48:52 2023 -0700
css: make article relative
commit afa163f2fe9c52d4b3bf1a2e4d48887916b67c24
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Oct 5 13:30:06 2023 -0700
style: styling for codeblocks without langs (#527)
commit cec4877adb7e89f4d4e0a442e82655e0d35dbe16
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Thu Oct 5 18:19:56 2023 +0200
fix(breadcrumbs): problem with folder whitespace (#522)
* fix(breadcrumbs): problem with folder whitespace
use slugs for folder hrefs so folder paths get resolved properly
* feat: only use `slug` for constructing crumbs
* fix: remove capitalization
commit cf0c090e3c5af86097e2460b00adc52ef8555e9d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Oct 4 09:23:56 2023 -0700
specify minimum npm version
commit c8f5dbbad3a85749d8a74f5e3e3b222fe547d5d6
Author: Luca Salvarani <lucasalvarani99@gmail.com>
Date: Mon Oct 2 02:20:55 2023 +0200
fix: Fix `Backlinks` not applying the display class (#519)
* fix: Fix `Backlinks` not applying the display class
Fix #518
* fix: Apply `displayClass` to all layout components
* refactor: Use same style
* fix: Remove `undefined` class using coalescing operator
commit ab5efac75fb0f20afe74bef33a2cf7e9ba0ba40f
Author: bfahrenfort <59982409+bfahrenfort@users.noreply.github.com>
Date: Sun Oct 1 11:47:22 2023 -0500
Fix: RSS title escaping (#521)
* Fix title escaping
* npm run format
commit 2f99339dcf93ef50b766263297785a32d9c35250
Author: Hrishikesh Barman <geekodour@users.noreply.github.com>
Date: Sat Sep 30 00:05:26 2023 +0530
feat: add transformations for latex in oxhugofm (#510)
ox-hugo currently supports the following syntax for latex equations:
- https://orgmode.org/manual/LaTeX-fragments.html
- https://ox-hugo.scripter.co/doc/equations
This syntax is supported by mathjax as is mentioned in the ox-hugo documentation.
But quartz uses remark-math which has some issues with the \( \) syntax.
See https://github.com/remarkjs/remark-math/issues/39
This change adds few more transformations to the OxHugoFlavouredMarkdown
plugin, which makes a best effort conversion of this syntax into what
the Quartz Latex transformer plugin supports.
With these changes, the generated files show latex formatting with
default quartz configuration.
Sidenote on `\_` escape by ox-hugo:
ox-hugo escapes, _ using \_, we match against it after we transform
equations into what quartz supports($$ and $).
This could be achieved using lookaround like regex as follows
```js
(?<=(\$|\$\$)[\s\S]*) -> Positive lookbehind for $ or $$
\\_ -> Matches \_
(?=[\s\S]*(?:\1)) Positive lookahead for $ or $$ if matched
const escapedUnderscoreRegex = new RegExp(/(?<=(\$|\$\$)[\s\S]*)\\_(?=[\s\S]*(?:\1))/, "g")
````
But since lookahead/behind can slow things down on large files, we just
look up all equations with $ and $$ delimiters and then try replacing \_
commit 5232d09af520e12bc421cf19ae5d231a7e36cd4d
Author: ArtfulAzeria <146041757+ArtfulAzeria@users.noreply.github.com>
Date: Fri Sep 29 20:17:48 2023 +0200
feat: Better and more responsive tag behavior (#515)
* fix(explorer): default sortFn implementation (#511)
* fix: use `numeric` + `base` for localeCompare
* docs(explorer): update default sortFn
* fix: better and more responsive tag behavior
* tags css moved to TagList.tsx
* used npm run format
* merged tag declarations
---------
Co-authored-by: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
commit 0138085c16856d20d1d2cad5670f1f61c8e500d1
Author: Catchears <57631841+Catchears@users.noreply.github.com>
Date: Fri Sep 29 17:19:10 2023 +0200
docs: fix typo in breadcrumbs documentation (#513)
commit 0b61f6fbfd20556102ce23444ae7eb9348472952
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Fri Sep 29 10:26:15 2023 +0200
feat: implement breadcrumb component (#508)
* feat: implement breadcrumbs
* style: fix styling, move breadcrumbs to top
* refactor: move `capitalize to `lang.ts``
* refactor: clean breadcrumb generation
* feat: add options to breadcrumbs
* feat: implement `resolveFrontmatterTitle`
* feat: add `hideOnRoot` option
* feat(consistency): capitalize every crumb
* style: add `flex-wrap` to parent container
* refactor: clean `Breadcrumbs.tsx`
* feat(accessibility): use `nav`, add aria label
* style: improve look in popovers by adding margin
* docs: write docs for breadcrumb component
* refactor: collapse `if` condition for hideOnRoot
* chore: add todo for perf optimization
* docs: update introduction
commit d4c122646ccd6fc989b4436e16b2dffdc931dee6
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Thu Sep 28 17:39:44 2023 +0200
fix(explorer): default sortFn implementation (#511)
* fix: use `numeric` + `base` for localeCompare
* docs(explorer): update default sortFn
commit d22c3c107a9c6422ef251bd1076ddd9c4fe47a42
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Sep 25 18:15:55 2023 -0700
fix: coerce title to string
commit 697bffdb8b1bef143823f77a118de90286fe325a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Sep 24 14:47:30 2023 -0700
fix: treat the 0 time as invalid too
commit ea5742c328c97a20f7add4994aa7e443fc6f7f39
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Sep 24 10:31:47 2023 -0700
fix: mermaid copy source position
commit 95eec5b49db53801e23b4b47778cb0b6153db83f
Author: Chad Lee <git@chadly.net>
Date: Sun Sep 24 12:27:42 2023 -0500
add site to showcase (#504)
commit c5b9137f12ea372d9196e41ffffc91eee7ad772e
Author: Vince Imbat <96913392+vinceimbat@users.noreply.github.com>
Date: Sat Sep 23 10:39:02 2023 +0800
docs: Adds Vince Imbat to showcase (#501)
commit 13c867322629f5ee59c54b95679585b370e1442b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Sep 22 10:04:37 2023 -0700
feat: add warning for invalid date format
commit a897cc1f531844a2e4da36f8712b7aedec0c5824
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Sep 22 09:43:34 2023 -0700
feat: add warning for missing home page
commit d93599364a3dd0b46068826cf14ed7b25aa59fc3
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Fri Sep 22 17:20:19 2023 +0200
docs(showcase): fix pull request redirect link (#500)
commit fa69c2a5656254251b74dbd5545bef000f67af2f
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Thu Sep 21 19:35:11 2023 +0200
fix(explorer): increase consistency, explicitly use font-family (#496)
* fix(explorer): display name for folders without `index` file
* docs(explorer): add section for folder display names
* docs(explorer): fix broken wikilink
* fix(consistency): explicitly set font + label/link fix
Use consistent styling between folders with `folderClickBehavior: "link"` and `"collapse`
* Update quartz/components/styles/explorer.scss
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* Update quartz/components/styles/explorer.scss
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
---------
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
commit 8eb1554b13532a2441b41d2018800c56cfa84ce9
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Thu Sep 21 18:54:33 2023 +0200
fix(explorer): display names for folders without frontmatter (#494)
* fix(explorer): display name for folders without `index` file
* docs(explorer): add section for folder display names
commit dcdeae4e7bd527945b887ca347b3b4408c03055b
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Thu Sep 21 18:53:19 2023 +0200
docs(explorer): update default config + new example (#493)
commit 48452231d5fcd14ef218928bde9ae7e5bc745f4a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Sep 20 16:09:18 2023 -0700
perf: memoize filetree computation (#490)
* perf: memoize filetree computation
* format
* var -> let
commit 16d33fb77193710bede887d6a177d2144b78fb67
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Sep 20 16:08:54 2023 -0700
feat: display name for folders, expand explorer a little bit (#489)
* feat: display name for folders, expand explorer a little bit
* update docs
commit b029eeadabe0877df6ec11443c68743f1494bc40
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Wed Sep 20 22:55:29 2023 +0200
feat(explorer): improve accessibility and consistency (+ bug fix) (#488)
* feat(consistency): use `all: unset` on button
* style: improve accessibility and consistency for explorer
* fix: localStorage bug with folder name changes
* chore: bump quartz version
commit 6a9e6352e88aa9ff18e5b33cf2de442a250bd960
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Sep 20 13:52:45 2023 -0700
Revert "feat: Making Quartz available offline by making it a PWA (#465)"
This reverts commit d6301fae90d9f922618bf0f413e273156731eef7.
commit 70e029d151ccbb9aeab30a0f811b9f529b7f8818
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Sep 20 13:52:29 2023 -0700
Revert "docs: wording changes for offline support"
This reverts commit 52a172d1a4911080444ff797183e29ba8175741e.
commit 0bad3ce7990aa4ef417128f9d74c2947fe5117fd
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Sep 20 11:58:52 2023 -0700
docs: document enableToc
commit 52a172d1a4911080444ff797183e29ba8175741e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Sep 20 11:40:36 2023 -0700
docs: wording changes for offline support
commit d6301fae90d9f922618bf0f413e273156731eef7
Author: Adam Brangenberg <adambrangenberg@proton.me>
Date: Wed Sep 20 20:38:13 2023 +0200
feat: Making Quartz available offline by making it a PWA (#465)
* Adding PWA and chaching for offline aviability
* renamed workbox config to fit Quartz' scheme
* Documenting new configuration
* Added missig umami documentation
* Fixed formatting so the build passes, thank you prettier :)
* specified caching strategies to improve performance
* formatting...
* fixing "404 manifest.json not found" on subdirectories by adding a / to manifestpath
* turning it into a plugin
* Removed Workbox-cli and updated @types/node
* Added Serviceworkercode to offline.ts
* formatting
* Removing workbox from docs
* applied suggestions
* Removed path.join for sw path
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* Removed path.join for manifest path
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* Removing path module import
* Added absolute path to manifests start_url and manifest "import" using baseUrl
* Adding protocol to baseurl
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* Adding protocol to start_url too then
* formatting...
* Adding fallback page
* Documenting offline plugin
* formatting...
* merge suggestion
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* merge suggestion
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* merge suggestion
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* merge suggestion
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* merge suggestion
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* merge suggestion
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* merge suggestion
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* merge suggestion
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* merge suggestion
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* merge suggestion
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* merge suggestion
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* merge suggestion
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* formatting...
* Fixing manifest path, all these nits hiding the actual issues .-.
* Offline fallback page through plugins, most things taken from 404 Plugin
* adding Offline Plugin to config
* formatting...
* Turned offline off as default and removed offline.md
---------
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
commit 27a6087dd5a25dd5031b86b9917adde6ef4b211a
Author: rwutscher <richard.wutscher@gmail.com>
Date: Tue Sep 19 21:26:30 2023 +0200
fix: tag regex no longer includes purely numerical 'tags' (#485)
* fix: tag regex no longer includes purely numerical 'tags'
* fix: formatting
* fix: use guard in findAndReplace() instead of expanding the regex
commit 1bf7e3d8b3966590ebfa3418d6fb2ce6a520c846
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Sep 19 10:22:39 2023 -0700
fix(nit): make defaultOptions on explorer not a function
commit cc31a40b0cb53cba7f51187cb6d68076c3f54c0f
Author: David Fischer <david@konst.fish>
Date: Tue Sep 19 18:25:51 2023 +0200
feat: support changes in system theme (#484)
* feat: support changes in system theme
* fix: run prettier
* fix: add content/.gitkeep
commit 0d3cf2922618774fc397dca8cb92fcf76fb0db02
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Mon Sep 18 23:32:00 2023 +0200
docs: fix explorer example (#483)
commit 6a2e0b3ad3a928247a03a76817d239e61cce0fe0
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Sun Sep 17 22:04:44 2023 +0200
fix: bad visibility for last explorer item (#478)
* fix: bad visibility for last explorer item
* feat(explorer): add pseudo element for observer
commit e67f409ec1fa36779f59a635eb3e16408275575d
Merge: af41f34b 4afb099b
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Sun Sep 17 21:36:04 2023 +0200
Merge pull request #479 from benschlegel/explorer-config
feat(explorer): add config for custom sort/map/filter functions
commit 4afb099bf3ec96e5d795e871ecb19575271c0714
Author: Ben Schlegel <ben5.schlegel@gmail.com>
Date: Sun Sep 17 21:32:23 2023 +0200
docs: fix examples
commit 6914d4b40caff901ccf3e9d9113c15129a68a80c
Author: Ben Schlegel <ben5.schlegel@gmail.com>
Date: Sun Sep 17 21:20:09 2023 +0200
docs: fix intra page links
commit af41f34bfd4126756e594ce4d6a46d4f4907754b
Author: Christian Gill <gillchristiang@gmail.com>
Date: Sun Sep 17 20:02:00 2023 +0200
fix(slug): Handle question mark (#481)
commit 7ac772fca8bf26c1023f905cdb77e6972a0d4b61
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Sun Sep 17 19:29:20 2023 +0200
fix: darkmode scroll bars (#480)
commit 5cc9253c41fda87ba473df7023567ba66ce3c32b
Author: Ben Schlegel <ben5.schlegel@gmail.com>
Date: Sun Sep 17 16:41:23 2023 +0200
docs(explorer): write docs for new features
commit 94a04ab1c9fd099c808f3f4e6633722e0d13ac85
Author: Ben Schlegel <ben5.schlegel@gmail.com>
Date: Sun Sep 17 15:51:08 2023 +0200
fix(explorer): filter function in `ExplorerNode`
commit 9358f73f1c939ce459d7835457527e35e1bdf857
Author: Ben Schlegel <ben5.schlegel@gmail.com>
Date: Sun Sep 17 12:41:06 2023 +0200
fix: display name for file nodes
commit f7029012dfb73ce04405bfe44e4e4d984818bf5f
Author: Ben Schlegel <ben5.schlegel@gmail.com>
Date: Sat Sep 16 21:58:38 2023 +0200
feat: black magic
add config for `order` array, which determines the order in which all passed config functions for explorer will get executed in.
functions will now dynamically be called on `fileTree` via array accessor (e.g. fileTree["sort"].call(...)) with corresponding function from options being passed to call)
commit fea352849c6972da4b3b8935eb2e86f6cefc76ed
Author: Ben Schlegel <ben5.schlegel@gmail.com>
Date: Sat Sep 16 19:45:21 2023 +0200
fix: create deep copy of file passed into tree
commit 3d8c470c0d298f720614318fb4c14575e72bbd2e
Author: Ben Schlegel <ben5.schlegel@gmail.com>
Date: Sat Sep 16 19:35:27 2023 +0200
feat(explorer): implement `map` fn argument
Add a function for mapping over all FileNodes as an option for `Explorer`
commit 31d16fbd2c82380af586e458b2c1ff29b90b53ae
Author: Ben Schlegel <ben5.schlegel@gmail.com>
Date: Sat Sep 16 19:18:59 2023 +0200
feat(explorer): integrate filter option
commit 036a33f70bcabc17469956740847796a5f13b9ab
Author: Ben Schlegel <ben5.schlegel@gmail.com>
Date: Sat Sep 16 17:47:44 2023 +0200
fix: use correct import for `QuartzPluginData`
commit 58aea1cb0791e18cd092d88de5374431eba7f1d3
Author: Ben Schlegel <ben5.schlegel@gmail.com>
Date: Sat Sep 16 17:28:58 2023 +0200
feat: implement filter function for explorer
commit c7d3474ba8cb49ab0f1978216d80b08ec2c8e5d7
Author: Ben Schlegel <ben5.schlegel@gmail.com>
Date: Sat Sep 16 12:40:19 2023 +0200
feat(explorer): add config to support custom sort fn
commit 422ba5c36586c7ebc31141da8bb539b4157aa01a
Author: Yuto Nagata <38714187+mouse484@users.noreply.github.com>
Date: Sat Sep 16 11:17:20 2023 +0900
fix: umami analytics date attribute (#477)
commit 9ae6343dd0104d44e6bdf083572f987b70ba50c9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Sep 15 10:33:38 2023 -0700
Revert "fix: use git dates by default, @napi/git is fast enough"
This reverts commit 5dcb7e83fc3c8383ebbc84aac4553df4ad3ef59a.
commit 5dcb7e83fc3c8383ebbc84aac4553df4ad3ef59a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Sep 15 09:46:06 2023 -0700
fix: use git dates by default, @napi/git is fast enough
commit 91f9ae2d71d5c28ba7d2182eed5a9f77da1fbe8d
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Fri Sep 15 18:39:16 2023 +0200
feat: implement file explorer component (closes #201) (#452)
* feat: add basic explorer structure„
* feat: integrate new component/plugin
* feat: add basic explorer structure
* feat: add sort to FileNodes
* style: improve style for explorer
* refactor: remove unused explorer plugin
* refactor: clean explorer structure, fix base (toc)
* refactor: clean css, respect displayClass
* style: add styling to chevron
* refactor: clean up debug statements
* refactor: remove unused import
* fix: clicking folder icon sometimes turns invisible
* refactor: clean css
* feat(explorer): add config for title
* feat: add config for folder click behavior
* fix: `no-pointer` not being set for all elements
new approach, have one `no-pointer` class, that removes pointer events and one `clickable` class on the svg and button (everything that can normally be clicked). then, find all children with `clickable` and toggle `no-pointer`
* fix: bug where nested folders got incorrect height
this fixes the bug where nested folders weren't calculating their total height correctly. done by adding class to main container of all children and calculating total
* feat: introduce `folderDefaultState` config
* feat: store depth for explorer nodes
* feat: implement option for collapsed state + bug fixes
folderBehavior: "link" still has bad styling, but major bugs with pointers fixed (not clean yet, but working)
* fix: default folder icon rotation
* fix: hitbox problem with folder links, fix style
* fix: redirect url for nested folders
* fix: inconsistent behavior with 'collapseFolders' opt
* chore: add comments to `ExplorerNode`
* feat: save explorer state to local storage (not clean)
* feat: rework `getFolders()`, fix localstorage read + write
* feat: set folder state from localStorage
needs serious refactoring but functional (except folder icon orientation)
* fix: folder icon orientation after local storage
* feat: add config for `useSavedState`
* refactor: clean `explorer.inline.ts`
remove unused functions, comments, unused code, add types to EventHandler
* refactor: clean explorer
merge `isSvg` paths, remove console logs
* refactor: add documentation, remove unused funcs
* feat: rework folder collapse logic
use grids instead of jank scuffed solution with calculating total heights
* refactor: remove depth arg from insert
* feat: restore collapse functionality to clicks
allow folder icon + folder label to collapse folders again
* refactor: remove `pointer-event` jank
* feat: improve svg viewbox + remove unused props
* feat: use css selector to toggle icon
rework folder icon to work purely with css instead of JS manipulation
* refactor: remove unused cfg
* feat: move TOC to right sidebar
* refactor: clean css
* style: fix overflow + overflow margin
* fix: use `resolveRelative` to resolve file paths
* fix: `defaultFolderState` config option
* refactor: rename import, rename `folderLi` + ul
* fix: use `QuartzPluginData` type
* docs: add explorer documentation
commit 14cbbdb8a2f69ebc51cd53a82b50206c543778b0
Author: Oskar Manhart <52569953+oskardotglobal@users.noreply.github.com>
Date: Thu Sep 14 05:55:59 2023 +0200
feat: display tag in graph view (#466)
* feat: tags in graph view
* fix: revert changing graph forces
* fix: run prettier
commit cce389c81d262d1d2a2bd8140c879efd68e3c6dd
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Sep 13 11:28:53 2023 -0700
feat: note transclusion (#475)
* basic transclude
* feat: note transclusion
commit 4461748a85b8795651d0c02451368dffff607938
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Sep 13 09:43:14 2023 -0700
fix dont show html in search when rssFullHtml is true (closes #474)
commit 6ecdcb5e24f2783e6fa73de69e848f0f319c4fc4
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Sep 12 22:55:50 2023 -0700
feat: resolve block references in obsidian markdown
commit e3b879741b6d32f56e1d1bfd0bac57f0d68c1113
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Sep 12 21:44:03 2023 -0700
feat: rich html rss (closes #460)
commit 60a3c543398aed8caf44b411a4dc10e8d1e26fcc
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Sep 12 21:29:57 2023 -0700
fix: 404 page styling for nested pages (closes #458)
commit 71d81bde1d12aa386ec70be31cc86a37a7426bce
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Sep 12 19:18:44 2023 -0700
feat: rss limit (closes #459)
commit a19df64be8423063c2484ab35300fb0bef324a14
Author: hcplantern <38579760+HCPlantern@users.noreply.github.com>
Date: Tue Sep 12 14:00:21 2023 +0800
fix: callout parsing (#469)
commit 4e23e6724493a8d112c6ff22e14cf4aabd5e9af1
Author: Oskar Manhart <52569953+oskardotglobal@users.noreply.github.com>
Date: Mon Sep 11 08:11:42 2023 +0200
feat: plugin for remark-breaks (#467)
* feat: plugin for remark-breaks
* fix: update package-lock.json
* fix: styling
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* Update linebreaks.ts
* Update index.ts
---------
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
commit a66c239797e3e80e2dc8b7059eee8c51bcf4ca8f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Sep 10 23:07:17 2023 -0700
ci: print bundleInfo
commit 53f1c88738550eb2646cc0a03469dc230839a258
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Sep 8 09:29:57 2023 -0700
fix: more lenient date parsing for templates
commit 06df00b18621f08a211bec33f566ecb7ef4ec22e
Author: Stefano Cecere <stefano.cecere@krur.com>
Date: Thu Sep 7 17:13:41 2023 +0200
typo (it's draft, not drafts) (#456)
commit 2525bfbab5553f970997ea3c60af180cbef1fdd2
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Sep 6 22:24:15 2023 -0700
fix: links to index not showing in graph (closes #450)
commit 828aa71fe34aae675a7552957e8a062c82f595f6
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Sep 6 21:47:59 2023 -0700
fix: escape encoding for titles in rss
commit ef1ead31dccd05f4275405b843ff47fa28a5116d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Sep 6 21:31:01 2023 -0700
fix: encodeuri for slugs in rss
commit 989bee597987bba2aeae4266cb32ac8e899f638c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Sep 6 21:08:08 2023 -0700
docs: correct field for ignorePatterns
commit 8d6029b7b844044d06fe17de89db6881954a8fec
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Sep 6 21:02:21 2023 -0700
feat: 404 page emitter
commit 2d52eba4133293a27f6df98c252785ba4ddee575
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Sep 6 20:25:38 2023 -0700
fix: dont transform external links
commit 6ef4246cf186414d1b8ee868cfa9d24314f0bc0a
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Mon Sep 4 07:36:30 2023 +0200
docs: update `full-text-search.md` (#447)
commit 616a7f148a283b2fd7c5204c60ddf1b08f42d125
Author: Dr Kim Foale <kim@gfsc.studio>
Date: Mon Sep 4 05:29:58 2023 +0100
docs: Make it clearer that wikilinks go to paths not page titles (#448)
commit e8a04efaf1b82560cbcf7694ac6c7dda1c82612f
Author: Adam Brangenberg <adambrangenberg@proton.me>
Date: Mon Sep 4 06:28:57 2023 +0200
feat(analytics): Support for Umami (#449)
commit 7e42be8e46501c752dda9bd174fb93ea9dccec22
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Sun Sep 3 18:32:46 2023 +0200
feat(search): add arrow key navigation (#442)
* feat(search): add arrow navigation
* chore: format
* refactor: simplify arrow navigation
* chore: remove comment
* feat: rework arrow navigation to work without state
* feat: make pressing enter work with arrow navigation
* fix: remove unused css class
* chore: correct comment
* refactor(search): use optional chaining
commit 8c354f6261dda6d9761f594002db53c9d7a8e8e2
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Sun Sep 3 18:06:05 2023 +0200
fix: clipboard button visible in search (#445)
commit 505673acd71e6b023abae19c706a736b257cff2a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Sep 2 18:07:26 2023 -0700
feat: pluralize things in lists
commit 23f43045c49f17fe5ace480f7026855acf2a30b8
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Fri Sep 1 23:12:32 2023 +0200
fix(search): matches getting highlighted in title (#440)
commit 90dac31216b5d3f59e65ec5778e21a308a744e11
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Fri Sep 1 19:09:58 2023 +0200
feat: Implement search for tags (#436)
* Quartz sync: Aug 29, 2023, 10:17 PM
* style: add basic style to tags in search
* feat: add SearchType + tags to search preview
* feat: support multiple matches
* style(search): add style to matching tags
* feat(search): add content to preview for tag search
* fix: only display tags on tag search
* feat: support basic + tag search
* refactor: extract common `fillDocument`, format
* feat: add hotkey to search for tags
* chore: remove logs
* fix: dont render empty `<ul>` if tags not present
* fix(search-tag): make case insensitive
* refactor: clean `hideSearch` and `showSearch`
* feat: trim content similar to `description.ts`
* fix(search-tag): hotkey for windows
* perf: re-use main index for tag search
commit 2d6dc176c3e1fbb520a5da1beb60bbb1d8e948ba
Author: Pelayo Arbués <gonzalezpelayo@gmail.com>
Date: Thu Aug 31 21:12:06 2023 +0200
Adds Pelayo Arbues to showcase (#435)
commit b213ba45e2e706332e057b131adc946f882f090b
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Thu Aug 31 20:55:04 2023 +0200
fix: regex for matching highlights (closes #437) (#438)
* fix: regex for matching highlights
* fix: regex for empty highlights
commit 5fa6fc97899c905b6fbc14fa1d24334f3e68fa77
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 29 10:37:00 2023 -0700
fix: aliasredirects not using full path, add permalink support
commit 1cc09ef76db129fb3670e95560312adeefab913c
Author: Jeffrey Fabian <jeffrey.fabian61@gmail.com>
Date: Tue Aug 29 13:14:54 2023 -0400
feat: support kebab-case and nested tags in Obsidian-flavored Markdown tag-in-content parsing (#425)
* enhancement: support kebab-case and nested tags in ofm transformer
* update regex/capture groups to allow for (arbitrarily) nested values and tags of only -/_
* Update quartz/plugins/transformers/ofm.ts
---------
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
commit c35cd422c65a58f1069302aad0cf9eef7f93d987
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Mon Aug 28 19:00:49 2023 +0200
fix: correct graph labels for `index.md` nodes (#431)
commit 082fdf2e8098ef6bcb46a7dfabf8c6b9fd096346
Author: Jeremy Press <jeremypress1@gmail.com>
Date: Sun Aug 27 20:57:19 2023 -0700
Fix typo :) (#430)
commit b6b1dabde0f63ca0ae743aa7f4266ca892d7b5e5
Author: Jeremy Press <jeremypress1@gmail.com>
Date: Sun Aug 27 17:39:42 2023 -0700
feat: support configurable ws port and remote development (#429)
Co-authored-by: Jeremy Press <jeremy@replit.com>
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
commit 4b89202f7e834cf8b5c5aa39e8f1778706492085
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Mon Aug 28 00:59:51 2023 +0200
cleanup: rework cli to allow invoking create and build outside of cli (#428)
* refactor: move `bootstrap-cli.mjs` tp cli
also update reference in docs
* refactor(cli): move build handler to `cli-functions`
* refactor(cli): move create to handler + helpers
* refactor(cli): extract arg definitions
* refactor: rename handlers and helpers
* refactor(cli): move update, await handlers
* refactor(cli): create constants, migrate to helpers
* refactor(cli): migrate `restore`
* refactor(cli): migrate `sync`
* format
* refactor(cli): remove old imports/functions
* refactor(cli): remove unused imports + format
* chore: remove old log statement
* fix: fix imports, clean duplicate code
* fix: relative import
* fix: simplified cacheFile path
* fix: update cacheFile import path
* refactor: move bootstrap-cli to quartz
* format
* revert: revert path to bootstrap-cli
* ci: re-run
* ci: fix execution permission
commit 52ca312f41ee6da5202cd9632d8501340ada3a67
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 27 12:27:42 2023 -0700
fix: slugify tag on page before adding (closes #411)
commit c91e62c376d481534d89084e5c04846878dff6d3
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Sun Aug 27 02:19:45 2023 +0200
Fix search bar after navigate (#424)
commit ad4145fb10dbf32d8f99e1de555339dba0979f72
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Sat Aug 26 22:21:44 2023 +0200
feat: support CLI arguments for `npx quartz create` (#421)
* feat(cli): add new args for content + link resolve
* feat(cli): validate cmd args
* feat(cli): add chalk + error code to errors
* feat(cli): support for setup/link via args
* refactor(cli): use yargs choices instead of manual
Scrap manual check if arguments are valid, use yargs "choices" field instead.
* feat(cli): add in-dir argument+ handle errors
add new "in-directory" argument, used if "setup" is "copy" or "symlink" to determine source. add error handling for invalid permutations of arguments or non existent path
* feat(cli): dynamically use cli or provided args
use "in-directory" arg as `originalFolder` if available, otherwise get it from manual cli process
* run format
* fix: use process.exit instead of return
* refactor: split CommonArgv and CreateArgv
* refactor(cli): rename create args, use ${} syntax
* fix(cli): fix link resolution strategy arg
* format
* feat(consistency): allow partial cmd args
commit 74c3ebb7bd7ef126246f8ea03565db73cd5e7f38
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 26 10:48:34 2023 -0700
style: fix mulitline callout styling
commit e3265f841637de197e5cf4a5471372b5178f1e4d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 26 10:42:55 2023 -0700
docs: simplify oxhugo page
commit bc543f81d9ada5e61cb9690834a5f83c02997d63
Author: Hrishikesh Barman <geekodour@users.noreply.github.com>
Date: Sat Aug 26 11:22:23 2023 +0530
feat(plugins): add OxHugoFlavouredMarkdown (#419)
* feat(plugins): add OxHugoFlavouredMarkdown
ox-hugo is an org exporter backend that exports org files to
hugo-compatible markdown in an opinionated way. This plugin adds some
tweaks to the generated markdown to make it compatible with quartz but
the list of changes applied it is not extensive.
In the future however, we could leapfrog ox-hugo altogether and
create a quartz site directly out of org-roam files. That way we won't
have to do all the ritual dancing that this plugin has to perform.
See https://github.com/k2052/org-to-markdown
* fix: add toml to remarkFrontmatter configuration
* docs: add docs for OxHugoFlavouredMarkdown
* fixup! docs: add docs for OxHugoFlavouredMarkdown
commit 5c6d1e27baef74a42cc292276c5832b010a38fd5
Author: Hrishikesh Barman <geekodour@users.noreply.github.com>
Date: Fri Aug 25 22:55:46 2023 +0530
feat(plugins): add toml support for frontmatter (#418)
* feat(plugins): add toml support for frontmatter
Currently frontmatter is expected to be yaml, with delimiter set to
"---". This might not always be the case, for example ox-hugo(a hugo
exporter for org-mode files) exports in toml format with the delimiter
set to "+++" by default.
With this change, the users will be able use frontmatter plugin to
support this toml frontmatter format.
Example usage: `Plugin.FrontMatter({delims: "+++", language: 'toml'})`
- [0] https://ox-hugo.scripter.co/doc/org-meta-data-to-hugo-front-matter/
* fixup! feat(plugins): add toml support for frontmatter
commit 340e3ef5116cd99c8ddfdbb3d9e0bbd914e07825
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Fri Aug 25 18:03:49 2023 +0200
feat(consistency): Add `.obsidian` to ignorePatterns (#420)
commit 953ef29f4e238ef9ae186ab79eeec1bf4f3921a6
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 24 12:31:15 2023 -0700
format, ensure ci runs on prs
commit 94ce0883e7fbf38252377af2f144c971a2ff591b
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Thu Aug 24 21:28:06 2023 +0200
style: integrate tertiary color to text-select (#413)
commit 8cf7280614f8c1f2c9aaba5671f388d63bbea4dd
Author: Zero King <l2dy@icloud.com>
Date: Fri Aug 25 02:41:20 2023 +0800
feat: reproducible build (#412)
for sitemap, RSS and contentIndex.json.
commit c8412a5b0ac90d9d7beb7e03ed9a4763e834a865
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 24 10:03:14 2023 -0700
format
commit fc4b8f3d3fad90b6f7d8dedc58201df68da1280e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 24 09:38:00 2023 -0700
fix: ensure recentnotes uses proper date
commit 6cd0612d40a5011f19f5ca2e5e804477779e393f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 24 09:17:43 2023 -0700
fix: add better warning when defaultDateType is not set due to upgrade
commit 9851697b583efdd40173ebbdd484030f2adb0732
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 24 09:05:19 2023 -0700
version bump to 4.0.10
commit c36a9f3fb7c2128610d20312ffb332bd238c89de
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 24 08:56:40 2023 -0700
feat: add defaultDateType config
commit 98d82415dc8d60c3a35ea4dee21c86e406605763
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 24 08:31:06 2023 -0700
fix: lock to never read when site is building
commit 9d2340e90b55fb9480e0901bc7360f3d72e688da
Author: Ben Schlegel <31989404+benschlegel@users.noreply.github.com>
Date: Thu Aug 24 17:14:52 2023 +0200
docs: fix typo in `authoring content.md` (#408)
commit 8200c8d0402cb40e9f65c49dac5be621360a3a20
Author: bfahrenfort <59982409+bfahrenfort@users.noreply.github.com>
Date: Thu Aug 24 00:57:49 2023 -0500
Revert contentIndex to RSS 2.0 (#407)
commit 2e0e518f5dbddc3b55e9dd1a085c2a88d365b599
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 23 15:16:04 2023 -0700
format
commit 632c27b7ec133d15d890eb28c98eb9716ca01407
Author: Zane Helton <me@zaaane.com>
Date: Wed Aug 23 18:14:23 2023 -0400
docs: update `hosting.md` with Vercel hosting instructions (#406)
* Update hosting.md with Vercel hosting instructions
* Update docs/hosting.md
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* Update docs/hosting.md
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
* Run npm run format
---------
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
commit bfb416b35a02dabbdaedc9e3c8980f8b4aadd9aa
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 23 13:10:23 2023 -0700
fix: text wrap in popover
commit 960c1814d07449dd9fd5e70eea770ba762780b53
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 23 12:23:49 2023 -0700
docs: make incompability of trailing slashes clear
commit eed4472aeecdcb0f2b233df69884f03bd45fc293
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 23 12:18:50 2023 -0700
fix: use proper full base for links.ts
commit b99eb7ebce21065b7ff59cdd3226d4fc173b3878
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 23 12:11:16 2023 -0700
docs: whitespace
commit 0aaf88b8521e2bc667cae525356eea3550ad9c96
Author: kanpov <71177577+kanpov@users.noreply.github.com>
Date: Wed Aug 23 22:09:04 2023 +0300
Fix #403 by moving documentation to separate directory to avoid merge conflicts (#405)
commit a1a1e7e1e0c06f2f7b759c5aecd6a9ceba3e2717
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 23 11:36:34 2023 -0700
fix: builds should no accumulate on repeated changes (closes #404)
commit 3209f7c3b7837fd845cbef645155a9484ea0253a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 23 09:19:00 2023 -0700
deps: native addons for lightningcss
commit cde1e26129f8cd6b183ccc1c35a06f76dedeff9c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 23 09:16:44 2023 -0700
deps: install exact
commit 1128efcf237d275343daaab16e1b1d3e228999b9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 23 09:10:30 2023 -0700
deps: esbuild and esbuild-sass-plugin
commit d2f52549955ff7600cc5897e67806df4ebf85f91
Author: Aaron Pham <29749331+aarnphm@users.noreply.github.com>
Date: Wed Aug 23 12:05:01 2023 -0400
fix(esbuild): conflict with esbuild-sass-plugin (#402)
commit 3064839c2d2ea0a9976bef83db12102647572083
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 22 23:37:02 2023 -0700
version bump to 4.0.9
commit b444c5c13b983bf80df8b6d020eb246e9fd3e78e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 22 23:33:58 2023 -0700
fix: percent-encoding for files with %, contentIndex for non-latin chars (closes #397, closes #399)
commit 36548d59866ab3236677ff25af106b882c0694f6
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 22 22:41:50 2023 -0700
fix: toc for cyrillic and other non-latin alphabets (closes #396)
commit 99dbe525d9b221bf12778ed899c94ef103a77c45
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 22 22:27:41 2023 -0700
fix: properly lock across source and content refresh by sharing a mutex
commit 8b63ff882ae28b1a1774293673a7531463d6a5e5
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 22 22:14:16 2023 -0700
fix: tag support for non-latin alphabets (fixes #398)
commit b991cf2ee8a456a15f2b566843d93a9b7a9a0c29
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 22 21:30:31 2023 -0700
fix: spa hijacks back button (closes #400)
commit bb677840fc1ff14637fab8a99841dd532f408fce
Author: 松浦 知也 Matsuura Tomoya <me@matsuuratomoya.com>
Date: Wed Aug 23 01:16:55 2023 +0900
fixed broken CJK links (#390)
commit c60b3d5e3444e46587c1143dab784c53204070ae
Author: Ikko Eltociear Ashimine <eltociear@gmail.com>
Date: Wed Aug 23 01:16:21 2023 +0900
fix: typo in bootstrap-cli.mjs (#394)
commit e10de3febffd3e3b7eaa3aed611aea03153e6a82
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Aug 21 17:01:18 2023 -0700
fix: server-handler crash from filename (closes #386)
commit b69556c918e2a4a27b047e8de6b02861f04d5a9e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Aug 21 16:43:22 2023 -0700
fix: async-mutex not exclusively locking correectly
commit ce7057107266c1d96a909977add472af83f0e9f9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Aug 21 09:14:47 2023 -0700
docs: use canonical quartz.jzhao.xyz, update bootstrap script to point to correct hosting link
commit 8c943f47d6ddedc5da4b9447fec173a16d91758c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Aug 21 09:00:13 2023 -0700
format, update default sidepanel width
commit 2774e976d20226df1554ebddd6c7d2e390cae42d
Author: 松浦 知也 Matsuura Tomoya <me@matsuuratomoya.com>
Date: Tue Aug 22 00:45:47 2023 +0900
fix: opts being overriden in graph option (#384)
commit bb93ac1c83fd8d13593f7f9688de02eba60de913
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 23:50:19 2023 -0700
docs: fix links to networked thought
commit 777ff51c7a704459f9708086845b62aa8fe4e89d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 20:48:35 2023 -0700
format
commit 4e42d52e166dcc3c62775cb3bf86c209d098c158
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 20:47:07 2023 -0700
fix: ctrl + k breaking after page nav
commit d0f67d993507219cfa0824db8a3e59286f0ebf09
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 18:41:37 2023 -0700
move wss server start after http
commit 952d6cb3dd63bb50056198c1d7782314f8976bbf
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 18:08:44 2023 -0700
fix: nav event with spa off, anchor nav refresh page
commit 173ec240d2ed5b25f18ef42823334ae800b3527d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 17:50:56 2023 -0700
fix: jump to anchor on deployed site triggering spa refresh
commit 425c9789a451e69adbba2d99193e38e8915e8804
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 16:59:25 2023 -0700
remove checkout step from instructions as v4 is the default branch
commit 7b7064ad2be68e8d6d43123c12529ca94a325fcb
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 15:38:37 2023 -0700
fix: ensure code exists inside pre before adding clipboard
commit ca17af4ae20b9310da52a3752b8d7744c932f3e2
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 15:02:24 2023 -0700
fix: dont show index page for folder in its own listing
commit 71471117c5ec4acdfc0b8335b4462ab43d86fce6
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 14:34:00 2023 -0700
fix: ci runs on v4
commit e65ea48fae5a279ad4e50594b03621904f84e477
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 14:27:44 2023 -0700
fix: add async-mutex to builds on large vaults
commit b99d4cd8ce99ea1e52a97654ab153774a6bc598a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 14:05:37 2023 -0700
recent notes css fixes
commit 1bb00e72bb4ab8fcac186ef6961e400c60fb07de
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 13:00:33 2023 -0700
add docs for recent notes
commit 236130ac221f7d254ec9881f529f4ca567e15234
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 12:46:37 2023 -0700
css fixes, add recent notes, more robust quartz update
commit 5adf3c67a8f1939b891fadd2c8c30cf201d87943
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 08:57:56 2023 -0700
add engines field
commit 9d77edaf94d23f207552b3a650189810ba2252cd
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 01:08:18 2023 -0700
fix description not being used in folder and tag listings
commit 0ef1b5b522d1d6c0c79cd0538a2d63a9bf71a973
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 00:54:13 2023 -0700
update plausible url
commit cfb7d1232e005736dc549fb24ec5a02d53fc5206
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 00:52:49 2023 -0700
docs: update notes for tag and folder listings
commit 03fd62496f94c7cc007f802fc10290581d08deb0
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 20 00:02:41 2023 -0700
docs: note about updating default branch
commit d205eb568686a718cae889d51fde5ae18d352b30
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 19 22:19:49 2023 -0700
docs: make setting upstream more clear, docs on npx quartz restore
commit 96a3bfeafbe3e46bdf3e217dd934b026bc1b9f9f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 19 22:04:29 2023 -0700
fix: put quotations around font
commit 95fb6ccfcb5d887f1085bc1b58204b4138a2e804
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 19 21:59:20 2023 -0700
readme fix
commit e26248292179ebb691dfa99621192b2258c9b9c3
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 19 21:59:01 2023 -0700
fix: string for aliases being treated as array of chars
commit eb4d3dc5b405fda29ccde917902483a76835894c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 19 21:55:09 2023 -0700
css: fix scrollbars on windows
commit 90d6c1ed24283d0b046ba7eee2e6533a73cf3683
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 19 21:38:10 2023 -0700
add git fetch to migration instructions
commit 443c1828901f364cb7f5708a64a32494eea28d28
Merge: 791b8e2d a6236d97
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 19 21:16:31 2023 -0700
Merge branch 'v4' of https://github.com/jackyzha0/quartz into v4
commit 791b8e2d9f826de8cd0e3db3aead04ad8c65bc6e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 19 21:16:24 2023 -0700
add sponsors
commit a6236d97cf847a88dc2f72450372d440561032ac
Author: Matt Dunn <55315824+TheRealMattDunn@users.noreply.github.com>
Date: Sun Aug 20 03:15:14 2023 +0100
Adding to Showcase page (#367)
commit b1debaebff5c5753149e02e990439e7e56528852
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 19 18:56:45 2023 -0700
update docs
commit 7b8017413c16c0153c58919ab30e0e2de6e71f02
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 19 18:04:17 2023 -0700
impl baseDir option for quartz build --serve for local testing
commit 6681f28af0bb753918699c41ef9a8421f6b7cd08
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 19 16:55:36 2023 -0700
fix trailing slash causing folder listing to not fetch content correctly
commit 78f4cdbe109308fa33cb87387952aef5a528ebbe
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 19 16:40:02 2023 -0700
avoid 404 on icon for spa navigations with anchors
commit dd47be1bc65d3a8050d6ce9e77cd0e3b10e2a1a9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 19 16:28:44 2023 -0700
improve path resolution stability
commit c874e7e9378a5ba895870e9680484fb4af5c6e93
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 19 15:52:25 2023 -0700
base path refactor to better support subpath hosting
commit 3201f83b70bb2ee1d1daeb585a26e8cd6b8ce95f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Aug 18 18:24:09 2023 -0700
v4-alpha -> v4
commit d8bec631b6dee8f5b9c42f75d154252e53e81b77
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Aug 18 18:22:38 2023 -0700
update docs on github pages and syncing
commit 6f1f820289ce37d328c4bc8cceba1f702df52e15
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 17 23:39:15 2023 -0700
fix typo in docs
commit 8bc7a50dfa91dd7ba6b657aca6dbc437fa6df6b7
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 17 21:54:42 2023 -0700
format
commit 569beb410b967b8511a5d18cdee74280df681d15
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 17 21:49:58 2023 -0700
ensure sync includes untracked files
commit 5713d30670fc9ca1f9d86e6f0698bd011a68f674
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 17 21:24:41 2023 -0700
ensure contentfolder is passed to popContentFolder
commit a13094544318b06902b54a24ea61691fe598a2fc
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 17 21:20:15 2023 -0700
fix when symlink targ is calculated and added npx quartz restore
commit e10f6da01140f483162fe33cc77b2255b0683ac7
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 17 21:08:26 2023 -0700
format
commit a7cca3242ad7adc5163d70aa2cc8ee23c92211e5
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 17 21:07:40 2023 -0700
deref symlink on quartz sync
commit 0998bc355e6425e6b2bdf3d2da7124aa7b63b2a2
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 17 01:58:11 2023 -0700
fix rebuild debouncing
commit 07a327e05aa2a48aa11faf9aa0e049201d622f8f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 17 01:34:50 2023 -0700
fix back button in spa not working between two pages that both have hash fragments
commit 58d9dc0528cc5d7232ac7a237c98213ff1075f39
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 17 00:55:52 2023 -0700
format
commit 0c199975f2d469ecdfd7efcf2ddd16ffa1dc492b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 17 00:55:28 2023 -0700
various path fixes for links to extensions, fix relative paths in links
commit 2dc0ae279cae87e37c94c42d4ad87107f2a5b5d2
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 16 22:09:11 2023 -0700
fix import paths
commit 2f6747b1666316e579c6e7238092ac6a65d00925
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 16 22:04:15 2023 -0700
fix relative path resolution in router and link crawling
commit 232652149a287054df7e7c5136dafd3f55a79bf0
Author: Sohaib <98542228+sohaibology@users.noreply.github.com>
Date: Mon Aug 14 20:59:47 2023 -0400
Update hosting.md (#371)
commit 7bde99b4e2d49e30dad1e0d58ccc34c2e7482005
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 13 17:47:07 2023 -0700
fix: add trailing slash to local serving
commit f1c9ca495e450ecb62dade70c4b60d86e106f79c
Author: vintro <77507980+vintrocode@users.noreply.github.com>
Date: Sun Aug 13 20:19:50 2023 -0400
docs: note about existing content at same path on different branches
commit 4f4b04eeb4f41067e4759bec5c2f5db181150520
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 12 21:18:51 2023 -0700
format docs
commit d6e73f221c3e52ce6591cbd01621530e5f6fd703
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 12 21:16:34 2023 -0700
fix relative path resolution logic, add more path tests
commit 6d9ffd6da508743407b3b88a89ed831b53321d59
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 12 17:44:35 2023 -0700
404 page styling on local
commit c89f8b1a9a20becd982ed0b4bc88b1685a15832d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 12 10:33:57 2023 -0700
fix nested callout folding
commit 8fd496bbef4bc62315f3a0893177da730d8c4262
Author: Sohaib <98542228+sohaibology@users.noreply.github.com>
Date: Sat Aug 12 16:52:16 2023 -0400
Update hosting.md (#368)
commit aed3f5fccbe6a70186b339af4716980a5950b989
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 12 10:17:07 2023 -0700
fmt
commit c55d54f068a102d85dc16c5c0e63db413bc56145
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 12 10:16:55 2023 -0700
enable rich text in callout title
commit 7bffc2183ece33e2d84909a5677dac0ae2563ddd
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 12 00:24:30 2023 -0700
include home page in search
commit 827dd918476e225238d8412551df2866e4f9e616
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 12 00:03:11 2023 -0700
format, make search async
commit e1dd6aee863878a02f51200b3878d619220c22f3
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Aug 11 23:55:17 2023 -0700
fix wikilinks to anchors in the same document
commit 83269ac26e41f8e81b56e000b4347ee60d4ff84b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Aug 11 23:40:06 2023 -0700
fix scanning for tags in content
commit ed62ece491310e75d336db844d8ce56d3d26be31
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Aug 11 23:27:59 2023 -0700
fix broken tag listing links to tags
commit 736c3981c4affff8dea1eb908ff760ee740ec4a3
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Aug 11 23:25:44 2023 -0700
fix emit filepaths, tag emit being overriden by content
commit 79e828696a9e53357f61bd89c36e41555575c2c2
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Aug 11 22:47:50 2023 -0700
feature docs
commit 259d0a6d9ac5a02f0281e3fc061861b23481348f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Aug 11 00:31:44 2023 -0700
more documentation
commit df02ea20d7e12e8b9ffdd2968afaf5893c433488
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 10 21:32:11 2023 -0700
spacing fix
commit 21cc6a5da9edefd199c0b2158b85b8cd10dd901c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 10 21:29:11 2023 -0700
run prettier
commit cefbca4753a7d98f93f57a6452a09f6308e2fe27
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 10 21:16:07 2023 -0700
docs on making plugins
commit ad3f7b2d5fe15af2626250463994f5a9e9ba6d0a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 9 09:18:44 2023 -0700
format
commit ebf3263b7efacc9ac499f3f1f1bbc91451899ae0
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 9 09:10:40 2023 -0700
update npx quartz update script
commit cea6834fef54da59fc1692d1db0221b93793238f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 9 00:26:33 2023 -0700
profiling, better concurrency heuristics
commit 68ccd1d79de7cef275605e238238c1a80bbb074f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 8 22:53:01 2023 -0700
format
commit 49bd6bc3ffe1d3507e00bae62c12d9b045363090
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 8 22:52:49 2023 -0700
better concurrency debugging, --concurrency flag for npx quartz build
commit e4950e06a15e34134b9feb064749748080bd59a1
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 8 21:31:36 2023 -0700
fix getFileExtension missing numeric extensions (e.g. mp4)
commit e21f0f9bb97cbc4bd59f6bce0e0fce451b6d2b01
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 8 21:28:09 2023 -0700
change reading time to content meta
commit ee9ed4f2877bff1a64104b6d97ed0d51b1bb6fa3
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 8 20:36:24 2023 -0700
fix head.tsx
commit 2706a137a042b4bf932b0ace9934914f290605f3
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 8 20:18:31 2023 -0700
guide to creating components
commit 09d4eb0684eac96747778656fc4a8f8085c41388
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Aug 7 23:57:24 2023 -0700
fix notes
commit 533d68e642ca82b540d57a449d0e2c98ed921d6e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Aug 7 23:56:50 2023 -0700
most of creating components, increase legibility of bold in article and callouts
commit 774a162850883468052fd5c5a79cf8786bd96989
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Aug 7 21:51:23 2023 -0700
format
commit 2ac5dd49da34d33e4086630d371cbaf1ed294153
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Aug 7 21:51:06 2023 -0700
fix regression in code block font-size boosting on safari mobile
commit 527ce6546e7ec50e7720ff7b9b6ff79a89c3b7fc
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Aug 7 21:41:18 2023 -0700
various css fixes, fix new image loading bug when previewing, path docs
commit d02af6a8ae4c3bea4c94ad63c118d517318146fe
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Aug 7 17:34:38 2023 -0700
architecture, fix vendor prefixing
commit b4cacd59569c066c52bbe163165c2a30d6ce3ad0
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 6 22:07:33 2023 -0700
format
commit cd9dc6ecb570c08291e73d9db001e6068df4d88a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 6 22:07:08 2023 -0700
fix css transforms for mobile
commit d8d9dd22c9e81f344f3ab56f7262d804c2720fcd
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 6 20:52:17 2023 -0700
fix shortest path for non-md files, mobile fix
commit 075ac33474d5d439b01daf5392738a3ea810b86d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 6 19:54:11 2023 -0700
note formatting
commit 3adc73a703142b3c0475570e4de16701b2797524
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 6 19:52:30 2023 -0700
docs upgrade, ci changes
commit 028bcec62c3ca019a96783f17eaee1ecce6e092b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 6 17:09:29 2023 -0700
mobile fixes, fix bug when linking to anchor on home, docs
commit db6054a8c19703345cfdd6dd4a08f35986c14acc
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 5 18:00:52 2023 -0700
format, remove markdown from being procesed
commit a0d651d64dfd766157324fd86791da2168028cf2
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 5 17:53:29 2023 -0700
reverse query param hack to re-add sourcemap support
commit 1da467d2143a260af8e5b7d2d2f68f0fcaa0260c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 5 16:43:50 2023 -0700
non-admonition callout fix
commit 7c09627df4bd61e3b4fbd6fd84a1971b40ff72b3
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 5 15:34:10 2023 -0700
improve hot reload robustness
commit c402f0c3857a75cc101c3459866c94e646fd2957
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Aug 5 11:28:09 2023 -0700
more robust error handling, config hotreload
commit 9e76b257d4be4b9e6ea7b514074ef74d8d125f4b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Aug 4 22:35:21 2023 -0700
fix mermaid initialization
commit 21a7ec23078c04601acc4741ee141d7560e0d6f2
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 3 23:36:00 2023 -0700
bump mathjax version
commit 6423f85614dc87a320625d2efe2088d648c127ff
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 3 23:28:34 2023 -0700
fix execsync
commit 3a2eae0a16cfc275182f8a26af0a77f0e9bd07c1
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 3 23:24:34 2023 -0700
fix fetch flags
commit 2acfb9e8701d2b001a82a6af75969a1df7d97b67
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 3 23:08:04 2023 -0700
format, add upstream
commit 93986c6e7c8893ae3068bb3ea2ba187e5e1d6f43
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 3 22:29:46 2023 -0700
update pull strategy
commit 4877a9c934201e8f0e4e83821efe2dc3f9299d9a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 3 00:08:13 2023 -0700
fix callout aliases not being used properly
commit 6457496b4b8222d95d9b5ab47e8eda62d7241739
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 2 23:42:49 2023 -0700
readme fixes, force
commit fdf1e2a41d079c4f2d1f3df7c297fa0d92a18cc9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 2 23:29:28 2023 -0700
use checkout for pulling updates
commit 663c41fa41faad1528335a18c73a197ed5c6ea11
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 2 23:04:26 2023 -0700
use posix style paths for all path ops
commit de72dd4e4af550cd72847d7cc0924a5859edb9e1
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 2 22:16:46 2023 -0700
format
commit 5537ca41e0069725e98ef9ad59a2d4dbaa0bd8ae
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 2 22:16:32 2023 -0700
use autostash and pull
commit 558a50916446746768fa43bbdfc8e229d8ec7759
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 2 22:11:46 2023 -0700
format
commit d7842e0ce713e338f21374cea407a46cace18cca
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 2 22:10:13 2023 -0700
make path and globbing more platform invariant
commit 264ea3d54438b30bc7d9280e076e3f6e29d0ff8c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 2 20:59:56 2023 -0700
add gitattributes for windows
commit 0a33ff7a82658ecc6db3bb881db167f69893499c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 2 20:56:31 2023 -0700
fix test matrix for ci
commit 429f331c212d598b0d7ff44f20f75cf007bcf32b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 2 20:53:13 2023 -0700
make ci also run on windows, re-add css minification
commit 9a0f20012a8f5051aa2faac62f91dc4f2a38151c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 2 00:07:41 2023 -0700
windows patches
commit c8c108c7f702ca3710733d6d455ca2661e13e8d3
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 1 23:29:58 2023 -0700
change default strategy to be rebase
commit aaae7d46c21491397b1f723d5ae16cff4f258544
Merge: a70e846b cbae88fc
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 1 22:48:32 2023 -0700
Merge branch 'v4-alpha' of https://github.com/jackyzha0/quartz into v4-alpha
commit a70e846b0a14f3065bbf613221fee0e3b09c12ef
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 1 22:47:16 2023 -0700
flag to allow ofm replace in html embed
commit cbae88fc4e9b98764cfccca2e85f265c4b894573
Author: Adam Brangenberg <adambrangenberg@proton.me>
Date: Mon Jul 31 05:08:32 2023 +0100
Removing redundant properties (#356)
commit cc7950267089648e4329531105fe5f8ba011b1b4
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jul 25 23:37:24 2023 -0700
make layouts simpler to think about
commit 45f9087f03fde7e7d762e25a9f2966d1e6e907f3
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jul 25 22:27:59 2023 -0700
fix checkbox/tasklist styling
commit 1c1a56902371d20e35ad3849cc806a2272f8e8df
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jul 25 21:11:06 2023 -0700
fix formatting
commit cee2883c0889a65e2786d70eb81932f5ed017e59
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jul 25 21:10:37 2023 -0700
nested tag support and tag index page
commit c0278a8c65d74441a6237e0a90c08f8b7b263d95
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jul 24 21:54:47 2023 -0700
font loading options, optimize css
commit e82ba97a396e4e9d77486b48e6ee8b1dfd1c1b4c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jul 24 00:07:58 2023 -0700
actually add processed tag to frontmatter
commit 041a4ce7bc39c65483eaeeddc97e6946cb49f540
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jul 24 00:04:01 2023 -0700
fix watch-mode batching
commit 569ff1a801f92c0761b5ddc9dbff52833b193c94
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 23 21:53:34 2023 -0700
npm i on quartz update
commit 351b4ab13be6b1e43eb286ffac2646d0479ba678
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 23 21:41:09 2023 -0700
styling fixes for stacking order and overflow
commit 4811500b1b9c169aac82254d771677cd6dc2a86c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 23 18:20:43 2023 -0700
make component resources a proper emitter
commit 236ba56be17f53f701fcfc6ca81b867defa433bd
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 23 17:59:44 2023 -0700
version bump, update doc
commit 7c2bb4ee4c4ee4d6abc8f7f3757d40c039a1bcac
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 23 17:58:35 2023 -0700
bundleinfo flag, minify scripts
commit 8fd75ffbfda30edd5a134a1fbf9b81ac3cebb2ff
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 23 17:42:00 2023 -0700
support attachments folder
commit 55a1fb8c41b6a34cc5cdfc5ec2533ed1f642211d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 23 17:09:12 2023 -0700
format
commit 9e83af04a78d5988bd517bcc61c48998bbfa17ef
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 23 17:07:19 2023 -0700
refactor static and asset emission to be actual emitter plugins
commit 000eb4c3c0ce6451702202824b49f609a45ab6f6
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 23 15:37:06 2023 -0700
update feature list
commit 5599eb590e1b9163d41847153545764ed9b02ff6
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 23 14:02:57 2023 -0700
feat: process tags in content
commit ae2e3b463a91d94caa8bdf62e5c3a3d726b8b4e4
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 23 11:49:26 2023 -0700
improve error handling while serving
commit fd7c33c5372dd61283fc44f4dccbff0e71fcbf5b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 23 11:19:15 2023 -0700
style fixes for search bar and title on mobile
commit 76fdb3b4d8f2060cf742911d28c0654fe7280609
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 23 11:04:20 2023 -0700
fix styles
commit 27a5f7ef8ef0b52ade767138ebd1e202f8b66476
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 23 11:02:45 2023 -0700
various typography and styling fixes
commit ab228748abb85474a1c1f5f9410ad8e1167e2c23
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jul 22 17:42:13 2023 -0700
oops actually use npm run check
commit 76fa9bbe00eba4249b12ef7c86ccdac4faa6051f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jul 22 17:39:10 2023 -0700
run prettier on ci
commit 7db2eda76cf51fd631d385c12a7b411339406067
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jul 22 17:27:41 2023 -0700
run prettier
commit 2034b970b649b37347921842b5223a7274e34d89
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jul 22 17:26:03 2023 -0700
configure prettier
commit 8dd73704e6e95254d2addf51fede6329f90796b8
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jul 22 16:06:36 2023 -0700
hot content reload
commit b7966ff7fa2829ac9d128f1d560a2b98149514ac
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jul 20 21:51:55 2023 -0700
update features list
commit 01d7d8e55448abe0a929d8730c735bed5d929048
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jul 19 23:03:59 2023 -0700
fix tag pages to emit to tag/index.html to override content and folder pages
commit 83d47f7aaa247371ad8a51b8d5245afe8f4af620
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jul 19 22:00:44 2023 -0700
rename github action
commit 76c092dcf20959bc52fcb13b28cee50cd4217e40
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jul 19 21:59:48 2023 -0700
add custom.scss
commit 410fc9c8d37b0c4118c70678db5d2e55a842f486
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jul 19 21:59:39 2023 -0700
quartz update and quartz sync
commit 8e0ba45789a81ee28f6c67468f7fcf9ea45832db
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 16 10:39:35 2023 -0700
add link resolution prompt to quartz create
commit f82282367efd41192716fbb89e5a8756ff73bd5a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jul 15 23:33:06 2023 -0700
treat _index as index
commit a3e4c86a4cf18e31fe5b65d57ce120174c9f6aee
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jul 15 23:05:17 2023 -0700
fix ci, disable strict path type checks by default
commit 3ac6b42e16dca5a44ed3fec2c0314f1dbbc2322b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jul 15 23:02:12 2023 -0700
finish path refactoring, add sourcemap + better trace support
commit 906f91f8eed5e91a7afae95c7002a3e4553d6aae
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jul 13 00:19:35 2023 -0700
base path refactor, more docs
commit 08f8e3b4a4879dd7c91c16fbce80c4f2bc5e357f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 9 19:32:24 2023 -0700
docs + various polish
commit b90590b9f487cdd49f019375fa5a09aad2e8ec1f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jul 8 14:36:02 2023 -0700
polish
commit b3480bdc49120010da8d2805df02cbf84ca08bdc
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jul 6 19:18:18 2023 -0700
fix styling for bullet points
commit 9cbacca2d4062e2b2e512f761ab580218c623b33
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jul 6 18:45:38 2023 -0700
handle dates as tags
commit 05d1ca01c39e18fa08776d4800e201abf8779f3c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jul 6 18:32:48 2023 -0700
handle string tags
commit f7bf4038dc7fcf3adc09697797da1c68c932eadc
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jul 6 16:56:30 2023 -0700
fix path parsing
commit 465804a389f77807f68ca048cf9d7fac1314d8c5
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jul 5 00:16:06 2023 -0700
basic docs, remove publish, add quartz create
commit 92ca78709227c6117797c52eada7d471bb4ba96a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jul 4 18:26:11 2023 -0700
fix default callout state
commit fe2852ff258eabfab49af98619c9b5b9f41e004c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jul 4 18:08:36 2023 -0700
update package
commit 974b0da3086d21aabf5ef1a3eefa50675c0d4e95
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jul 4 18:02:59 2023 -0700
folder and tag descriptions, re-enable relative pathing
commit 2a17431460770b3375b455815f503781f7448c20
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jul 4 17:14:15 2023 -0700
fix popover zindex
commit 38cff2d670ecf7fd325aaaf776a4c250a72cc661
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jul 4 16:48:36 2023 -0700
more visual polish, adjust colours and spacing
commit ab9da02c60c962128820e6874e6f07c98bc3dda7
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jul 4 10:08:32 2023 -0700
fix indexing causing main thread freeze, various polish
commit e0ebee5aa9b3646de722f139f1d8d15591df538e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 2 13:08:29 2023 -0700
various polish
commit 4c904d88aba14d0d153bfac364630ad61832a73d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jul 1 13:35:27 2023 -0700
rss + sitemap
commit ba9f243728cab171f86b40b9d50db485af272a39
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jul 1 00:03:01 2023 -0700
tag and folder pages
commit 24348b24a94c5f9ca285642b751e6798b92eedd9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jun 19 22:50:25 2023 -0700
fix: parsing wikilinks that have codeblock anchors, scroll to anchor
commit fd5c8d17d3b3cd0a13b0a21a2b78d85010e02e12
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jun 19 20:37:45 2023 -0700
basic search implementation
commit c4cf0dcb022ff826433b63b8ff68830bb8503895
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jun 18 10:47:07 2023 -0700
local and global graph
commit 8bfee04c8c6948a88114d53769d4bb89b8ec7bf5
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jun 17 16:05:46 2023 -0700
popovers
commit cb89cce183215f6a8edcb6d166875e2982586002
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jun 17 14:36:06 2023 -0700
basic left,right layout
commit b5877824500a19c721c93eedc59704db94487a94
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jun 17 13:08:06 2023 -0700
collapsible callout
commit 6d5491fdcbccfad7af6c6dcc63ce2f67abd3850c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jun 17 12:07:40 2023 -0700
collapsible toc
commit 917d5791acd6361c691902b445bdc4f7129ba3fc
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Jun 16 19:41:59 2023 -0700
modern toc tweaks
commit 9d2024b11c7c24ec8112b5019504fc44b4e1a297
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jun 12 22:41:42 2023 -0700
taglist, mermaid
commit 2bfe90b7e64839d8ec6319fe93b76472b0285114
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jun 11 23:46:38 2023 -0700
add config to components
commit 352075ae81a3304a7bfa2512ef69b1cdacb26c12
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jun 11 23:26:43 2023 -0700
refactor plugins to be functions instead of classes
commit b8c011410d6bcd6837f4efd6a3948196a0f7aeea
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Jun 9 23:06:02 2023 -0700
toc
commit 3a29f4c86ee7ed13fb8683b2728a856581e32de7
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Jun 9 19:58:58 2023 -0700
add custom spa solution
commit 59109a8c1d505f516d50d6b7f88cfe070bc1ca84
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jun 7 22:38:45 2023 -0700
add flamethrower router
commit 317cce9314ad78d90714dc55aa82a2c3dfa75d1a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jun 7 22:27:32 2023 -0700
generic quartz component for layout
commit dde36fa5589a362b60b7b72eb7793a3f133e159c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jun 7 10:52:53 2023 -0700
update gh actions
commit 1cb4dadf13913009660685b6f2c163c939e2a51a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jun 6 21:19:00 2023 -0700
codeblock copy
commit 0813f127a30b376c5d5552a8cdb6e5cad5969c38
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jun 6 20:58:26 2023 -0700
fix darkmode script load
commit 4d3579ca9876d3ca6612589d116c3a300a60b446
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jun 6 19:48:37 2023 -0700
darkmode scripts
commit 89e0311a98732201651a6a6c1eea3e9656e28fb2
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jun 6 00:00:38 2023 -0700
embeds
commit 700036e84c805ab0a59f88b368006a28a97b76d1
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jun 5 22:14:17 2023 -0700
callouts
commit 1406ee0f05dc688e1b7635d3ce14e63d1c42a973
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jun 4 13:37:43 2023 -0400
update spinners
commit 9ad89997a533744695b380b315f1f70293bb30c4
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jun 4 12:35:45 2023 -0400
multi-core builds
commit 4bdc17d4a11f0ba517c6d9124d296458332c536b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jun 3 15:07:19 2023 -0400
inline scripts
commit fcd81353f88b613e5e93c089e10e530d08695b3f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jun 1 19:48:38 2023 -0400
heading linking
commit 04eeb2d10c2bb8cac595a879446c1dcbfac4d6a6
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jun 1 19:05:14 2023 -0400
syntax higlighting
commit 42d3a7de1711bbd40a2b6857e3bf7ff17685f5d9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jun 1 17:35:31 2023 -0400
scss support
commit c1c46ad67e58884389fb59c17d81845fe0fbcad0
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jun 1 12:33:20 2023 -0400
obsidian flavored markdown support
commit 3636c052eb054d93a8a3ddfb9fdd873d5fe83a5d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed May 31 17:41:44 2023 -0400
link processing
commit 21c007e2fcf73fe4ef04dd07db7116afed46047a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed May 31 17:01:23 2023 -0400
rendering, link resolution, asset copying
commit ad6ce0d73fbd015e00e59ec30bda3cc8de777832
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue May 30 08:02:20 2023 -0700
plugin integration round 2
commit a757521313fb2c623d4dfda95eb97d3189bfe253
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun May 28 17:44:08 2023 -0700
base setup
commit 7b1da7a8456b0404ad4ebcb8afd523a6618439ff
Author: BSD-Yassin <103321053+BSD-Yassin@users.noreply.github.com>
Date: Thu Apr 27 20:12:56 2023 +0200
i18n: Update fr.toml (#313)
commit e482fa10970fd6a0c1c0ec836db84ba4187bc8f7
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Apr 6 15:06:01 2023 -0700
fix: graph and tooltip sometimes not showing
commit ba7a968881083b9d3b3b6ecd65df076e76bcb164
Author: Mattia Ippoliti <Ippolitimattia@gmail.com>
Date: Sat Apr 1 22:50:08 2023 +0200
fix: padding for empty title callouts (#308)
commit db27557aa307921cf035b7f62d9d9f2b452b1018
Author: Md Jawad Noor Asif <jawad.asif.bd@gmail.com>
Date: Thu Mar 30 17:14:06 2023 +0600
fix: search highlight not showing because for trailing slash (#306)
commit b7c305e0024ca78c1d9f9d7a5107ffc124c56ab1
Author: Mike Walton <walton.myke@gmail.com>
Date: Wed Mar 22 22:56:20 2023 -0700
adding myself to the showcase (#301)
commit 74fe4d6813dfce9760464141410b683bd8964d45
Author: Daniel Lazaro <daniel@dlazaro.ca>
Date: Sat Mar 18 12:20:56 2023 -0400
docs: Update link to callouts documentation (#300)
commit d6c31595b320562313010ca68002942ac951a069
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Mar 16 10:33:01 2023 -0700
deps: bump hugo-obsidian
commit aa5ab03d4ad6e7cb4d9efd3f9c177ebde7e4c4af
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Mar 2 09:14:29 2023 -0800
docs: update to account for github changes
commit ecba6071b899d62492c3970924bbf24c2ba951f3
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Feb 25 13:04:15 2023 -0800
deps: bump hugo-obsidian
commit 983efab94c31bb19b532e120f2f70f45f788b7c8
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Feb 12 16:46:11 2023 -0800
fix: recent notes partial sorting
commit 10e41743e5df81195479aa2dd3ba4d5fb5b1ebf3
Author: Dev Uni <wlwhsvkdlxh@gmail.com>
Date: Wed Feb 8 01:38:20 2023 +0900
fix: Bad UI due to head.html (#284)
commit bde44fadf20a1f91a466653f9552ce8bd658e2f9
Author: Simon Späti <simu@sspaeti.com>
Date: Tue Feb 7 09:16:15 2023 +0100
feat: Adding Twitter and Social image preview including description (#207)
commit 6885651f7b4504446b456a2e61a85f1b787b3873
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Feb 6 12:58:34 2023 -0800
feat: max-width for large screens
commit 7df2bb6f5e681ce3329e4faf6ac6cbcda7a3f14e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Feb 5 12:01:49 2023 -0800
fix: fix duplicate link click tracking
commit 11959de11ce76f0f47284b946a577481c0ffaeaa
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Feb 5 11:34:39 2023 -0800
feat: add more plausible events
commit a73aca8ed9c16915928206bad6fa0ccf4e9b2b8b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Feb 5 10:39:58 2023 -0800
feat: switch from GA to Plausible for analytics
commit 93610e232b366c6f6cb9695d4755fa578dc28aa0
Author: Adam Brangenberg <adambrangenberg@proton.me>
Date: Wed Feb 1 21:34:18 2023 +0100
feat: Remove leading slash of folders in graph view (#282)
commit 712dab5c8cd8933d9cdb63d4c833940c461a09da
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jan 31 11:00:28 2023 -0800
docs: remove broken links from showcase
commit 77b3907b23b6d453dd7bfa04e4cef6f28d68ca54
Author: Olivér Falvai <ofalvai@gmail.com>
Date: Tue Jan 31 19:48:20 2023 +0100
docs: Clarify Obsidian settings (#280)
commit 8fc63586c428f1d9dcb1e084c0d9a48802b15582
Author: herrwinfried <ozgurarslln@icloud.com>
Date: Sun Jan 29 23:14:11 2023 +0300
feat: Added Turkish translation (#275)
commit 24c9777a5202a9fc9a86525955ba08ec3b2dc6ec
Author: Apoorv Khandelwal <mail@apoorvkh.com>
Date: Sat Jan 21 10:01:05 2023 -0800
feat: Embedding multimodal assets (#274)
commit 7a8811a184c8bd6206ee041d6486b7e456d5a84a
Author: Quadrubo <71718414+Quadrubo@users.noreply.github.com>
Date: Wed Jan 18 17:25:01 2023 +0100
added the liveReloadPort as an option for docker (#272)
commit eb2f6aeca891135389e58da0016c60af1363df61
Author: chaosarium <38693485+chaosarium@users.noreply.github.com>
Date: Mon Jan 9 17:14:11 2023 -0500
Fix callout behaviour inconsistent with Obsidian (closes #168) (#268)
commit b78008532f09dce26018ea7ea544f0e40d36756d
Author: Md Jawad Noor Asif <jawad.asif.bd@gmail.com>
Date: Tue Jan 10 04:12:52 2023 +0600
feat: Added Bangla translations (#266)
commit c5b103c85feafa96d5e5ecc572b043331d4a6bd4
Author: Md Jawad Noor Asif <jawad.asif.bd@gmail.com>
Date: Wed Jan 4 09:10:25 2023 +0600
fix: fix unicode broken tags (#261)
commit 614a6222a1638c159d2ac9c005be5b2ddec78dd2
Author: Adam Brangenberg <adambrangenberg@proton.me>
Date: Thu Dec 29 16:43:41 2022 +0100
refactor: General performance/style improvements (#262)
commit dc4373789617a58d517eac59c3e60fabb47eafd0
Author: chaosarium <38693485+chaosarium@users.noreply.github.com>
Date: Sat Dec 24 12:10:59 2022 -0500
fix edge cases link processing (#258)
Fixes https://github.com/jackyzha0/quartz/issues/176
commit ea37486309409048681496fb2449c1182d0f44eb
Author: toof <toof@toof.jp>
Date: Sun Dec 25 00:38:49 2022 +0900
fix: fix misspelling (#259)
commit c1b0eafce668c0c7498a5875c23c074eeb71e842
Author: chaosarium <38693485+chaosarium@users.noreply.github.com>
Date: Thu Dec 22 13:34:21 2022 -0500
feat: Added simplified Chinese translations (#257)
commit ce5df837f5f6ed57f9e9f85439ee9a40ebf234dc
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Dec 3 21:03:12 2022 -0800
feat: latex in search results
commit 4cd6f7efdf9161f1a1c7ad381d5bc4f2828eedb8
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Nov 30 18:00:12 2022 -0800
fix: text highlighting
commit 5a7936e23af000d7cefbf2dcb2ba4c16f1f993dc
Author: Apoorv Khandelwal <mail@apoorvkh.com>
Date: Wed Nov 30 17:41:05 2022 -0800
fix: Replacing "internal-link broken" with link to asset (#232)
commit 5fd707714faaaac5c3d39ec056ff88446fcb3cc2
Author: Jon Erling Hustadnes <jonerling.hustadnes@gmail.com>
Date: Sun Nov 27 19:55:43 2022 +0100
feat: Added Norwegian localization (#242)
commit 717a13a580fb82063d40525bcc63cd1d36f5994a
Author: Filippo Andrea Sighinolfi <83777862+Sighi-04@users.noreply.github.com>
Date: Sun Nov 27 19:55:13 2022 +0100
feat: Added italian localization in i18n/it.toml (#239)
commit 5f3d4306997e87437b4c9de97aa9eed355133965
Author: Brendan Ang <53790951+bbawj@users.noreply.github.com>
Date: Mon Nov 28 02:53:52 2022 +0800
feat: add support for mermaid diagrams (#244)
commit 66f3e249fe90cba366a99fe08f0898af27fe59e6
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Nov 23 08:34:19 2022 -0800
fix: only run docker publish on main repository
commit e374e3abd42c1719ad1fdc6bd9c641efb2ddf954
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Nov 21 23:36:27 2022 -0800
fix: jump to search for operand
commit f08a76a738235d1ad8e0b17f74988386dcfd86cd
Author: SafEight <43656822+SafEight@users.noreply.github.com>
Date: Mon Nov 21 21:05:46 2022 +0000
fix: External links ending in .md don't get trimmed (#236)
Co-authored-by: SAF <saf@saf.saf>
fixes https://github.com/jackyzha0/quartz/issues/229
commit d80f6946c854365336062f71f0c922fb42beea54
Author: Morgan Gallant <morgan@morgangallant.com>
Date: Tue Nov 22 01:54:45 2022 +0900
fix: Semantic Search: Use Operand Beta API (#235)
commit 120d104230b1c762a57eb41240e18aee6c289c08
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Nov 20 15:14:48 2022 -0800
update config for search
commit e9aa6ae9e7ec1792b11ebcb6cac606c47ae3cf7d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Nov 20 15:09:58 2022 -0800
feat: docker docs, semantic search alpha
commit c12af32a5ade0240630ff3b9fc11d877d6a16825
Author: Apoorv Khandelwal <apoorv.khand@gmail.com>
Date: Sun Nov 20 17:03:53 2022 -0500
feat: Dockerfile and automated container build (#230)
commit de2b6b9a1b95cb6af7eb421d9a4de054e7e41315
Author: SafEight <43656822+SafEight@users.noreply.github.com>
Date: Sat Nov 19 21:17:55 2022 +0000
feat: Replace == with <mark> (#234)
Co-authored-by: SAF <saf@saf.saf>
commit 7f9f58860dc98038798e362e52c5d39c750858cb
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 19 11:18:57 2022 -0800
feat: allow enableToc to override default no TOC on a per-page basis
commit 151b9851d6828ef28ed75a40e12be01e421b94d8
Author: jet457 <abhmul@gmail.com>
Date: Sat Nov 19 13:10:41 2022 -0600
docs: add Abhijeet's math-wiki to the showcase (#228)
commit d56a58044dcc619f6e26674316e7c38fc8ace8c4
Author: saucecoat <43880196+saucecoat@users.noreply.github.com>
Date: Sun Oct 30 06:08:44 2022 +0000
Added German translation (#223)
commit 689201bfbde5bd48b001bfa2b54db6a1d5a4aa81
Author: Conor <hzk@konor.fr>
Date: Wed Oct 26 18:12:35 2022 +0200
feat: Add French translation (#221)
commit 9b72edcd9cce10d6064e4e8b2f61b7db2966515d
Merge: 8704edcc 0a602eda
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Oct 25 13:14:13 2022 -0700
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit 8704edcca2f14c8662affa5a730083949f3f5749
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Oct 25 13:14:06 2022 -0700
deps: bump ubuntu version (closes #218)
commit 0a602eda1bc0c5446dbbc2917b3c3dcd1ad99c6b
Author: Evan Cater <evan.ecater@gmail.com>
Date: Mon Oct 24 12:13:35 2022 -0400
fix euler's identity (#220)
commit 72571a75884a10cd78205d79a5e475e17a4d9451
Author: Javier Zaleta Martínez <94091554+javierzaleta@users.noreply.github.com>
Date: Tue Oct 18 19:25:55 2022 -0500
feat: Add Spanish translation (#217)
commit 3409a49f156263aa36ca866e0d2b0b16645c2162
Author: Charles Chamberlain <charlesetc@users.noreply.github.com>
Date: Sun Oct 16 12:43:43 2022 -0400
fix: Apply monospace style to all meta in a popover (#216)
commit 666ffebe90c04dc7fe064a98232538826af70738
Author: Pavol Komlos <62595149+plundration@users.noreply.github.com>
Date: Wed Oct 12 17:21:28 2022 +0200
Decode the heading id from split link (#214)
commit 8ea1525df40751af2702a508c3ecf2edf2d76107
Author: Seth <37915796+iSaluki@users.noreply.github.com>
Date: Mon Oct 3 19:45:54 2022 +0100
Add SethMB Work (#203)
commit dd11d56dd986c82914ce529fb43c8e2beb78a094
Merge: cd7e2088 169ef442
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Sep 23 10:17:34 2022 -0700
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit cd7e2088d564023b073a458282e3a63b7a108c0b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Sep 23 10:17:28 2022 -0700
feat: hide TOC when no headers (closes #204)
commit 169ef442b9ae1a61af516edc5c90ff0299d91a25
Author: Simon Späti <simon@airbyte.io>
Date: Wed Sep 14 19:05:51 2022 +0200
Adding reference projects (#196)
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
commit 8e3042df4901885b051300c5ae2131bdcc613a57
Author: DongDong Chen <cdd2zju@gmail.com>
Date: Thu Sep 15 01:05:20 2022 +0800
add my showcase : oldwinterの数字花园 (#192)
commit 2145e92b004909070bd4a20d0f9fd1c0ddc70756
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Sep 12 11:08:07 2022 -0700
fix: make latex rendering size more simialr to obsidian
commit e6c7a4e1e2e3b0437b5dbbbeb7abc4e05622db16
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Sep 11 18:03:55 2022 -0700
fix: latex rendering bugs + patch for #195
commit ca84da5b31fa00ca6c729a9b500efeb28f90b41b
Author: Nikola Georgiev <42315052+nikolageorgiev2000@users.noreply.github.com>
Date: Mon Sep 12 01:05:14 2022 +0100
feat: Hide full path to file in Wikilinks by default (#195)
commit 0d1670adbaa63e4972bd560efd3c046eb03e48ca
Merge: 5c770f96 ce55eca7
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Aug 29 14:23:19 2022 -0400
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit 5c770f965a6af0d40926640d957e7841f71b908b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Aug 29 14:23:04 2022 -0400
Update Quartz version in documentation
commit ce55eca73bdfc6c043137dcbd7a2bda24cfce9af
Author: Andrii Yefremov <56955307+decatetsu@users.noreply.github.com>
Date: Mon Aug 29 21:15:18 2022 +0300
Add Ukrainian translation (#191)
commit 591c4813ec8ee700caa45253464290d315d57603
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Aug 28 01:09:52 2022 -0400
deps: bump hugo-obsidian version
commit 83e7aec3c9dca4dba4b25605f5c88a7a3cecf386
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 24 00:45:08 2022 -0400
fix: tag list styling
commit 25ba1159ad5cabfe79c80a40ead158c389a68bef
Author: Youssif Shaaban Alsager <ysh-alsager@hotmail.com>
Date: Wed Aug 24 05:32:40 2022 +0200
feat: Add internationalization (i18n) support (#182)
commit e38eaa94d6d0d91486bd3b778102658a36ee254f
Author: Vincent Huang <vincenthuang75025@yahoo.com>
Date: Sat Aug 20 20:31:06 2022 -0500
Popover preview should show relevant heading (#180)
commit a78926ede5a951b2ba48e506c93d25060e240c0e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 11 11:42:16 2022 -0700
feat: link previews to page-list (closes #173)
commit 5c76d8dad9d993010c4e57c6de4e90911a3cd11a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Aug 5 11:08:52 2022 -0700
fix: make callout detection case-insensitive (closes #171)
commit 3dcc1f1106c1ad81cf6cd0a45f51249d719d694f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Aug 5 11:04:01 2022 -0700
feat: better graph scaling (closes #170)
commit ff770927fdbb13e07572b3993686686da4493cc9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 4 14:50:24 2022 -0700
style: _callouts.scss simplification (#169)
commit 7ffc907907b14722bf691d1cbd5f178c1c0943a6
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Aug 3 23:46:55 2022 -0700
fix: CJK search (closes #163)
commit 6dd4c64a4c09eed71718fe67491dda95f286d345
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Aug 1 07:59:49 2022 -0700
fix: highlights being stripped in non-semantic search mode
commit 8fc6b8e28ebd08eb05aea80e602b9f279f660b5b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 31 18:21:17 2022 -0700
docs: update, re-added debounce
commit b10b23a47bb822bc3eee671d24fd954ec8d74a7d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 31 18:02:06 2022 -0700
docs: add documentation for Operand Search, remove debounce
commit 23380d0519365d09cb629a66fe2ccba1c56e91f2
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 31 16:55:25 2022 -0700
fix: title not being selected properly, bump hugo-obsidian for uri fix
commit dd047305afa0618d2a5cd11baec064a1c74ccb90
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 31 12:33:36 2022 -0700
deps: bump hugo-obsidian to fix bug of writing to non-existent directory during build
commit 54a8fd4a563bd3de815aaae2c9d9efd57e65be22
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 31 12:24:53 2022 -0700
deps: bump hugo-obsidian to properly copy linkmap
commit 5ef9aad501f17b57107a35508a093211ecf2dbd8
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 31 12:16:36 2022 -0700
feat: add support for semantic search using operand
commit 14b89105dc10eeb3b9b48abf16eda2b9420c64a0
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 31 10:54:23 2022 -0700
refactor: move search utils to util.js
commit 93d039fe7cf14246477844aa1b116585a260003d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 31 10:14:36 2022 -0700
deps: bump hugo-obsidian version
commit 234c707a93e1dbe438d0a45f1348cc6c39e2a265
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jul 30 18:46:19 2022 -0700
docs: improve scss structure and admonition styling, update docs
commit 728d8529ec1a782752abd9254fbc4cae11b8468a
Author: Emile Bangma <ewjbangma@hotmail.com>
Date: Sun Jul 31 02:29:26 2022 +0200
Support Admonition callouts (#166) (closes #88)
commit e142f37e8dea7f6f502026cc35ea02390be63556
Merge: d747b19e 1f3da4b8
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jul 19 09:03:26 2022 -0700
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit d747b19e6104def4b550d86b2ce6ce923773d8ad
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jul 19 09:03:19 2022 -0700
docs: copy edits
commit 1f3da4b8292a7c2ef7eafe9b3a00ef40eb30edac
Author: Pranav M <pranavm7@outlook.com>
Date: Mon Jul 18 11:45:36 2022 -0400
feat: edit the clipboard button to change border colour on success (#162)
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
commit e15e39155de54dc1624bab80eefbccd6a783cd0c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Jul 15 14:26:31 2022 -0700
fix: give precedence to date created over last modified if defined (#101)
commit dff5ae0d4debfdb2de226984e86a987d99d039ad
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jul 14 13:09:21 2022 -0700
style: improve header anchor styling
commit b2555ced61628008e9a1321921376c3f9fb53791
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jul 14 12:02:35 2022 -0700
feat: add description section to section/term/taxonomies, fix header margin
commit 7ccff2cf3d4f7a96be2cf890093798067951fd2e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jul 14 11:49:47 2022 -0700
fix: styling on page-list for smaller screens
commit e0b6606d500e69cc52715729f075808de90f376b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jul 14 10:38:34 2022 -0700
fix: make section-li scss more generic
commit d7a42a2fd7919ac37ff98be31edc34c3511d255f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jul 14 10:30:07 2022 -0700
feat: improve styling for lists, fix anchor offset
commit 422b6cc25bec38785e52f304261f7a7f392ec9e4
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jul 13 23:51:33 2022 -0700
feat: css typography improvements
commit 22c8981bb9a97743f02ab5d5feabda7ff5a6afc4
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jul 13 23:37:54 2022 -0700
feat: css refactor for easy font change
commit 8b2a82a96a2c7c3f40fd5648c756db3408947fdb
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jul 13 22:27:13 2022 -0700
fix: change / to use base url
commit 81af8c459bc9924b8c7137aee9385ed5f5deeb3c
Author: y1450 <107429941+y1450@users.noreply.github.com>
Date: Thu Jul 14 00:02:11 2022 +0200
fix: remove console log (#159)
commit ffe22689eb43f42afc2d6bcf9b8b190b19a7e5d1
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jul 13 15:01:50 2022 -0700
feat: use floating-ui for better popover positioning
commit c1b8fe1221e3367f0632ce43f602e811c0fd0284
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jul 13 14:32:32 2022 -0700
feat: restyle search icon
commit b7a619bbd73f9220f8c1fcbad203792c78343464
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jul 12 14:37:10 2022 -0700
fix: tabsize not being respected
commit 74993d19b72aee78e89b0b13b8f1d4a72fe5fe29
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jul 5 15:42:57 2022 -0700
docs + fix: broken partial and description of enableGitHubEdit
commit 25a4d3b6e17c2a5f6a935446ea97d06a323f71f6
Author: rphla <101242699+rphla@users.noreply.github.com>
Date: Wed Jul 6 06:39:29 2022 +0800
Add GitHub "edit" button (#157)
commit aaf31f419eb167dbb7582fb103be29f0bef95ba9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jul 3 11:50:13 2022 -0700
fix: copy code block logic for non code pages
commit f54df35767dcda9bc4853decff86d57323593685
Author: Geoffrey Garrett <g.h.garrett13@gmail.com>
Date: Sun Jul 3 20:42:35 2022 +0200
Copy to clipboard feature for code block (#152)
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
commit 015ed4cfa2db4636e03debcda0d4201f24346098
Author: Aiden Bai 白宇彤 <aiden.bai05@gmail.com>
Date: Sat Jul 2 19:40:18 2022 -0700
Fix `width: auto` for SPA routing (#156)
commit a8137edf247c46ef3a5af78c48bcd299a13c1a7d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Jul 2 17:14:17 2022 -0700
fix: adjust weird colours for err highlighting
commit eda370334a3798070c2f79ec38021edb3b33a84f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Jul 1 11:27:50 2022 -0700
fix: image scaling for md-style links (closes #155)
commit d3e20b8b94c9229e94fccbe54c867efde6847c6e
Author: Geoffrey Garrett <g.h.garrett13@gmail.com>
Date: Fri Jul 1 20:03:52 2022 +0200
Added optional rendering of code block titles (#148)
commit 8d7a7b712f5a4ee49e3687de8fb00f76d7571368
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Jul 1 11:02:42 2022 -0700
fix: non-SPA fn defs (closes #154)
commit 0896814959e912cabaf9ec83bc0a3eb77d152842
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jun 29 17:35:29 2022 -0700
docs: remove test image from hosting
commit 8b2fba895aa804e895eaa02a622f318113a35663
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jun 29 17:34:05 2022 -0700
feat: image scaling (closes #131)
commit e884f4927f3e48285ca6689507f5e0f61072de04
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jun 29 17:17:53 2022 -0700
fix: anchor formatting (closes #141)
commit 2b0482ae4c5ef7d5c7cc5d33419c1fb440c0238a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jun 29 17:03:41 2022 -0700
docs: fix page weight
commit 8a100edeb81382dc838f600ee1b8dbd3e7560e37
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jun 29 16:57:36 2022 -0700
docs: polish and update
commit 200c60514207d7970968e31740797fad76f56ee7
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jun 29 16:16:06 2022 -0700
feat: enable raw html by default (fixes #143)
commit f2078ee621b7137c49b176156ff70ddb5359d5a8
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jun 29 16:12:33 2022 -0700
fix: prefix images with base url for non-root quartz
commit 916c51c19c3aa5406cf1d5062f10a0b858f487cc
Merge: 72941965 67a7ba37
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jun 28 23:21:25 2022 -0700
Merge pull request #150 from aidenybai/bump-million
commit 67a7ba37e899ca0555fa37e159af6d599cf468ee
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue Jun 28 21:43:28 2022 -0700
Bump million to 1.11.3
commit 72941965abc135f8df28b47a90a7b2965fb075bd
Merge: 34b03537 b732293f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jun 27 16:27:57 2022 -0700
Merge pull request #146 from geoffreygarrett/hugo
commit b732293f65999e9a1d3a40a5ddeccf53a385b1f3
Author: Geoffrey Garrett <g.h.garrett13@gmail.com>
Date: Tue Jun 28 01:21:22 2022 +0200
fix(head.html): Adds robustness to `config.yaml` favicon definitions
Initially assumed that `href` definitions should have `/...` as their
pattern, and `baseURL` would always end with `/`, however the omission
of `/` as the prefix of the former and suffix of the latter
simultaneously, would result in broken favicon paths. Final comment:
`..///...` is not breaking, which is worst case scenario with this fix.
commit 7070a1992a6c9462d50afcc7139f8f97e1dce2b8
Author: Geoffrey Garrett <g.h.garrett13@gmail.com>
Date: Tue Jun 28 01:15:33 2022 +0200
docs(config.md): Fixed multi-favicon examples and general favicon explanation throughout
commit 997937af5a6dc317da56ae294dce927ec5930a4b
Author: Geoffrey Garrett <g.h.garrett13@gmail.com>
Date: Tue Jun 28 00:45:48 2022 +0200
docs(config.md): Added short explainer on favicons
commit a334b45b17f0966214d44a5b775c273e1ba7874b
Author: Geoffrey Garrett <g.h.garrett13@gmail.com>
Date: Mon Jun 27 22:05:35 2022 +0200
docs(content/notes/config.md): Adds documentation for the new favicon support
commit 473ea2c66f9122cec2647c281ca47cc073ca5fd0
Author: Geoffrey Garrett <g.h.garrett13@gmail.com>
Date: Mon Jun 27 22:04:32 2022 +0200
feat(layouts/partials/head.html): Adds general favicon support with dict and string input format
commit 34b0353797a0d24c309139034918ad2060f504f5
Merge: dbd4fb75 52a185f7
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jun 7 08:43:52 2022 -0700
Merge pull request #140 from DhammaCharts/hugo
commit 52a185f73b18d8e5a564c2144401de750b0e025a
Author: DhammaCharts <100090806+DhammaCharts@users.noreply.github.com>
Date: Mon Jun 6 16:49:01 2022 +0100
change enableGlobalGraph to false
commit 69c74ca6b5854cbb3e7dd895dca0539f51f49720
Author: DhammaCharts <100090806+DhammaCharts@users.noreply.github.com>
Date: Mon Jun 6 16:48:16 2022 +0100
minor adjustment
commit ab809249c8f57c1980de2fa850eef66301619307
Author: DhammaCharts <100090806+DhammaCharts@users.noreply.github.com>
Date: Mon Jun 6 16:42:53 2022 +0100
Update layouts/partials/head.html
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
commit 84c75d05460dd2974ff04a43f6a770fc31deca63
Merge: a275123b dbd4fb75
Author: DhammaCharts <100090806+DhammaCharts@users.noreply.github.com>
Date: Mon Jun 6 12:56:47 2022 +0100
Merge branch 'hugo' into hugo
commit dbd4fb7595055551118e7dab59a11459bcdc3d9b
Merge: 84c6e1ef a1293f82
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Jun 3 10:59:18 2022 -0700
Merge pull request #139 from aidenybai/prerender-latex
commit a275123be2b1d528dbde23beb9880933c4e22c3e
Author: DhammaCharts <100090806+DhammaCharts@users.noreply.github.com>
Date: Thu Jun 2 08:35:28 2022 +0100
better font behaviour
commit c88f31c3645bb0002171bf21850c7ca6d217c73f
Author: DhammaCharts <100090806+DhammaCharts@users.noreply.github.com>
Date: Thu Jun 2 08:16:02 2022 +0100
change to object destructuring for drawGraph() arguments
commit d261655d96f9ed084a176ed113b0d11f1351c6de
Author: DhammaCharts <100090806+DhammaCharts@users.noreply.github.com>
Date: Thu Jun 2 07:49:09 2022 +0100
remove unnecessary ternary
commit c0800a874980ab0f24fc2e350d70792d9c7f2956
Author: DhammaCharts <100090806+DhammaCharts@users.noreply.github.com>
Date: Thu Jun 2 07:45:44 2022 +0100
change baseURL back to original
commit ac0dd50c048d68884b0ada42e3ab0476fb29ef65
Author: DhammaCharts <100090806+DhammaCharts@users.noreply.github.com>
Date: Wed Jun 1 21:30:40 2022 +0100
uncomment window.Million
commit e809896338b51e65ca862809e79884469476f2de
Author: DhammaCharts <100090806+DhammaCharts@users.noreply.github.com>
Date: Wed Jun 1 21:22:31 2022 +0100
increase scale
commit 19606ba63d15edd1e4a98bf1ce5cd510a24880e0
Author: DhammaCharts <100090806+DhammaCharts@users.noreply.github.com>
Date: Wed Jun 1 21:19:03 2022 +0100
add www.
commit 1e237ef677f3b958597460175269eed4b0638112
Author: DhammaCharts <100090806+DhammaCharts@users.noreply.github.com>
Date: Wed Jun 1 20:15:44 2022 +0100
change baseURL
commit 5a1fbc937470b4f43b318dd0fa9af01b4a47b188
Author: DhammaCharts <100090806+DhammaCharts@users.noreply.github.com>
Date: Wed Jun 1 13:49:27 2022 +0100
Improve graph display, options and ability to have a global graph on the home page, local graphs on subpage.
commit a1293f820a733978f1da8ebd13e676f46634f60d
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Sun May 29 20:40:44 2022 -0700
Prerender latex
commit 84c6e1efed856b2e03100e4cfd88f2d9cd44cb9c
Merge: 775a1b24 8673a7bc
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat May 28 23:27:54 2022 -0700
Merge pull request #138 from aidenybai/add-footer-config
commit 8673a7bc3d1061eb11381e8d7e85dd0d2e1fa64c
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Sat May 28 22:52:18 2022 -0700
Add option to toggle footer
commit 775a1b2490883e1eefa1c87f5477007365d694d6
Merge: cbc2bea4 006b74ec
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri May 27 19:21:05 2022 -0700
Merge pull request #137 from aidenybai/fix-non-spa-routing
commit 006b74ec6feed2d01099754c888bac4a9474a6b1
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Fri May 27 18:45:42 2022 -0700
Fix formatting
commit 8aba612a0013e84f0b3f9d60863c02ad1b0bfd6e
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Fri May 27 18:42:01 2022 -0700
Fix non-spa fallback
commit cbc2bea413ddf58c6316e49c45b5a5a55f4271e2
Merge: ba586adc ae240ff8
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri May 27 18:32:49 2022 -0700
Merge pull request #136 from aidenybai/custom-progress-bar-color
commit ae240ff82cd8de66c28b1608e72db6ed397cab13
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Fri May 27 18:31:36 2022 -0700
Remove redundant CSS rule
commit ba586adc76df6d75048a61e5dd529704496f6bda
Merge: 232bd2f0 159deabf
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri May 27 17:14:55 2022 -0700
Merge pull request #135 from aidenybai/bump-million
commit 159deabfe160c7570679269873f18776cb586437
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Fri May 27 16:14:17 2022 -0700
Bump to 1.9.6
commit 44984cdaf4dfca8c25e9b73066ee22c775ed6d2e
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Fri May 27 13:27:13 2022 -0700
Add support for progress bar
commit 683cb53cbd4d581a061b64a26da54285ef479e19
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Fri May 27 13:19:19 2022 -0700
Bump million to 1.9.5
commit 232bd2f016f7d57602fe39703407100f5d26f278
Merge: 0293c122 e0fd9570
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri May 27 11:01:20 2022 -0700
Merge pull request #134 from aidenybai/add-prefetching-within-graph
commit e0fd9570d746cb2aa270dbe64dae038fc02bdbac
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Fri May 27 09:49:28 2022 -0700
Bump million to 1.9.4
commit bc32bbeaed10eac3094fcaa899ca626dc8e56771
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Fri May 27 09:02:01 2022 -0700
Bump milliomn to 1.9.3
commit efb6c7845f0a2743dd07b81f1d03b03d058ede0d
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Fri May 27 08:40:00 2022 -0700
Add prefetch to graph
commit bd316d8249f096c4d5616d682f142f49d4ca914f
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Fri May 27 08:39:44 2022 -0700
Bump million to 1.9.2
commit 0293c122177bf8c595cda8b4dfb513d90b1e6b03
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon May 23 22:25:13 2022 -0700
feat: recent posts section/partial
commit 0439c163a03fc50487fbe1cbfc09dc38af7ed2f2
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri May 20 16:50:56 2022 -0400
fix: js not executing if spa disabled
commit 0b6711c2185abbde7e95125b672ee8b5d827cb8b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat May 14 16:47:50 2022 -0400
fix: tag boxes overlapping for content with many tags (closes #130)
commit ed9a8efd1ff4ee569fa4256e044151670abaea82
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu May 5 21:11:23 2022 -0400
fix inline link highlighting, safer latex render
commit e302f6c423136d1dbdfda48c2b241e62bb5654e7
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu May 5 20:35:32 2022 -0400
fix: more generic style to match bad nesting generated by popover interp
commit b21b27d1d3d68bfb4d285f39122a154fceefb9ab
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu May 5 20:30:55 2022 -0400
fix: clean wikilinks and render latex in popover
commit 364aee36fc8891c48ab2bd20c396ce321cd7a0a6
Merge: cea0f3eb 8b855b52
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu May 5 01:03:09 2022 -0400
fix: merge conf
commit cea0f3eb743b26db0d5297ab10e229617585fe0c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu May 5 00:58:50 2022 -0400
feat: contextual backlinks (closes #106)
commit 8b855b522ac472b666379743dafeace6ae37fb1a
Merge: b67a389b 7b3696b8
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed May 4 11:40:38 2022 -0400
Merge pull request #125 from aidenybai/fix-latex
commit 7b3696b877c33f8dc605be1f4f4a688fe0df5b84
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Wed May 4 08:39:25 2022 -0700
Remove pnpm debug log
commit b4ff12ca0b1b5179c20a1ea57f182caa703b0826
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Wed May 4 08:10:59 2022 -0700
Fix latex
commit b67a389beacfade21276461f3e275c07969664e5
Merge: a0997444 2b5c03c9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue May 3 13:59:02 2022 -0400
Merge pull request #124 from aidenybai/hugo
commit 2b5c03c97286e06e94e8a27634678e64473a2ec8
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 10:55:45 2022 -0700
Remove redundant URL construction
commit aaed5dc1f1849a54869743596a6133548e83392d
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 10:54:39 2022 -0700
Support /path root sites
commit 1a5d158fce648492c48644acfea039261ac1dffa
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 10:38:41 2022 -0700
Support active node with other data at end of url
commit a09974446d5be617267c2e6ad8c956e88ce83176
Merge: 03742621 9fc71603
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue May 3 13:21:32 2022 -0400
Merge pull request #123 from aidenybai/fix-popover
commit 9fc71603ba3fb58239e7c2647c92996076442900
Merge: d38f9bec 3789df80
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 10:18:41 2022 -0700
Merge
commit d38f9bec70c7e46d9e7662ba3925abc9cdd9370a
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 10:16:09 2022 -0700
Rename API and generalize router API
commit 771ebd8031819dcaf9e3d6744643677e30c14b64
Merge: e4cc625c 03742621
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 10:07:38 2022 -0700
Merge
commit e4cc625c33ecd2992dcf60f408417c3067b4fa2b
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 09:34:27 2022 -0700
Add future note about init function
commit 3789df80e437f9e31560e7eed14e33d80e5ff3a0
Merge: 32c79a56 03742621
Author: Aiden Bai 白宇彤 <aiden.bai05@gmail.com>
Date: Tue May 3 09:33:00 2022 -0700
Merge branch 'hugo' into fix-popover
commit 037426217c5bee94f7c619f62e63d71c1f31b5bb
Merge: 6e6dd4cb e646cdb0
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue May 3 12:29:26 2022 -0400
Merge pull request #122 from aidenybai/fix-active-graph-node
commit e646cdb0be7977f31fa1d619a5b9125875c73475
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 09:27:25 2022 -0700
Use explicit regex for trailing slash trim
commit 8d092a3a4aca9561f3ac852e01518f48c8ef68fe
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 09:22:51 2022 -0700
Remove unnecessary 'url' argument in graph.html
commit 32c79a561fa82dbf6537b96e83ab3da2a848b211
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 09:21:44 2022 -0700
Remove unnecessary 'url' argument in graph.html
commit 3c660dd9b5f9e1133bc8a1228287508504b7c132
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 09:20:01 2022 -0700
Remove unnecessary 'url' param in drawGraph
commit 4cca3c1f2df91ba7bb111346447279087e04069a
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 09:04:15 2022 -0700
Peg router version
commit 9d3bbd607687899d173e9087f2782d7460ebee82
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 08:53:18 2022 -0700
Fix active node on graph
commit 9c71f07355d8e98478e755875e53596f66c58fa9
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 08:48:35 2022 -0700
Enable config for testing
commit 77485b754dbb3d08e437b4157f3eafb5871624b9
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Tue May 3 08:47:42 2022 -0700
Fix popover
commit 6e6dd4cb0b396ae7ec4f273bccd254bc0f9885d5
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue May 3 10:57:20 2022 -0400
fix: trim trailing slash when calculating popover
commit 81fe2d24936ad4b783f41b260b4a4801bacb654b
Merge: 24d08d58 321e19dc
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue May 3 10:44:56 2022 -0400
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit 24d08d580d61363faab495a8a022248a7499dc26
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue May 3 10:43:22 2022 -0400
cfg: make SPA optional
commit 321e19dc415a316c71ba50e11ab0428bda92b0e6
Merge: 12d33619 97607c3c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue May 3 09:48:50 2022 -0400
Merge pull request #121 from benbohmer/patch-1
commit 12d33619a28a2e1a27fca109e3ba966bef65ebab
Merge: fc89ff26 4197ad46
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue May 3 09:47:48 2022 -0400
Merge pull request #120 from straightupjac/fix/github-info
commit 97607c3ca5ac837f7f6bc7a048b72a8271fbd570
Author: benbohmer <103453816+benbohmer@users.noreply.github.com>
Date: Tue May 3 09:10:45 2022 +0200
fix: keep / at end of URL to avoid redirects
Removed strings.TrimRight "/" in line 10 to keep the trailing slash at the end of URLs in regular links. This avoids having every single internal link being a 301 redirect.
commit 4197ad460afd96ab508d421939b92f80bbcdc5ca
Author: straightupjac <jdc.jaclyn@gmail.com>
Date: Tue May 3 01:51:15 2022 -0400
fix github info
commit fc89ff2680977dbaf1dabb91be01ad2b84903d8a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon May 2 13:00:41 2022 -0400
fix: broken semi and graph min-height
commit e9a33c04b5efcf01e9ba5a5bb1ec6619ea510122
Merge: 9ba0a4b3 b0e15e0c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon May 2 12:56:44 2022 -0400
fmt: remove semis for good
commit b0e15e0cbc445e12e3aabfe90ee2fc6bf2c33782
Merge: 66304da0 f1b85fb6
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon May 2 12:19:26 2022 -0400
Merge pull request #118 from aidenybai/add-router
commit 9ba0a4b34fa2e4993b8be021ee79d10d2674eba4
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon May 2 12:14:51 2022 -0400
fmt: remove semis :)
commit f1b85fb6d9612d9c9d5293e27e489576800ed219
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Mon May 2 09:10:40 2022 -0700
Fix clarification comment
commit 66304da027e35abff31f05e5a895ebca52976ccb
Merge: 416dc0b8 87144fca
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon May 2 12:06:57 2022 -0400
Merge pull request #119 from aidenybai/add-prettier
Add prettier config
commit 40d216759cb88e101aac06a7c02070336d2907ce
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Mon May 2 09:05:02 2022 -0700
Expand template
commit 5c602ab16f1f5e46bee5f44cec15860f785039ee
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Mon May 2 09:04:36 2022 -0700
Add clarification comments
commit 87144fca212b25093adbf743014d5c0d5b1d9c0d
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Mon May 2 08:57:25 2022 -0700
Use semi: false for prettier config
commit a9523dd39bf931e491750bb832dd13678e0e0c0d
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Sun May 1 22:08:14 2022 -0700
Add prettier config
commit bcb166c21cf4cf6d923608c12729373cf926eddb
Author: Aiden Bai <aiden.bai05@gmail.com>
Date: Sun May 1 22:06:33 2022 -0700
Add router
commit 416dc0b85cabfbb1dced0262b11256fa258f5ee9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Apr 30 13:13:30 2022 -0700
fix: add update for local hugo-obsidian on make update
commit b8a660e208333ea8ef4998c2f815411f12ce7067
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Apr 30 13:10:12 2022 -0700
feat: copyable header anchors (fixes #86)
commit ec86cca97bef277a3b3a84580c4164ce721a92a4
Merge: 87b5a7a2 f7027e7e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Apr 28 15:53:57 2022 -0700
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit 87b5a7a2519c70b6f6e678c6b86a3aefc4dd3218
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Apr 28 15:49:16 2022 -0700
feat: show graph titles on zoom (fixes #92)
commit c8d390dbc5a749af533f1ec05de2d5b6f37fa156
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Apr 28 13:45:29 2022 -0700
fix: always hide popover on mobile (fixes #104)
commit 3c7ece5405436c85282f156cf387b11d08cc2d87
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Apr 28 10:48:31 2022 -0700
fix: append trailing slash, fixes #111
commit f7027e7ecd26abe2a99ea1bb280808a4294bb4f2
Merge: f05ff5e6 0cfd93c5
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Apr 20 09:20:21 2022 -0700
Merge pull request #108 from exu3/patch-1
commit 0cfd93c57cdb31c0f0c48bddb407158ea2e0d7db
Author: Ella <git@ella.cx>
Date: Sun Apr 17 02:11:17 2022 -0700
Fix another typo
commit 3f8c47367830f9686b91c2c32158940de4c65466
Author: Ella <git@ella.cx>
Date: Sun Apr 17 01:33:16 2022 -0700
Fix typo: recomment -> recommend
commit f05ff5e62d5e2720a05cc3cde33f110686ab5268
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Apr 5 23:19:33 2022 -0700
fix: add dropshadow to popover, cleanup animation
commit 12ed9722d80e2ae517ac0face184339f07ae10fd
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Apr 5 22:43:11 2022 -0700
fix: popover selection wrongly including line breaks
commit 887d4d4f5ecb21e436f9a0c88cc690fc245c9747
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Apr 5 21:40:59 2022 -0700
deps: bump hugo -> v0.96.0
commit f9c7cdf928e8068532d2630336a7b08d5085548e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Apr 5 20:44:39 2022 -0700
fix: check for src before attempting to add popover
commit 2d55b6ac2e0580ee8f831e46065fc94db7c9d687
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Apr 5 18:07:40 2022 -0700
fix: missing whitespace chomp in link render hook
commit d5884aedb7dcd4e7711e53b7b462d1ac0bbc242e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Apr 5 14:14:19 2022 -0700
fix: wikilink patch not applying to transformed text like apostrophes
commit 66eaa444a41d1bd87bb1f28f9786412db6e7e274
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Apr 5 14:08:36 2022 -0700
fix: wikilink image relURL for images with spaces
commit 0ddc48a4529a06b48e10e0917c815d99220eebd3
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Apr 5 13:47:24 2022 -0700
fix: wikilink-like text in code fences #95, #97
commit cd19159c53a5f774275edc72bdc9bcb679b77242
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Apr 5 12:47:28 2022 -0700
feat: wikilink img support
commit 7808c66c4dd64ee1a4dc0255533a74f2996ab957
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Apr 5 09:41:13 2022 -0700
fix: align footer links
commit a7abc6ab96002d103e5e349f345d4108550256f5
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Apr 5 00:09:56 2022 -0700
docs: make update command and clarify update steps/potential danger
commit 9509a64354f40981ec0efccb7dda0c1c5da2c190
Merge: 53242b1e 3ce6944c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Apr 5 00:02:48 2022 -0700
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit 53242b1e5742d0730515b6e104ee626dfd5a14f2
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Apr 5 00:02:37 2022 -0700
add update target to Makefile
commit 3ce6944c189097cfde3415434cf33b56b3ceaf41
Merge: e2455050 3583265f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Apr 4 23:56:28 2022 -0700
Merge pull request #93 from meleu/patch-3
commit 3cec4fd950f69762daf7f44c46619cd31b1fc61e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Apr 4 23:30:28 2022 -0700
update screenshot
commit e245505082eedb720873e20331c36952ded67d09
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Apr 4 23:25:24 2022 -0700
feat: hide toc for short notes
commit fc4b9ded76c31ef940e281d9c1bfda850df23d5d
Merge: 3781b677 27c4761f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Apr 4 23:20:43 2022 -0700
Merge pull request #94 from meleu/patch-4
commit 27c4761fe01433b971ba6c2f67af3f003df56aed
Author: meleu <meleu@users.noreply.github.com>
Date: Mon Apr 4 20:15:40 2022 -0300
link to home goes to baseURL
commit 3583265f80afa081bf7a1fe996a9b3fe3c4e32e0
Author: meleu <meleu@users.noreply.github.com>
Date: Mon Apr 4 17:30:23 2022 -0300
docs: warn about possible lost of customization
commit 3781b67707ed9992a5aec843dc5ede7c2cb8a608
Merge: 1613511f 671fe053
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Apr 4 13:08:42 2022 -0700
Merge pull request #91 from meleu/patch-2
commit 671fe05312ded0e96ba16140290a375c51c975ba
Author: meleu <meleu@users.noreply.github.com>
Date: Mon Apr 4 17:07:43 2022 -0300
padding and border-radius matching bottom cards
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
commit 1613511f393fe9460937e7e88cc731d269bb6621
Merge: acab4887 575288ec
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Apr 4 09:45:05 2022 -0700
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit acab488784b52edfb176c5a455580abeb142324f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Apr 4 09:44:58 2022 -0700
re-add obsidian file
commit ff91dcd196d71356b021ec9d381767e7c38b0756
Merge: a287d112 575288ec
Author: meleu <meleu@users.noreply.github.com>
Date: Sun Apr 3 22:14:12 2022 -0300
Merge branch 'jackyzha0:hugo' into patch-2
commit a287d11246cc0c18a9bf4435bddffc9e163e64fd
Author: meleu <meleu.dev@gmail.com>
Date: Sun Apr 3 22:12:55 2022 -0300
add a collapsible ToC
commit 575288ece94d2093bda7467be1a25092bab9c366
Merge: 25b5ac43 1d9c0e4a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Apr 3 17:57:46 2022 -0700
Merge pull request #88 from meleu/patch-2
commit 25b5ac43ddbf9899e9a11b4ad8083a4c66bcf637
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Apr 3 17:43:37 2022 -0700
fix: favicon not showing on non-root domain #89
commit 1d9c0e4a44d4551b7d57678928600aed1428a243
Author: meleu <meleu.dev@gmail.com>
Date: Sun Apr 3 16:31:29 2022 -0300
use "enableToc: false"
commit e62d512d95bc52f3113cae5e3763665364fa7c72
Author: meleu <meleu.dev@gmail.com>
Date: Sun Apr 3 16:29:10 2022 -0300
disable ToC if frontmatter has "enableToc: false"
commit 8f15c5f8c1a0650d3c757f8cdf8ea12e4128ee97
Author: meleu <meleu@users.noreply.github.com>
Date: Sun Apr 3 16:22:32 2022 -0300
disable ToC if enableToc: false
commit efeaf9b49ccbc2e595277f6c558057e863e0ac8c
Merge: 91c4e3fb 22f11711
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Apr 3 11:44:39 2022 -0700
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit 91c4e3fb3a5d9e86e5fb513bb65da89d4b061b08
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Apr 3 11:42:42 2022 -0700
fix: multiline code block #87
commit 22f11711b2500b739e56ddb7d39660c4e8856be6
Merge: 16b177ce 5c3ef884
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Apr 3 08:17:13 2022 -0700
Merge pull request #85 from meleu/patch-1
Ah my git was being really weird with cases :')) thank you
commit 5c3ef884c78b190e5fc22e122d55af097d8bef3e
Author: meleu <meleu@users.noreply.github.com>
Date: Sun Apr 3 11:19:21 2022 -0300
duplicated file
commit 16b177ce6603db9bc242104c0ef5692e2832d3f7
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Apr 2 21:04:20 2022 -0700
README update
commit 14c6181d240e69f48f6a2548136613b2b0739720
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Apr 2 20:37:42 2022 -0700
bump hugo version v0.82 -> v0.92.2
commit e6e04c03c473175961e1d5f9c815c3671f237c8e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Apr 2 20:34:55 2022 -0700
fix latex misrendering
commit 146e975932a80634500720f88843041fdf62bfec
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Apr 2 20:21:16 2022 -0700
bump hugo obsidian, fix backlinks for subpathed quartz, update homepage
commit c117e38899a7e122fb4dee87f5d091e654e0939f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Apr 2 20:06:31 2022 -0700
feat: wikilinks implementation
commit 4fd983277e36e323675e2d77048fb3daaa016dc6
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Apr 2 17:38:39 2022 -0700
fix: cjk support + demo page
commit cc86136bcb4cc61219a8ee7573e792e6a6043dcd
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Apr 2 17:00:14 2022 -0700
feat: basic latex support
commit 8e083d4a93383214d5d020c925dc5d7b65cc04db
Merge: c51573ef 03b574b1
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Apr 2 14:53:05 2022 -0700
Merge pull request #83 from meleu/patch-2
commit 03b574b1606c836eda158c8fdfe0e251a1364fe8
Author: meleu <meleu.dev@gmail.com>
Date: Sat Apr 2 18:51:45 2022 -0300
cleanup
commit a469653f7575ae604ec3e979768f4ddfecf5e2b5
Author: meleu <meleu.dev@gmail.com>
Date: Sat Apr 2 18:50:58 2022 -0300
separate contact links semantically
commit c51573efa98de6b5b5e79fb60b49f31daca70527
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Apr 2 13:34:26 2022 -0700
feat: grey out broken links
commit 902d0f2a0fe84d383eb1b011aee636ccb9687f6f
Merge: 1ddd15af 9c5ecccf
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Apr 2 12:59:47 2022 -0700
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit 1ddd15afc6e69202080ffb91e8d82deb653a80b7
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Apr 2 12:59:38 2022 -0700
fix: non-unicode character in popover and search #67, #68
commit 16f8cd7100c7733b8ee29296fb0369ae24f899cd
Author: meleu <meleu@users.noreply.github.com>
Date: Sat Apr 2 13:37:12 2022 -0300
separate links with ​
commit 9c5ecccf25c35cd94bc6c7468d45e4c3e6a932bc
Merge: 3674df48 e3cd531c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Apr 1 14:17:35 2022 -0700
Merge pull request #82 from meleu/patch-1
commit e3cd531c537d4d82400275c1b018382a19041b4b
Author: meleu <meleu@users.noreply.github.com>
Date: Fri Apr 1 18:13:49 2022 -0300
fix custom.scss path
commit 3674df48b8eed55728780d05bc9b577e8aab0a3b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Apr 1 10:13:01 2022 -0700
fix pagination styling
commit 9e8c5587e433b3d1440803d7f995a2a8b55ba45e
Merge: 6605b13b 6edc9798
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Mar 31 23:16:00 2022 -0700
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit 6605b13b86c5e15bcaa2821937f97a59c4d2bbae
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Mar 31 23:15:54 2022 -0700
more troubleshooting, backlinks reference private page fix
commit 6edc979896f7548a8f9efe1c167fe9cd9d9e4c1c
Merge: 54a68e6e fc439224
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Mar 21 09:15:35 2022 -0700
Merge pull request #71 from siyangsun/patch-1
commit fc439224456010aad4802c9003c0dcebf1e38157
Author: Siyang <siyangsun2007@gmail.com>
Date: Sun Mar 20 22:37:05 2022 -0700
add to showcase and fix link to file
commit 54a68e6e5c020fa1e4eacf7942eb37974f332887
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Mar 18 10:53:39 2022 -0700
patch image
commit a6ab2f92ef8cb62d0399b1121cfabaa137906d51
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Mar 16 17:54:24 2022 -0700
add update
commit fda481fbb91fee6fc9e99c56c2cf80ff8835a946
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Mar 15 01:12:08 2022 -0700
fix: bump hugo-obsidian version to account for contentIndex paths on windows
commit 94e987dab5a50196bc2273addc6f908178abd0fb
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Mar 15 00:37:56 2022 -0700
feat: better titles for empty pages #61
commit e981c76ed4b2d220c0394bdcbf5a22a282561fd3
Merge: 651bfc5c f70128a3
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Mar 9 10:11:36 2022 -0800
Merge pull request #65 from claudio4/fix-text
commit f70128a3deacc26ceccb7d397ce6cd73acceb7f9
Author: Claudio Yanes <me@claudio4.com>
Date: Wed Mar 9 17:58:01 2022 +0000
Prevent overflow of long links and words
When a word (or any string withtout breakpoints (spaces, dashes....), making links the most common place where this becamoes an issue) is wider than its container, the text will simply overflow any container, including the viewport. This commit fixes this behaviour by making the word-drap strategy of the browser more aggresive.
commit 651bfc5cd284a259f429b50839c619dd1b94498a
Merge: 90727099 60794201
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Mar 7 10:45:07 2022 -0800
Merge pull request #62 from claudio4/hugo
commit 6079420178788ca74e574e35ad0212d1e6f41b6e
Merge: 978d5ca1 b96c60ed
Author: Claudio Yanes <me@claudio4.com>
Date: Mon Mar 7 18:28:14 2022 +0000
Merge branch 'jackyzha0-hugo' into hugo
commit b96c60edfc3429a2c478b2d1eb809fb9f20b4219
Merge: 978d5ca1 90727099
Author: Claudio Yanes <me@claudio4.com>
Date: Mon Mar 7 18:27:45 2022 +0000
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into jackyzha0-hugo
commit 978d5ca1aee23d6663e508aa24b389b6c9003d04
Author: Claudio Yanes <me@claudio4.com>
Date: Mon Mar 7 18:25:02 2022 +0000
Format JS
commit 907270992d7718f26d0a401ab700c6a0a414b440
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Mar 4 23:55:07 2022 -0800
fix: hide popover on mobile to prevent overflow
commit 6f9283e95b9f0b85c0d9dc7374ed75eff2a9149d
Author: Claudio Yanes <me@claudio4.com>
Date: Fri Mar 4 22:27:21 2022 +0000
Update makefile and docs
The artifacts produced by hugo-obsidian are now expected to be placed in
the assets/indices directory. This commit reflects this change in the
Makefile and in the docs.
commit 0fad5570d38b6a15e9a0cf2c1b1f24e6c2897551
Author: Claudio Yanes <me@claudio4.com>
Date: Fri Mar 4 04:14:42 2022 +0000
Add .gitkeep to assets/indices
commit dc9b421e21d02e9d247d1640cb518c416a5dcbab
Author: Claudio Yanes <me@claudio4.com>
Date: Fri Mar 4 04:12:43 2022 +0000
Remove unnecessary scrollbars
The margin property can escape the parent node and move it alongside
its child. This happens with singlePage div and the body, resulting in
scrollbars appearing as the body has the size of the viewport but
does not align with it. This phenomenon can be always observed
in the vertical axis and it can also be observed in the horizontal axis
when the viewport it’s not wide enough (mostly in mobile).
Using paddings prevents this “extra space” from scraping and displacing
the body.
Also, the value 100vw does not take into account the space taken by the
vertical scrollbar, thus making the body wider than the actual viewport,
producing a horizontal scrollbar.
commit 8779e72c77c2e454d444b86d3d5ebda9bfab46d7
Author: Claudio Yanes <me@claudio4.com>
Date: Fri Mar 4 03:34:45 2022 +0000
Add attribute property to scripts from jsdelivr
Adding the integrity attribute protects the website (by refusing to load
the script) against malicious modifications of the script
in the case of jsdelivr gets hacked
commit 7f6523337c96e631e80b18c888b2f237ea8a4482
Author: Claudio Yanes <me@claudio4.com>
Date: Fri Mar 4 03:24:32 2022 +0000
Move popover to the end of the page
The popover script doesn’t ever start in until the DOM has finished
Loading, so wait for the script to be downloaded and parsed before
Showing the content to the user makes no sense.
commit 7e0f2e44497adeade4aa5a99da897be29cb49016
Author: Claudio Yanes <me@claudio4.com>
Date: Fri Mar 4 02:25:30 2022 +0000
Fix fetchData
The fetchData function suffer from a race condition. If the function is
called before the promise finishes, it will result in another pair of
HTTP request. This does not only make the function useless but
Actually, it makes it harmful as the data might be redownloaded twice.
Now fetchData is not a function but rather the promise by itself.
Previous callers are expected to await the variable instead, this
should be not concern as awaiting a promise multiple time in
JavaScript is completely safe.
commit 1313bd9779c638f09b8901f8432d6bc39910bce3
Author: Claudio Yanes <me@claudio4.com>
Date: Fri Mar 4 02:07:51 2022 +0000
Move css and js to appropriate files
Having the CSS and JS in the html template produces pages larger
than necessary, as each page need to contain all the js/css.
Separating them in appropriate files allow the browser to just download
them once and use them for all the pages. This is even more effective
with an aggressive cache policy for the js and css, something that can
be done without fear thanks to the implemented cache-busting.
Also, having then in separate files allows us to use Hugo pipelines
for minimizing the code.
commit 5234fae080f1d3dca4f105438e3e0151f12ca61c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Feb 28 08:24:29 2022 -0800
fix backlinks not using baseurl
commit 0ee0855e1c1843a86a7bcd58aee520784c165dba
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Feb 28 07:30:59 2022 -0800
bump hugo-obsidian to support root
commit e06e341468202eebd928dee6a222ea118ef06331
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Feb 28 07:14:55 2022 -0800
fix: explicitly set root as current directory to fix ignore files
commit 73e526a7d50315b9177c2c11d12ebcde71b05fbd
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Feb 23 12:28:25 2022 -0500
add screenshot to readme
commit cdc4f1a8407449be7a514414795f27ff3b70bf37
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Feb 22 13:36:08 2022 -0500
fix: relink search button (move outside content load listener)
commit 714b4fcfa30ac1155747b9af90bc0e9519cb4bba
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Feb 20 21:40:10 2022 -0500
fix links being broken for pages with spaces
commit 9c04ca026676445849081d32efb8e840465994d5
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Feb 17 10:49:41 2022 -0500
rtl docs
commit 388a2bf78bb08c2b37e918c3a2e0acc72803e187
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Feb 17 10:44:39 2022 -0500
docs updates
commit f192f9a23df34d30e223e20ab5e8cb8210a7dfe9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Feb 15 23:03:02 2022 -0500
fix #54: root all image urls
commit 3b3e6ec3b2a56ee4d03b6f4c84af886821bfbe84
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Feb 15 22:54:20 2022 -0500
fix relative pathing for dynamic fetch
commit 8e85e274f6e5913694b67319f1beb7a2ec5b5bed
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Feb 15 19:42:45 2022 -0500
change output to static instead of data
commit fcd5d2807d2bab68c6776e031e85d65fe88a6f7a
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Feb 15 19:39:14 2022 -0500
feat: dynamically fetch indices
commit 4587b133600ac59e38d1fccc7c7dba9f2c8f4af5
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Feb 15 17:12:08 2022 -0500
feat: add rtl support as part of #47
commit fb9ea8dcb85e6d2ac6c2a8cf5057f2fb00871b26
Merge: c520db48 10f9843b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Feb 15 16:52:49 2022 -0500
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit c520db488213f6d7844a382fe4f621a85decd60e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Feb 15 16:52:32 2022 -0500
fix: #50, change css load order
commit 10f9843bb6476134532d2002b2d29841755767e1
Merge: 0dc51ff3 31297b7e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Feb 15 14:51:29 2022 -0500
Merge pull request #51 from brandonkboswell/patch-1
commit 0dc51ff39c9c867dd85c37a01c366cd5f278f032
Merge: c35086c5 fa3bc3de
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Feb 15 14:50:34 2022 -0500
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit c35086c5104aedcaae1aba00892b0b4359a8e3cf
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Feb 15 14:50:25 2022 -0500
visibility fix
commit 31297b7e5adfda0def68ac848c4e81789c7278b2
Author: Brandon Boswell <brandonkboswell@gmail.com>
Date: Sat Feb 12 22:35:03 2022 -0500
Added to the Showcase
commit fa3bc3de9273d2cb437605d1b229d9a8d79331b5
Merge: a271fb9d 41c443db
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Feb 11 17:24:54 2022 -0500
Merge pull request #48 from earnestma/earne/configurable-page-toc
commit 41c443dbf079e65ed69f57d3b9a5ce58dc403e6d
Author: earnest ma <me@earne.link>
Date: Fri Feb 11 17:05:38 2022 -0500
Add disableToc parameter to not show TOC on a page
commit a271fb9d74f56b9e44817c7f61300db8d7e713cd
Merge: 9645f003 49cdca5d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jan 31 12:28:40 2022 -0800
Merge pull request #46 from adube/patch-1
commit 49cdca5dfc32e56788f30a9a7e8b5a6225013edb
Author: Alexandre Dubé <adube@mapgears.com>
Date: Mon Jan 31 15:18:26 2022 -0500
Specify Hugo requires extended Sass/SCSS version
Hugo needs to be installed with its "extended" Sass/SCSS version, otherwise this template does not work.
commit 9645f0031756faf815b1df5501d736795cbccc62
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Jan 27 09:38:28 2022 -0800
link fixing
commit 57ebf4c21c8b4f7c2ef5126ded39a9facaa848ee
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jan 10 13:08:50 2022 -0800
underscore fix, fix relative path being weird for graph
commit 54e3e071d1c66dec3e04e8246c58fc2067877044
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jan 10 09:00:45 2022 -0800
fix popover regex
commit d46e22383133b944201bf5cdf85d44c48c891d07
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jan 10 08:51:00 2022 -0800
revert baseurl fix
commit 6f9a29c174f8657a90d7dda8d39e933c220fa717
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jan 10 08:49:29 2022 -0800
various path fixes
commit 532bc610254db096807453bf223acaa91634fd81
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Jan 5 19:42:13 2022 -0500
set relativeUrls to true
commit 99aea4826068564f81e7f1b402e00e3e101a1476
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Jan 4 11:39:22 2022 -0500
docs update
commit 4a3766db56bd08990b59f73e805008e03817556c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jan 3 16:37:24 2022 -0500
update featurelist
commit 4e639979f8175b0a639ba2e25bbd8fa550d728bf
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jan 3 15:36:58 2022 -0500
fix copy selection
commit e49a1ac9db92c6c967be404b5a3b9e3194a4ed99
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jan 3 13:22:04 2022 -0500
made link preview optional
commit 4a3c4fdef550547aa80947ebaff1bda44b943d4d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Jan 3 13:18:31 2022 -0500
popover implementation
commit 2b432d7f0b35987ca6886e7041dce861b7e21abb
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jan 2 20:02:47 2022 -0500
fix flex gap
commit 7507fd29912015a72f990b23023ae2946c6cd51b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Jan 2 19:49:41 2022 -0500
fix search styling
commit ca886e40752a8a30762708ea87d7228f737c0cd2
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Dec 28 14:28:08 2021 -0500
fix render link for apostrophe
commit 3722e600ee3bd75130e4e228ea45c2074649329c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Dec 27 20:52:30 2021 -0500
bump hugo-obsidian
commit efeaf0f4e47c3484ad84b7b9f755735ae0d810cd
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Dec 27 20:16:21 2021 -0500
add pagination to section, fix graph linking
commit 1a8cdaad24789d75d9453351aff19b434e1ea5c9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Dec 27 19:43:01 2021 -0500
remove console.log
commit e4caa0d1d7fb3bdca6dee07fee299a3acdf40043
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Dec 27 19:35:42 2021 -0500
add taxonomy and term lists
commit a45856d7884fedd3a3bd6b80489c206c75427112
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Dec 27 17:53:33 2021 -0500
fix last modified not working for capitalized pages
commit dbe9b338ccc5df23882ebfa26c9020fb863a4124
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Dec 27 17:44:39 2021 -0500
fix capitalization
commit 000fcdbf991dcc7f81b4cf1b6d7116590070ffd0
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Dec 27 17:43:27 2021 -0500
fix casing
commit 612c44d719f1b47b3c7b3fc5b6ffb48ccec33ded
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Dec 27 17:34:53 2021 -0500
modify obsidian
commit e1911a58fff3b96754b3b49837ac2d4dd4fcf5aa
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Dec 27 17:28:53 2021 -0500
enable last modified info
commit b4e26971165d49604014a1ed38aaa18b2c20fc23
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Dec 27 15:59:19 2021 -0500
content section
commit 094ab9d064b8e3d24f0cb656aaf4e0ea08365ac5
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Dec 27 13:15:10 2021 -0500
dedupe backlinks
commit 39592347cc742838a1d078031b897fe26a94adaf
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Dec 27 13:06:58 2021 -0500
add graph depth config
commit 165d33810d63f98953f4dd8c40f6d7741f967664
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Dec 26 21:13:21 2021 -0500
base tags
commit 6fbfa7170b17e062abd4c26e4b55a3934fb4ff1c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Dec 26 00:09:15 2021 -0500
various font and colour fixes
commit 43837f9e2ec4033722cb6957bd67c688afb3ae2c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Dec 25 23:45:30 2021 -0500
add makefile, fix link padding, test capitalization
commit 2ba01c831178facd35c62adcb22f3cc39ead6975
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Dec 24 15:51:37 2021 -0500
fix untitled #36
commit 114b7ca913b4250d594b711d7bfbe98ab23b562d
Merge: 5bd5642c 091be704
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Dec 24 09:48:41 2021 -0500
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit 5bd5642c99d6d144c9932533dfdc3484bdb72b71
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Dec 24 09:48:22 2021 -0500
add toLowerCase to id
commit 48d01810c4629341d9481632fc7f769dcffe0bd7
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Dec 23 14:40:59 2021 -0800
fix config setting, fix font size for h1 in article
commit 3a98c8b554c4b0e141f46a777c0fefe5ad4d4178
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Dec 23 14:32:47 2021 -0800
actually display site title
commit 69c86e407fa14ea94c75de82ca55ec9efaf6fb37
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Dec 23 14:21:39 2021 -0800
update subdomain docs
commit 56d2382c282431115b2964d440b790ce11f19e72
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Dec 23 14:05:27 2021 -0800
fix relative link styling, change graph and backlinks to refer to name rather than path
commit 091be7040b2f3da212a68a491bb8872543fddfea
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Dec 23 13:37:29 2021 -0800
Create CODE_OF_CONDUCT.md
commit 09b5522a488177129bfc7b35b700d7e76c64d5f8
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Dec 23 13:22:22 2021 -0800
Update issue templates
commit b9d7adafccc7a77f735afe11c80e0e8db534a31d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Dec 23 13:18:03 2021 -0800
Create FUNDING.yml
commit afeb18212d62663b7bbec5a08c05851bd584acd3
Merge: c64322ad bc909559
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Dec 2 20:06:18 2021 -0800
Merge pull request #28 from juaoose/overflow
commit bc90955959d818797e84c944247736e871faee3f
Author: Juaoose <jjrg1994@gmail.com>
Date: Thu Dec 2 22:58:34 2021 -0500
remove horizontal scrollbar
commit c64322ad3f1b72f83e675a53060b005d57704901
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 20 22:55:53 2021 -0800
remove bad wikilink
commit 48eb9ebc5fdba0845c6295e8abb6f574ec75171d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Nov 20 22:53:26 2021 -0800
better search, fix spacing support, bump hugo-obsidian
commit 82ba843e42198d2ef2829eb6e668377bc9ebe4be
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Nov 15 15:54:18 2021 -0800
search styling
commit 8ca31df3f22e2678cf201105c1cb2925aca3c7d3
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Oct 31 09:59:38 2021 -0700
search patch
commit df23b99951fd7cb3bdf839639bce58b3e98c2d26
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat Oct 30 23:27:33 2021 -0700
more search improvements
commit 6005a2e0a0667e9b78bfd419d3e8590a7fcc25f8
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed Oct 27 20:10:04 2021 -0700
css fixes
commit de940d6a4b8a51f308b4544d21941bdb9a99aa66
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Oct 26 17:06:00 2021 -0700
update graph redir
commit 806d11f874119a1207332850e3263d87334a573d
Merge: 03bb3a3b 1fc2da4f
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Oct 26 17:03:07 2021 -0700
Merge pull request #23 from bur3ku/hugo
commit 1fc2da4fe293f47ec47a7b5d33fa94fa3a06bb3b
Merge: 9292de63 24776624
Author: Blake Allen <blakesnake100@gmail.com>
Date: Tue Oct 26 16:58:37 2021 -0700
Merge branch 'hugo' of https://github.com/bur3ku/quartz into hugo
commit 9292de63336da42651c646253ef6000621d5328b
Author: Blake Allen <blakesnake100@gmail.com>
Date: Tue Oct 26 16:58:08 2021 -0700
remove unnecessary regex, use encodeuri for label instead of replace
commit 24776624047bea380c51dbb503cdf335d37b83b0
Merge: a14d06aa 03bb3a3b
Author: Blake Allen <blake.edward.allen@gmail.com>
Date: Tue Oct 26 12:46:03 2021 -0700
Merge branch 'hugo' into hugo
commit a14d06aa3d37396531dbfe09bb3b18b7eb9b96ad
Author: Blake Allen <blakesnake100@gmail.com>
Date: Tue Oct 26 12:44:25 2021 -0700
fix conflict fix
commit e0535dbe3219e297945284ca2af9862bd457a893
Author: Blake Allen <blakesnake100@gmail.com>
Date: Tue Oct 26 12:43:55 2021 -0700
fix conflict
commit 8eca1e60f78f40d6b598aa397bb315adfc53d9ad
Author: Blake Allen <blakesnake100@gmail.com>
Date: Tue Oct 26 12:36:20 2021 -0700
change %20 in node labels to whitespace, change %20 in node hrefs to hyphen
commit 03bb3a3bae297b51ffabb0d428f2c555771033f9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Oct 25 15:06:29 2021 -0700
normalize search styling
commit f7b89db8ee85e54a438db2e2cac3c55e805281c9
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon Oct 25 15:00:55 2021 -0700
search fix
commit 1835b97a7a2faf23809bb39d0bec7a2b77b3b81c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Oct 24 23:45:55 2021 -0700
better homepage
commit f56642f13cb5bffb8c05b239c6a7b90e1b6453e5
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Oct 24 23:32:55 2021 -0700
forgot string lol
commit 22a9c0ddfcb38a15d4340f532faca7733349702b
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Oct 24 23:31:09 2021 -0700
docs updates, add search to main page, fix redir bug
commit c1c061fbea8f6cdc6aec4992d21d2df73dc6ba4e
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Oct 24 23:17:20 2021 -0700
bump docs
commit 6fd19069deb06988b3d34482a151a79a53b589d0
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Oct 24 23:17:13 2021 -0700
search improvements
commit 299533a4f47d2379ddbc209bcd6923a70a81e65d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun Oct 24 23:17:00 2021 -0700
bump hugo-obsidian version
commit e1366ecb6173b7c5e799c46e3ed8acbb50aaf447
Author: Blake Allen <blakesnake100@gmail.com>
Date: Fri Oct 22 18:56:26 2021 -0700
fix accidental code
commit 776ef084c9c98163f96cce62621cb8b0cf59bbdd
Author: Blake Allen <blakesnake100@gmail.com>
Date: Fri Oct 22 18:32:57 2021 -0700
fix last commit
commit fc00ad5bffcd5a1b89a4c1cb19b12d77238cc4c2
Author: Blake Allen <blakesnake100@gmail.com>
Date: Fri Oct 22 14:04:09 2021 -0700
fix for notes with spaces not linking properly
commit 228f96e74dd0caae6514a230418812103527d439
Merge: ae2f7efd 071984a1
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue Aug 31 18:32:14 2021 -0400
Merge pull request #14 from juaoose/hugo
fix product typo in external hosting section
commit 071984a12d1c7887d0ef41b206e01bc5afefb95d
Author: Juan José Rodríguez <juaoose@users.noreply.github.com>
Date: Tue Aug 31 16:40:31 2021 -0500
fix product typo in external hosting section
commit ae2f7efde0eb997ab2f7be1cf1513af7f99df599
Author: jackyzha0 <j.zhao2k19@gmail.com>
Date: Sat Aug 28 20:58:14 2021 -0400
update showcase
commit cb38667c1df7d752a1a9ef45505a7e106ff03ef8
Merge: 1c851271 27c33f83
Author: jackyzha0 <j.zhao2k19@gmail.com>
Date: Fri Aug 27 14:08:18 2021 -0400
Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo
commit 27c33f8334f6ac4a67c2a12b8eed219e6d8aeb2b
Merge: 8850976d f9920f6d
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri Aug 13 17:45:32 2021 -0400
Merge pull request #9 from brechtcs/template
Execute darkmode script before first render
commit f9920f6d736754372075c8f1014ab9440e333317
Author: Brecht Savelkoul <brecht.savelkoul@alumni.lse.ac.uk>
Date: Fri Aug 13 22:46:00 2021 +0200
Execute darkmode script before first render
commit 8850976d8dbb9a67d0224ed1ea30bd90fdbf4faa
Merge: 9b427faa bb6a1e8c
Author: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu Aug 12 23:49:05 2021 -0400
Merge pull request #8 from SlRvb/patch-1
Add SlRvb Site to Showcase
commit bb6a1e8c349075f40ac96be25509951ad5dce715
Author: SlRvb <54087190+SlRvb@users.noreply.github.com>
Date: Thu Aug 12 20:46:23 2021 -0700
Add SlRvb Site to Showcase
2023-11-24 18:08:37 +00:00
|
|
|
|
|
|
|
.transclude {
|
|
|
|
ul {
|
|
|
|
padding-left: 1rem;
|
|
|
|
}
|
|
|
|
}
|