Skip to content

Commit 63dcf0c

Browse files
authored
Change YAML titles to H1 for better rendering (#1419)
## Summary TSIA -- realized the YAML metadata headers didn't render well on the templates page ## How was it tested? Localhost
1 parent cd34606 commit 63dcf0c

File tree

16 files changed

+17
-48
lines changed

16 files changed

+17
-48
lines changed

examples/development/csharp/hello-world/README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
---
2-
title: C# and .NET
3-
---
1+
# C# and .NET
42

53
C# and .NET projects can be easily generated in Devbox by adding the dotnet SDK to your project. You can then create new projects using `dotnet new`
64

examples/development/fsharp/hello-world/README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
---
2-
title: F# and .NET
3-
---
1+
# F# and .NET
42

53
F# and .NET projects can be easily generated in Devbox by adding the dotnet SDK to your project. You can then create new projects using `dotnet new`
64

examples/development/go/hello-world/README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
---
2-
title: Go
3-
---
1+
# Go
42

53
Go projects can be run in Devbox by adding the Go SDK to your project. If your project uses cgo or compiles against C libraries, you should also include them in your packages to ensure Go can compile successfully
64

examples/development/haskell/README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
---
2-
title: Haskell
3-
---
1+
# Haskell
42

53
Haskell projects that use the Stack Framework can be run in Devbox by adding the Stack and the Cabal packages to your project. You may also want to include libraries that Stack requires for compilation (described below)
64

examples/development/java/gradle/hello-world/README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
---
2-
title: Java
3-
---
1+
# Java
42

53
In addition to installing the JDK, you'll need to install either the Maven or Gradle build systems in your shell.
64

examples/development/java/maven/hello-world/README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
---
2-
title: Java
3-
---
1+
# Java
42

53
In addition to installing the JDK, you'll need to install either the Maven or Gradle build systems in your shell.
64

examples/development/nodejs/nodejs-npm/README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
---
2-
title: NodeJS
3-
---
1+
# NodeJS
42

53
Most NodeJS Projects will install their dependencies locally using NPM or Yarn, and thus can work with Devbox with minimal additional configuration. Per project packages can be managed via NPM or Yarn.
64

examples/development/nodejs/nodejs-pnpm/README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
---
2-
title: NodeJS
3-
---
1+
# NodeJS
42

53
Most NodeJS Projects will install their dependencies locally using NPM or Yarn, and thus can work with Devbox with minimal additional configuration. Per project packages can be managed via NPM or Yarn.
64

examples/development/nodejs/nodejs-yarn/README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
---
2-
title: NodeJS
3-
---
1+
# NodeJS
42

53
Most NodeJS Projects will install their dependencies locally using NPM or Yarn, and thus can work with Devbox with minimal additional configuration. Per project packages can be managed via NPM or Yarn.
64

examples/development/php/php8.1/README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
---
2-
title: PHP
3-
---
1+
# PHP
42

53
PHP projects can manage most of their dependencies locally with `composer`. Some PHP extensions, however, need to be bundled with PHP at compile time.
64

0 commit comments

Comments
 (0)