Skip to content

Commit 1c6defe

Browse files
authored
chore: update tools descriptions (#1360)
1 parent 881522b commit 1c6defe

File tree

99 files changed

+2413
-375
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

99 files changed

+2413
-375
lines changed

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ members = ["codegen", "mdsf"]
44
exclude = []
55

66
[workspace.package]
7-
version = "0.10.8"
7+
version = "0.10.8-next"
88
authors = ["Mads Hougesen <mads@mhouge.dk>"]
99
edition = "2024"
1010
documentation = "https://github.com/hougesen/mdsf#readme"

README.md

Lines changed: 81 additions & 81 deletions
Large diffs are not rendered by default.

codegen/src/main.rs

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,11 @@ mod tools;
1313
pub const GENERATED_FILE_COMMENT: &str =
1414
"//!\n//! THIS FILE IS GENERATED USING CODE - DO NOT EDIT MANUALLY\n//!";
1515

16-
fn normalize_homepage(s: String) -> String {
16+
fn normalize_homepage(mut s: String) -> String {
17+
if s.ends_with('/') {
18+
s.pop();
19+
}
20+
1721
if s.starts_with("https://github.com/") || s.starts_with("https://gitlab.com/") {
1822
s.to_lowercase()
1923
} else {
@@ -22,7 +26,7 @@ fn normalize_homepage(s: String) -> String {
2226
}
2327

2428
fn normalize_description(s: &str) -> String {
25-
s.trim().to_string()
29+
s.trim().replace(" ", " ")
2630
}
2731

2832
fn normalize_plugin(mut plugin: Tool) -> Tool {

github-action/biome.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "https://biomejs.dev/schemas/2.2.3/schema.json",
2+
"$schema": "https://biomejs.dev/schemas/2.2.6/schema.json",
33
"assist": {
44
"actions": {
55
"source": {

github-action/package-lock.json

Lines changed: 4 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

github-action/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "setup-mdsf",
3-
"version": "0.10.8",
3+
"version": "0.10.8-next",
44
"description": "Setup mdsf cli in GitHub Actions",
55
"main": "src/index.mjs",
66
"repository": {

mdsf-vscode/biome.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "https://biomejs.dev/schemas/2.2.3/schema.json",
2+
"$schema": "https://biomejs.dev/schemas/2.2.6/schema.json",
33
"assist": {
44
"actions": {
55
"source": {

mdsf-vscode/package-lock.json

Lines changed: 6 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

mdsf-vscode/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"displayName": "mdsf",
44
"publisher": "hougesen",
55
"description": "Format markdown code blocks using mdsf",
6-
"version": "0.10.8",
6+
"version": "0.10.8-next",
77
"engines": {
88
"vscode": "^1.99.0"
99
},

0 commit comments

Comments
 (0)