Skip to content

Commit e35da71

Browse files
committed
fix (prettier): add ignore tags to prevent prettier from breaking fenced code block
Known issue in current version of Prettier. See: prettier/prettier#15740
1 parent 3067183 commit e35da71

File tree

1 file changed

+16
-4
lines changed
  • apps/developer-hub/content/docs/pyth-core/use-real-time-data

1 file changed

+16
-4
lines changed

apps/developer-hub/content/docs/pyth-core/use-real-time-data/ton.mdx

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,24 @@ Install the Pyth TON SDK and other necessary dependencies using npm:
1818

1919
<Tabs groupId="node-package-manager" items={["npm", "yarn"]} persist>
2020
<Tab>
21-
```sh copy npm install @pythnetwork/pyth-ton-js @pythnetwork/hermes-client
22-
@ton/core @ton/ton @ton/crypto ```
21+
{/* prettier-ignore-start */}
22+
23+
```sh copy
24+
npm install @pythnetwork/pyth-ton-js @pythnetwork/hermes-client @ton/core @ton/ton @ton/crypto
25+
```
26+
27+
{/* prettier-ignore-end */}
28+
2329
</Tab>
2430
<Tab>
25-
```sh copy yarn add @pythnetwork/pyth-ton-js @pythnetwork/hermes-client
26-
@ton/core @ton/ton @ton/crypto ```
31+
{/* prettier-ignore-start */}
32+
33+
```sh copy
34+
yarn add @pythnetwork/pyth-ton-js @pythnetwork/hermes-client @ton/core @ton/ton @ton/crypto
35+
```
36+
37+
{/* prettier-ignore-end */}
38+
2739
</Tab>
2840
</Tabs>
2941

0 commit comments

Comments
 (0)