Skip to content

Commit 2a0b44c

Browse files
[Partials] HTML to Markdown (#21591)
* un list to markdown * replaced with markdown * html to markdown * corrected asyde * ul list to makdown * ol to markdown * ol to markdown * extra space * html to markdown * html to markdown * html to markdown * indented content * ol to markdown * ol to markdown * ol to markdown * removed spaces * ul to markdown * ol to markdown * ol to markdown * ol to markdown * ol to markdown * ol to markdown * removed prettier-ignore * corrected link * indented * removed extra line * ol to markdown * added width * refined code * refined spaces * refined spaces
1 parent a6a5c42 commit 2a0b44c

File tree

8 files changed

+314
-224
lines changed

8 files changed

+314
-224
lines changed

src/content/partials/networking-services/analytics/overview.mdx

Lines changed: 17 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,19 @@ params:
88
- graphQl
99
---
1010

11-
import { AnchorHeading } from "~/components";
11+
import { AnchorHeading, Markdown } from "~/components";
1212

1313
{props.productName} customers can follow the troubleshooting steps listed below to gather information at the beginning of a troubleshooting process, then move to more detailed network data collection and analysis to identify the root cause of a problem.
1414

1515

1616
{ props.magicProduct === "Magic WAN" && (
1717
<>
18-
<ul><li>Overview in <a href="#magic-wan-site-analytics">Magic WAN Site Analytics</a></li></ul>
18+
<Markdown
19+
text={`
20+
- Overview in [Magic WAN Site Analytics](#magic-wan-site-analytics)
21+
`}
22+
inline={false}
23+
/>
1924
</>
2025
)
2126
}
@@ -27,8 +32,14 @@ import { AnchorHeading } from "~/components";
2732
{ props.magicProduct === "Magic WAN" && (
2833
<>
2934
<AnchorHeading title="Magic WAN Site Analytics" depth={2} />
30-
<p>Magic WAN Site Analytics provides an overview of the connectivity status and traffic analytics of all Magic WAN sites. This is a great place to start if you receive an alert, need to begin the Magic WAN troubleshooting process, or are performing routine monitoring.</p>
31-
<p>Refer to <a href="/magic-wan/analytics/site-analytics/">Magic WAN Site Analytics</a> to learn more.</p>
35+
<Markdown
36+
text={`
37+
Magic WAN Site Analytics provides an overview of the connectivity status and traffic analytics of all Magic WAN sites. This is a great place to start if you receive an alert, need to begin the Magic WAN troubleshooting process, or are performing routine monitoring.
38+
39+
Refer to [Magic WAN Site Analytics](/magic-wan/analytics/site-analytics/) to learn more.
40+
`}
41+
inline={false}
42+
/>
3243
</>
3344
)
3445
}
@@ -55,15 +66,5 @@ Refer to [packet captures](/magic-firewall/packet-captures/) to learn more.
5566

5667
GraphQL Analytics provides customers with a GraphQL API that they can query to receive raw JSON data of their Magic WAN traffic analytics. This data can be ingested into a SIEM or other tool and analyzed further.
5768

58-
<ul>
59-
<li>
60-
<a href={`${props.graphQl}analytics/query-bandwidth/`}>
61-
Querying {props.productName} tunnel bandwidth analytics with GraphQL
62-
</a>
63-
</li>
64-
<li>
65-
<a href={`${props.graphQl}analytics/query-tunnel-health/`}>
66-
Querying {props.productName} tunnel health check results with GraphQL
67-
</a>
68-
</li>
69-
</ul>
69+
- <a href={`${props.graphQl}analytics/query-bandwidth/`}>Querying {props.productName} tunnel bandwidth analytics with GraphQL</a>
70+
- <a href={`${props.graphQl}analytics/query-tunnel-health/`}>Querying {props.productName} tunnel health check results with GraphQL</a>

src/content/partials/networking-services/mconn/app-aware-policies/breakout-prioritized.mdx

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ params:
66
- jsonType
77
---
88

9-
import { APIRequest, Aside, AnchorHeading, CURL, Render, TabItem, Tabs } from "~/components";
9+
import { APIRequest, Aside, AnchorHeading, CURL, Markdown, Render, TabItem, Tabs } from "~/components";
1010

1111
{ props.magicWord === "breakout" && (
1212
<>
@@ -40,9 +40,15 @@ import { APIRequest, Aside, AnchorHeading, CURL, Render, TabItem, Tabs } from "~
4040
`}
4141
</pre>
4242
<p><em>In the graph above, Applications 1 and 2 are configured to bypass Cloudflare's security filtering, and go straight to the Internet</em></p>
43-
<Aside type="note" header="A note on security">
44-
<p>We recommend <a href="https://www.cloudflare.com/learning/network-layer/what-is-routing/" target="_blank" rel="noopener noreferrer">routing</a> all traffic through our global network for comprehensive security filtering and access controls. However, there may be specific cases where you want a subset of traffic to bypass Cloudflare's security filtering and route it directly to the Internet. You can scope this breakout traffic to specific applications from the Cloudflare dashboard.</p>
45-
<p>Refer to <a href="/magic-wan/reference/traffic-steering/">Traffic steering</a> to learn how Cloudflare routes traffic.</p>
43+
<Aside type="note" title="A note on security">
44+
<Markdown
45+
text={`
46+
We recommend [routing](https://www.cloudflare.com/learning/network-layer/what-is-routing/) all traffic through our global network for comprehensive security filtering and access controls. However, there may be specific cases where you want a subset of traffic to bypass Cloudflare's security filtering and route it directly to the Internet. You can scope this breakout traffic to specific applications from the Cloudflare dashboard.
47+
48+
Refer to [Traffic steering](/magic-wan/reference/traffic-steering/) to learn how Cloudflare routes traffic.
49+
`}
50+
inline={false}
51+
/>
4652
</Aside>
4753
</>
4854
)

0 commit comments

Comments
 (0)