From 5386ec6ada91f845483ca87edb9a2b52f954c86e Mon Sep 17 00:00:00 2001 From: Eden Zimbelman Date: Tue, 4 Nov 2025 16:09:33 -0800 Subject: [PATCH] docs: use consistent bold formatting for list items --- README.md | 2 +- block-kit/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index cf192fe..4d2655c 100644 --- a/README.md +++ b/README.md @@ -4,4 +4,4 @@ This collections of examples highlights features of a Slack app in the language ## Available demonstration -- [Block Kit](./block-kit): the framework of visual components arranged to create app layouts. +- **[Block Kit](./block-kit)**: The framework of visual components arranged to create app layouts. diff --git a/block-kit/README.md b/block-kit/README.md index c65c1fb..3cd3768 100644 --- a/block-kit/README.md +++ b/block-kit/README.md @@ -8,7 +8,7 @@ Read the [docs](https://docs.slack.dev/block-kit/) to learn concepts behind thes ### Blocks -- **[Actions block](https://docs.slack.dev/reference/block-kit/blocks/actions-block)**: Holds multiple interactive elements. [Implementation](./src/main/java/blocks/Actions.java). +- **[Actions](https://docs.slack.dev/reference/block-kit/blocks/actions-block)**: Holds multiple interactive elements. [Implementation](./src/main/java/blocks/Actions.java). - **[Context](https://docs.slack.dev/reference/block-kit/blocks/context-block)**: Provides contextual info, which can include both images and text. [Implementation](./src/main/java/blocks/Context.java). - **[Divider](https://docs.slack.dev/reference/block-kit/blocks/divider-block)**: Visually separates pieces of info inside of a message. [Implementation](./src/main/java/blocks/Divider.java). - **[File](https://docs.slack.dev/reference/block-kit/blocks/file-block)**: Displays info about remote files. [Implementation](./src/main/java/blocks/File.java).