Skip to content

Commit 5bc2f37

Browse files
committed
Fix highlight blockquotes in README.md
Signed-off-by: Sora Morimoto <[email protected]>
1 parent df25f47 commit 5bc2f37

File tree

2 files changed

+12
-7
lines changed

2 files changed

+12
-7
lines changed

README.md

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@ jobs:
6060
6161
The actions are downloaded and run from the GitHub graph of repositories. The workflow references an action using a ref.
6262
63-
> **Note** Binding to a major version is the latest of that major version (e.g. `v2` = `2.*`)
64-
>
63+
> [!NOTE]
64+
> Binding to a major version is the latest of that major version (e.g. `v2` = `2.*`)
6565
> Major versions should guarantee compatibility. A major version can add net new capabilities but should not break existing input compatibility or break existing workflows.
6666

6767
```yml
@@ -72,7 +72,8 @@ The actions are downloaded and run from the GitHub graph of repositories. The wo
7272
ocaml-compiler: ${{ matrix.ocaml-compiler }}
7373
```
7474

75-
> **Warning** do not reference `master` since that is the latest code and can be carrying breaking changes of the next major version.
75+
> [!WARNING]
76+
> Do not reference `master` since that is the latest code and can be carrying breaking changes of the next major version.
7677

7778
Major version binding allows you to take advantage of bug fixes, critical functionality and security fixes. The `master` branch has the latest code and is unstable to bind to since changes get committed to the `master` and released by creating a tag.
7879

@@ -106,7 +107,8 @@ steps:
106107

107108
The `ocaml-compiler` input supports the Semantic Versioning Specification, for more detailed examples please refer to the [documentation](https://github.com/npm/node-semver#ranges).
108109

109-
> **Note** With the naughty exception of `4.02.2`, point releases are meant to be strictly compatible, so once we (OCaml dev team) release a new point release, upgrading should be a no-brainer.
110+
> [!NOTE]
111+
> With the naughty exception of `4.02.2`, point releases are meant to be strictly compatible, so once we (OCaml dev team) release a new point release, upgrading should be a no-brainer.
110112

111113
Examples:
112114

@@ -123,7 +125,8 @@ Consult the [examples](examples.md) page for more complex patterns.
123125

124126
**STATUS: EXPERIMENTAL**
125127

126-
Note: All extends are recommended to be used in separate jobs run on `ubuntu-latest`.
128+
> [!NOTE]
129+
> All extends are recommended to be used in separate jobs run on `ubuntu-latest`.
127130

128131
- [analysis](analysis)
129132
- [deploy-doc](deploy-doc)
@@ -144,7 +147,8 @@ updates:
144147
interval: weekly
145148
```
146149

147-
> **Note** [Renovate](https://github.com/marketplace/renovate) is also available for free as a third-party tool, which is much more flexible than Dependabot - depending on the project and your preferences. If you just want to automate GitHub Actions updates, Dependabot is good enough.
150+
> [!NOTE] \
151+
> [Renovate](https://github.com/marketplace/renovate) is also available for free as a third-party tool, which is much more flexible than Dependabot - depending on the project and your preferences. If you just want to automate GitHub Actions updates, Dependabot is good enough.
148152

149153
## Roadmap
150154

lint-fmt/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# lint-fmt
22

3-
> **Warning** Make sure you have an `.ocamlformat` file at the root of your project.
3+
> [!IMPORTANT]
4+
> Make sure you have an `.ocamlformat` file at the root of your project.
45
56
## Usage
67

0 commit comments

Comments
 (0)