Skip to content

Commit 9b7704e

Browse files
committed
Update md formatting, remove backup files
Signed-off-by: Marc Duiker <[email protected]>
1 parent 4bdf229 commit 9b7704e

File tree

272 files changed

+982
-45618
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

272 files changed

+982
-45618
lines changed

daprdocs/assets/scss/_content.scss

Lines changed: 52 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767

6868
a, a:visited {
6969
color: $secondary;
70-
text-decoration: none;;
70+
text-decoration: none;
7171
}
7272

7373
a:hover {
@@ -95,6 +95,15 @@
9595
margin-bottom: 1.5rem;
9696
font-weight: $font-weight-bold;
9797
}
98+
99+
.highlight i.fas {
100+
// To prevent the margin change when doing mouseover.
101+
display: inline !important;
102+
}
103+
104+
.highlight {
105+
margin: 0.5rem 0;
106+
}
98107
}
99108

100109
.text-white a, .text-white a:visited {
@@ -126,9 +135,50 @@
126135
}
127136
}
128137

129-
.carddeck .card {
138+
.card-deck {
139+
display: flex;
140+
flex-flow: row wrap;
141+
margin-right: -15px;
142+
margin-left: -15px;
143+
}
144+
145+
.card {
130146
flex: 1 0;
131147
margin-right: 15px;
132148
margin-bottom: 15px;
133149
margin-left: 15px;
150+
}
151+
152+
.card h5 {
153+
color: $secondary;
154+
}
155+
156+
.td-page-meta {
157+
158+
a, a:visited {
159+
color: $secondary;
160+
text-decoration: none;
161+
}
162+
163+
a:hover {
164+
color: $primary;
165+
text-decoration: none;
166+
}
167+
}
168+
169+
nav#TableOfContents {
170+
margin-top: 1.5em;
171+
}
172+
173+
.tab-content {
174+
175+
max-width: 100% !important;
176+
177+
.tab-pane {
178+
background-color: white !important;
179+
max-width: 100% !important;
180+
border-left: none !important;
181+
border-right: none !important;
182+
border-bottom: none !important;
183+
}
134184
}

daprdocs/content/en/concepts/isolation-concept.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Dapr supports namespacing in service invocation calls between applications, when
1212

1313
To get started, create and configure your namespace.
1414

15-
{{% tabpane %}}
15+
{{< tabpane text=true >}}
1616

1717
{{% tab "Self-Hosted" %}}
1818

@@ -33,7 +33,7 @@ Then deploy your applications into this namespace.
3333

3434
{{% /tab %}}
3535

36-
{{% /tabpane %}}
36+
{{< /tabpane >}}
3737

3838
Learn how to use namespacing throughout Dapr:
3939

@@ -42,4 +42,3 @@ Learn how to use namespacing throughout Dapr:
4242
- Components:
4343
- [How to: Configure pub/sub components with multiple namespaces]({{% ref pubsub-namespaces %}})
4444
- [Scope components to one or more applications]({{% ref component-scopes %}})
45-
- [Namespaced actors]({{% ref namespaced-actors %}})

daprdocs/content/en/contributing/docs-contrib/contributing-docs.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ Tabs are made possible through [Hugo shortcodes](https://gohugo.io/content-manag
189189
The overall format is:
190190

191191
```
192-
{{% tabpane %}}
192+
{{< tabpane text=true >}}
193193
194194
{{% tab "Tab1" %}}
195195
[Content for Tab1]
@@ -199,15 +199,15 @@ The overall format is:
199199
[Content for Tab2]
200200
{{% /tab %}}
201201
202-
{{% /tabpane %}}
202+
{{< /tabpane >}}
203203
```
204204

205205
All content you author will be rendered to markdown, so you can include images, code blocks, YouTube videos, and more.
206206

207207
#### Example
208208

209209
````
210-
{{% tabpane %}}
210+
{{< tabpane text=true >}}
211211
212212
{{% tab "Windows" %}}
213213
```powershell
@@ -227,12 +227,12 @@ brew install dapr/tap/dapr-cli
227227
```
228228
{{% /tab %}}
229229
230-
{{% /tabpane %}}
230+
{{< /tabpane >}}
231231
````
232232

233233
This example will render to this:
234234

235-
{{% tabpane %}}
235+
{{< tabpane text=true >}}
236236

237237
{{% tab "Windows" %}}
238238

@@ -258,7 +258,7 @@ brew install dapr/tap/dapr-cli
258258

259259
{{% /tab %}}
260260

261-
{{% /tabpane %}}
261+
{{< /tabpane >}}
262262

263263
### Embedded code snippets
264264

daprdocs/content/en/contributing/docs-contrib/maintainer-guide.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -408,4 +408,3 @@ To bring updates to the SDK docs live to the Dapr docs site, you need to perform
408408

409409
## Next steps
410410

411-
For guidance on contributing to Dapr docs, read the [Contributor Guide]({{% ref contributing-docs %}}).

daprdocs/content/en/developing-applications/building-blocks/actors/actor-reentrancy.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ The `maxStackDepth` parameter sets a value that controls how many reentrant call
2929

3030
The reentrant actor must provide the appropriate configuration. This is done by the actor's endpoint for `GET /dapr/config`, similar to other actor configuration elements.
3131

32-
{{% tabpane %}}
32+
{{< tabpane text=true >}}
3333

3434
{{% tab ".NET" %}}
3535
<!--dotnet-->
@@ -169,7 +169,7 @@ func reentrantCallHandler(w http.ResponseWriter, r *http.Request) {
169169

170170
{{% /tab %}}
171171

172-
{{% /tabpane %}}
172+
{{< /tabpane >}}
173173

174174
## Demo
175175

daprdocs/content/en/developing-applications/building-blocks/actors/actor-reentrancy.md.backup

Lines changed: 0 additions & 189 deletions
This file was deleted.

daprdocs/content/en/developing-applications/building-blocks/actors/actors-runtime-config.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ You can modify the default Dapr actor runtime behavior using the following confi
2121

2222
## Examples
2323

24-
{{% tabpane %}}
24+
{{< tabpane text=true >}}
2525

2626
{{% tab ".NET" %}}
2727
```csharp
@@ -193,7 +193,7 @@ func configHandler(w http.ResponseWriter, r *http.Request) {
193193

194194
{{% /tab %}}
195195

196-
{{% /tabpane %}}
196+
{{< /tabpane >}}
197197

198198
## Related links
199199

0 commit comments

Comments
 (0)