Skip to content

Commit 62d7cef

Browse files
committed
Add one poem
1 parent b0b71ef commit 62d7cef

34 files changed

+136
-52
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@ I made some styling customization: I added a border around article content, as w
1616

1717
I also use a great javascript charting tool: Chart.js. The theme indeed has nice integration capabilities of custom scripts (umd modules).
1818

19-
Side note: FrontMatter VS Code plugin needs the theme to be cloned else some settings files are missing, following [this instruction](https://mcshelby.github.io/hugo-theme-relearn/introduction/quickstart/index.html#use-as-a-git-submodule).
19+
Side note: FrontMatter VS Code extension needs the theme to be cloned else some settings files are missing, following [this instruction](https://mcshelby.github.io/hugo-theme-relearn/introduction/quickstart/index.html#use-as-a-git-submodule).
20+
21+
My standard is to have poem files using underscores for spaces (like poem IDs), so I need to update the file name after adding it using FrontMatter VS Code extension.
2022

2123
This repository also uses two other repositories:
2224

content/common/poem_count.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1347
1+
1348

content/fr/charts/general/categories-pie.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import { addPieChart } from '../add-chart.js'
2323
{ label: 'Neige', value: 23, color: 'rgba(244, 254, 254, 1)' },
2424
{ label: 'Flore', value: 67, color: 'rgba(84, 114, 174, 1)' },
2525
{ label: 'Jardin et paysage', value: 60, color: 'rgba(121, 248, 248, 1)' },
26-
{ label: 'Eau douce', value: 38, color: 'rgba(0, 127, 255, 1)' },
26+
{ label: 'Eau douce', value: 39, color: 'rgba(0, 127, 255, 1)' },
2727
{ label: 'Ciel', value: 86, color: 'rgba(119, 181, 254, 1)' },
2828
{ label: 'Mer', value: 28, color: 'rgba(0, 127, 255, 1)' },
2929
{ label: 'Faune', value: 58, color: 'rgba(4, 139, 154, 1)' },

content/fr/charts/general/category-metric.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ import { addBubbleChart } from '../add-chart.js'
166166
{ x: 18, y: 9, r: 0.7843137254901960784313725492, color: 'rgba(121, 248, 248, 1)' },
167167
{ x: 34, y: 5, r: 1.5686274509803921568627450980, color: 'rgba(121, 248, 248, 1)' },
168168
{ x: 26, y: 4, r: 1.5686274509803921568627450980, color: 'rgba(121, 248, 248, 1)' },
169-
{ x: 10, y: 5, r: 2.3529411764705882352941176472, color: 'rgba(121, 248, 248, 1)' },
169+
{ x: 10, y: 5, r: 3.137254901960784313725490196, color: 'rgba(121, 248, 248, 1)' },
170170
{ x: 18, y: 7, r: 0.7843137254901960784313725492, color: 'rgba(121, 248, 248, 1)' },
171171
{ x: 27, y: 7, r: 2.3529411764705882352941176472, color: 'rgba(121, 248, 248, 1)' },
172172
{ x: 31, y: 6, r: 0.7843137254901960784313725492, color: 'rgba(121, 248, 248, 1)' },

content/fr/charts/general/poem-dayofweek-pie.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { addPieChart } from '../add-chart.js'
77
{ label: 'Jeudi', value: 147, color: 'rgba(72, 149, 239, 0.6000000000000001)' },
88
{ label: 'Vendredi', value: 179, color: 'rgba(72, 149, 239, 0.7)' },
99
{ label: 'Samedi', value: 215, color: 'rgba(72, 149, 239, 0.8)' },
10-
{ label: 'Dimanche', value: 247, color: 'rgba(72, 149, 239, 0.9000000000000001)' },
10+
{ label: 'Dimanche', value: 248, color: 'rgba(72, 149, 239, 0.9000000000000001)' },
1111
];
1212
addPieChart('poemDayOfWeekPie', [data], { plugins: { title: { display: true, text: 'Par jour de la semaine' } } });
1313
})();

