Use sentence case where missing

This commit is contained in:
Guilherme Cattani 2025-06-10 22:27:13 +02:00
parent eb3f990fd9
commit d91f19eb3d
3 changed files with 4 additions and 4 deletions

View file

@ -40,7 +40,7 @@ Create a countdown progress bar by adding a code block with the `countdown-to` l
title: Project Deadline
startDate: 2025-03-12T08:00:00
endDate: 2025-04-11T14:00:00
type: Circle
type: circle
color: #ff5722
trailColor: #f5f5f5
infoFormat: {percent}% complete - {remaining} until {end:LLL d, yyyy}

View file

@ -1,7 +1,7 @@
{
"id": "countdown-to",
"name": "Countdown To",
"version": "1.3.1",
"version": "1.3.2",
"minAppVersion": "0.15.0",
"description": "Create countdown progress bars in your notes",
"author": "Gui Cattani",

View file

@ -17,7 +17,7 @@ export class LuxonFormatHelpModal extends Modal {
placeholdersList.createEl('li', { text: '{total} - Total duration (in days)' });
contentEl.createEl('h3', { text: 'Formatting' });
contentEl.createEl('a', { href: 'https://moment.github.io/luxon/#/formatting?id=table-of-tokens', text: 'Luxon Formatting Reference' });
contentEl.createEl('a', { href: 'https://moment.github.io/luxon/#/formatting?id=table-of-tokens', text: 'Luxon formatting reference' });
contentEl.createEl('h4', { text: 'Date formatting' });
contentEl.createEl('p', { text: 'You can use Luxon formatting for dates (replace *format* with the format you want):' });
@ -45,7 +45,7 @@ export class LuxonFormatHelpModal extends Modal {
durationExamplesList.createEl('li', { text: '{percent}% complete - {remaining} left' });
durationExamplesList.createEl('li', { text: '{elapsed} elapsed out of {total} total' });
contentEl.createEl('h3', { text: 'Common Luxon Formats' });
contentEl.createEl('h3', { text: 'Common Luxon formats' });
const formatsTable = contentEl.createEl('table');
const headerRow = formatsTable.createEl('tr');
headerRow.createEl('th', { text: 'Format' });