fossbook 0.2.6 → 0.2.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/mod/marked.js CHANGED
@@ -30,7 +30,7 @@ function getWikipediaCitation(href) {
30
30
  if (!articleTitle) return null;
31
31
 
32
32
  const source = hostnameMatch[1] === "ko" ? "위키백과" : "Wikipedia";
33
- return `${source}, ${articleTitle}`;
33
+ return `${articleTitle}, ${source}`;
34
34
  }
35
35
 
36
36
  function renderWikipediaCitation(href) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fossbook",
3
- "version": "0.2.6",
3
+ "version": "0.2.8",
4
4
  "description": "A lightweight static blog site generator for GitHub Pages",
5
5
  "main": "lib/index.js",
6
6
  "scripts": {
@@ -168,16 +168,9 @@
168
168
  }
169
169
 
170
170
  ul {
171
- list-style: none;
171
+ list-style: disc;
172
172
  padding-left: 2ch;
173
173
  }
174
- ul li {
175
- text-indent: -2ch;
176
- }
177
- ul > li::before {
178
- content: '* ';
179
- font-weight: bold;
180
- }
181
174
 
182
175
  ol > li::marker {
183
176
  font-family: 'Roboto Mono', monospace;
@@ -546,6 +539,7 @@
546
539
  display: flex;
547
540
  flex-wrap: wrap;
548
541
  gap: 0.35rem 0.8rem;
542
+ list-style: none;
549
543
  margin: 0;
550
544
  padding: 0;
551
545
  }