Skip to content

Commit f0b3769

Browse files
authored
Fix GitHub Markdown compatibility for notes
This PR replaces unsupported :::note syntax with GitHub-compatible Markdown.
1 parent f9bb180 commit f0b3769

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

docs/learn/beginner/00-app-anatomy.md

+5-6
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ sidebar_position: 1
44

55
# Anatomy of a Cosmos SDK Application
66

7-
:::note Synopsis
8-
This document describes the core parts of a Cosmos SDK application, represented throughout the document as a placeholder application named `app`.
9-
:::
7+
> **Synopsis**
8+
>
9+
> This document describes the core parts of a Cosmos SDK application, represented throughout the document as a placeholder application named `app`.
1010
1111
## Node Client
1212

@@ -47,9 +47,8 @@ Once the main binary is built, the node can be started by running the [`start` c
4747
2. Initialize the state-machine with the latest known state, extracted from the `db` stored in the `~/.app/data` folder. At this point, the state-machine is at height `appBlockHeight`.
4848
3. Create and start a new CometBFT instance. Among other things, the node performs a handshake with its peers. It gets the latest `blockHeight` from them and replays blocks to sync to this height if it is greater than the local `appBlockHeight`. The node starts from genesis and CometBFT sends an `InitChain` message via the ABCI to the `app`, which triggers the [`InitChainer`](#initchainer).
4949

50-
:::note
51-
When starting a CometBFT instance, the genesis file is the `0` height and the state within the genesis file is committed at block height `1`. When querying the state of the node, querying block height 0 will return an error.
52-
:::
50+
> When starting a CometBFT instance, the genesis file is the `0` height and the state within the genesis file is committed at block height `1`.
51+
> When querying the state of the node, querying block height `0` will return an error.
5352
5453
## Core Application File
5554

0 commit comments

Comments
 (0)