From bd8a57455c4a2aa617915ec4be2c659544dfec18 Mon Sep 17 00:00:00 2001 From: Daniel Heid Date: Fri, 5 Jun 2026 12:02:41 +0200 Subject: [PATCH] Add the AsciiDoc formatter adocfmt --- data/api/tags.json | 5 +++++ data/api/tools.json | 37 ++++++++++++++++++++++++++++++++++--- data/tags.yml | 3 +++ data/tools/adocfmt.yml | 18 ++++++++++++++++++ 4 files changed, 60 insertions(+), 3 deletions(-) create mode 100644 data/tools/adocfmt.yml diff --git a/data/api/tags.json b/data/api/tags.json index a0dbec31e..0e770affe 100644 --- a/data/api/tags.json +++ b/data/api/tags.json @@ -352,6 +352,11 @@ "value": "dotenv", "tag_type": "Other" }, + { + "name": "AsciiDoc", + "value": "asciidoc", + "tag_type": "Other" + }, { "name": "Ansible", "value": "ansible", diff --git a/data/api/tools.json b/data/api/tools.json index 9eeda1b87..308f0e11d 100644 --- a/data/api/tools.json +++ b/data/api/tools.json @@ -111,6 +111,37 @@ "demos": null, "wrapper": null }, + "adocfmt": { + "name": "adocfmt", + "categories": [ + "linter", + "formatter" + ], + "languages": [ + "java" + ], + "other": [ + "asciidoc", + "writing" + ], + "licenses": [ + "Apache License 2.0" + ], + "types": [ + "cli" + ], + "homepage": "https://github.com/dheid/adocfmt", + "source": "https://github.com/dheid/adocfmt", + "pricing": null, + "plans": null, + "description": "An opinionated formatter for AsciiDoc documents that normalizes headings, lists, block delimiters, and whitespace. Includes a check mode for CI pipelines. Distributed as a CLI with integrations for pre-commit, GitHub Actions, and the Spotless code-formatting plugin.", + "discussion": null, + "deprecated": null, + "resources": null, + "reviews": null, + "demos": null, + "wrapper": null + }, "aether": { "name": "aether", "categories": [ @@ -3561,7 +3592,7 @@ "plans": null, "description": "Static Code Analysis for R.", "discussion": null, - "deprecated": null, + "deprecated": true, "resources": null, "reviews": null, "demos": null, @@ -12236,7 +12267,7 @@ "plans": null, "description": "Format markdown code blocks using your favorite code formatters.", "discussion": null, - "deprecated": null, + "deprecated": false, "resources": null, "reviews": null, "demos": null, @@ -13938,7 +13969,7 @@ "plans": null, "description": "Facebook's tools for code analysis, visualizations, or style-preserving source transformation for many languages.", "discussion": null, - "deprecated": null, + "deprecated": true, "resources": null, "reviews": null, "demos": null, diff --git a/data/tags.yml b/data/tags.yml index c54183c6f..6c45df888 100644 --- a/data/tags.yml +++ b/data/tags.yml @@ -10,6 +10,9 @@ - name: ActionScript value: actionscript type: language +- name: AsciiDoc + value: asciidoc + type: other - name: Active Server Pages value: asp type: language diff --git a/data/tools/adocfmt.yml b/data/tools/adocfmt.yml new file mode 100644 index 000000000..9a6b0d4c2 --- /dev/null +++ b/data/tools/adocfmt.yml @@ -0,0 +1,18 @@ +name: adocfmt +categories: + - formatter + - linter +tags: + - asciidoc + - java + - writing +license: Apache License 2.0 +types: + - cli +source: "https://github.com/dheid/adocfmt" +homepage: "https://dheid.github.io/adocfmt" +description: >- + An opinionated formatter for AsciiDoc documents that normalizes headings, + lists, block delimiters, and whitespace. Includes a check mode for CI + pipelines. Distributed as a CLI with integrations for pre-commit, GitHub + Actions, and the Spotless code-formatting plugin.