Skip to content

Commit 9be8eb1

Browse files
committed
Refine README helper text
1 parent 98a9064 commit 9be8eb1

2 files changed

Lines changed: 10 additions & 10 deletions

File tree

README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ A curated list of noteworthy Java frameworks, libraries, tools and resources.
1515
Browse a category below, or use your browser's find command to locate a project.
1616

1717
<details>
18-
<summary><strong>Browse 75 project categories and 7 resource groups</strong></summary>
18+
<summary><strong>Browse</strong></summary>
1919

2020
**Projects:** [Architecture](#architecture) · [Artificial Intelligence](#artificial-intelligence) · [Bean Mapping](#bean-mapping) · [Build](#build) · [Bytecode Manipulation](#bytecode-manipulation) · [Caching](#caching) · [CLI](#cli) · [Cloud](#cloud) · [Code Analysis](#code-analysis) · [Code Coverage](#code-coverage) · [Code Formatting](#code-formatting) · [Code Generators](#code-generators) · [Compiler-compiler](#compiler-compiler) · [Computer Vision](#computer-vision) · [Configuration](#configuration) · [Constraint Satisfaction Problem Solver](#constraint-satisfaction-problem-solver) · [CSV](#csv) · [Data Structures](#data-structures) · [Database](#database) · [Date and Time](#date-and-time) · [Decentralization](#decentralization) · [Decompilation](#decompilation) · [Dependency Injection](#dependency-injection) · [Development](#development) · [Distributed Applications](#distributed-applications) · [Distributed Transactions](#distributed-transactions) · [Distribution](#distribution) · [Document Processing](#document-processing) · [Financial](#financial) · [Flat File](#flat-file) · [Formal Verification](#formal-verification) · [Functional Programming](#functional-programming) · [Game Development](#game-development) · [Geospatial](#geospatial) · [GUI](#gui) · [High Performance](#high-performance) · [HTTP Clients](#http-clients) · [Hypermedia Types](#hypermedia-types) · [IDE](#ide) · [Imagery](#imagery) · [Introspection](#introspection) · [Job Scheduling](#job-scheduling) · [JSON](#json) · [JVM and JDK](#jvm-and-jdk) · [Logging](#logging) · [Machine Learning](#machine-learning) · [Messaging](#messaging) · [Microservice](#microservice) · [Miscellaneous](#miscellaneous) · [Mobile Development](#mobile-development) · [Monitoring](#monitoring) · [Native](#native) · [Natural Language Processing](#natural-language-processing) · [Networking](#networking) · [ORM](#orm) · [PaaS](#paas) · [Pathfinding](#pathfinding) · [PDF](#pdf) · [Performance analysis](#performance-analysis) · [Platform](#platform) · [Processes](#processes) · [Reactive libraries](#reactive-libraries) · [REST Frameworks](#rest-frameworks) · [Science](#science) · [Search](#search) · [Security](#security) · [Serialization](#serialization) · [Server](#server) · [Template Engine](#template-engine) · [Testing](#testing) · [Utility](#utility) · [Version Managers](#version-managers) · [Web Crawling](#web-crawling) · [Web Frameworks](#web-frameworks) · [Workflow Orchestration Engines](#workflow-orchestration-engines)
2121

@@ -350,7 +350,7 @@ _Libraries that provide external configuration._
350350
351351
> **[owner](https://github.com/lviggiano/owner)** <kbd>★ 939</kbd> <kbd>BSD-3-Clause</kbd> 🟢<br>Reduces boilerplate of properties.
352352
353-
> **[sealed-env](https://github.com/davidalmeidac/sealed-env)** <kbd>★ 9</kbd> <kbd>MIT</kbd> 🟢<br>Encrypts environment files with a shared Node.js and Java/Spring Boot format plus optional TOTP unsealing.
353+
> **[sealed-env](https://github.com/davidalmeidac/sealed-env)** <kbd>★ 10</kbd> <kbd>MIT</kbd> 🟢<br>Encrypts environment files with a shared Node.js and Java/Spring Boot format plus optional TOTP unsealing.
354354
355355
</details>
356356

@@ -2429,8 +2429,10 @@ _Sites to read._
24292429

24302430
> **[Suggest a project or resource](https://github.com/akullpp/awesome-java/edit/test/README_SOURCE.md)** · [Contribution guidelines](CONTRIBUTING.md)
24312431
>
2432-
> Add one Markdown entry under the appropriate category and open one pull request. Ordering, counts and GitHub statistics are generated automatically.
2432+
> Add one Markdown entry under the appropriate category and open one pull request.<br>
2433+
> Ordering, counts and GitHub statistics are generated automatically.
24332434
24342435
## License
24352436

2436-
Catalog and documentation: [CC BY-SA 4.0](LICENSE). Automation code and configuration: [MIT](LICENSE-CODE).
2437+
Catalog and documentation: [CC BY-SA 4.0](LICENSE).<br>
2438+
Automation code and configuration: [MIT](LICENSE-CODE).

scripts/GenerateReadme.java

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -448,9 +448,7 @@ private static String render(Catalog source, StatsCache cache, LocalDate today,
448448
.append("and show a license only when all repositories agree.</sub>\n\n")
449449
.append("Browse a category below, or use your browser's find command to locate a project.\n\n")
450450
.append("<details>\n")
451-
.append("<summary><strong>Browse ").append(source.categories().size())
452-
.append(" project categories and ").append(source.resources().size())
453-
.append(" resource groups</strong></summary>\n\n")
451+
.append("<summary><strong>Browse</strong></summary>\n\n")
454452
.append("**Projects:** ");
455453
appendNavigation(out, source.categories().stream().map(category -> category.name).sorted(TEXT_ORDER).toList());
456454
out.append("\n\n**Resources:** ");
@@ -472,10 +470,10 @@ private static String render(Catalog source, StatsCache cache, LocalDate today,
472470
.append("> **[Suggest a project or resource](").append(editUrl).append(")** · ")
473471
.append("[Contribution guidelines](CONTRIBUTING.md)\n")
474472
.append(">\n")
475-
.append("> Add one Markdown entry under the appropriate category and open one pull request. ")
476-
.append("Ordering, counts and GitHub statistics are generated automatically.\n\n")
473+
.append("> Add one Markdown entry under the appropriate category and open one pull request.<br>\n")
474+
.append("> Ordering, counts and GitHub statistics are generated automatically.\n\n")
477475
.append("## License\n\n")
478-
.append("Catalog and documentation: [CC BY-SA 4.0](LICENSE). ")
476+
.append("Catalog and documentation: [CC BY-SA 4.0](LICENSE).<br>\n")
479477
.append("Automation code and configuration: [MIT](LICENSE-CODE).\n");
480478
return out.toString();
481479
}

0 commit comments

Comments
 (0)