content/fr/charts/general/poem-intensity-pie.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { addPieChart } from '../add-chart.js'
22
(async function () {
33
const data = [
4-
{ label: '1 poème', value: 842, color: 'rgba(72, 149, 239, 0.5)' },
4+
{ label: '1 poème', value: 843, color: 'rgba(72, 149, 239, 0.5)' },
55
{ label: '2 poèmes', value: 179, color: 'rgba(72, 149, 239, 0.6)' },
66
{ label: '3 poèmes', value: 35, color: 'rgba(72, 149, 239, 0.7)' },
77
{ label: '4 poèmes', value: 7, color: 'rgba(72, 149, 239, 0.8)' },

content/fr/charts/general/poem-interval-bar.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { addBarChart } from '../add-chart.js'
22
(async function () {
33
const data = [
44
{ label: 'Moins d\'un jour', value: 291, color: 'rgba(72, 149, 239, 1)' },
5-
{ label: 'Un jour', value: 466, color: 'rgba(72, 149, 239, 0.9)' },
5+
{ label: 'Un jour', value: 467, color: 'rgba(72, 149, 239, 0.9)' },
66
{ label: '2j', value: 187, color: 'rgba(72, 149, 239, 0.7)' },
77
{ label: '3j', value: 119, color: 'rgba(72, 149, 239, 0.7)' },
88
{ label: '4j', value: 78, color: 'rgba(72, 149, 239, 0.7)' },

content/fr/charts/general/poem-length-by-verse-length.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import { addBubbleChart } from '../add-chart.js'
1919
{ x: 6, y: 28, r: 1.1822660098522167487684729064, color: 'rgba(121, 248, 248, 1)' },
2020
{ x: 8, y: 28, r: 1.1822660098522167487684729064, color: 'rgba(121, 248, 248, 1)' },
2121
{ x: 9, y: 12, r: 4.7290640394088669950738916256, color: 'rgba(121, 248, 248, 1)' },
22-
{ x: 5, y: 16, r: 14.778325123152709359605911330, color: 'rgba(121, 248, 248, 1)' },
22+
{ x: 5, y: 16, r: 15.369458128078817733990147783, color: 'rgba(121, 248, 248, 1)' },
2323
{ x: 3, y: 16, r: 5.3201970443349753694581280788, color: 'rgba(121, 248, 248, 1)' },
2424
{ x: 2, y: 16, r: 1.1822660098522167487684729064, color: 'rgba(121, 248, 248, 1)' },
2525
{ x: 6, y: 6, r: 1.7733990147783251231527093596, color: 'rgba(121, 248, 248, 1)' },

content/fr/charts/general/poem-series-bar.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import { addBarChart } from '../add-chart.js'
22
(async function () {
33
const data = [
4-
{ label: '2j', value: 113, color: 'rgba(72, 149, 239, 1)' },
5-
{ label: '3j', value: 43, color: 'rgba(72, 149, 239, 1)' },
4+
{ label: '2j', value: 112, color: 'rgba(72, 149, 239, 1)' },
5+
{ label: '3j', value: 44, color: 'rgba(72, 149, 239, 1)' },
66
{ label: '4j', value: 18, color: 'rgba(72, 149, 239, 1)' },
77
{ label: '5j', value: 8, color: 'rgba(72, 149, 239, 1)' },
88
{ label: '6j', value: 7, color: 'rgba(72, 149, 239, 1)' },

content/fr/charts/general/poems-day-radar.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ import { addRadarChart } from '../add-chart.js'
202202
{ label: '', value: 4 },
203203
{ label: '', value: 8 },
204204
{ label: '', value: 1 },
205-
{ label: '', value: 2 },
205+
{ label: '', value: 3 },
206206
{ label: '', value: 3 },
207207
{ label: '', value: 5 },
208208
{ label: '', value: 5 },

0 commit comments

Comments
 (0)