Skip to content

Commit

Permalink
Simplify
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikSchierboom committed Jul 25, 2024
1 parent c09176e commit 4292e83
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions building/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -244,19 +244,19 @@
},
{
"uuid": "81169858-41f0-44da-875c-b1bb432f90b0",
"slug": "tracks/new/enable-syntax-highlighting",
"path": "building/tracks/new/enable-syntax-highlighting.md",
"slug": "tracks/new/syntax-highlighting",
"path": "building/tracks/new/syntax-highlighting.md",
"title": "Enable syntax highlighting"
},
{
"uuid": "374e2596-db7d-433d-b3c0-0f3dc75c453b",
"slug": "tracks/new/enable-syntax-highlighting/static",
"slug": "tracks/new/syntax-highlighting/static",
"path": "building/tracks/new/static-syntax-highlighting.md",
"title": "Static syntax highlighting"
},
{
"uuid": "a443c67c-fb01-48f0-ab44-8710c065b3ea",
"slug": "tracks/new/enable-syntax-highlighting/dynamic",
"slug": "tracks/new/syntax-highlighting/dynamic",
"path": "building/tracks/new/dynamic-syntax-highlighting.md",
"title": "Dynamic syntax highlighting"
},
Expand Down
2 changes: 1 addition & 1 deletion building/tracks/new/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ Once you've completed that step, the next steps are:
- [Prepare for launch](/docs/building/tracks/new/prepare-for-launch)
- [Find Maintainers](/docs/building/tracks/new/find-maintainers)
- [Launch!](/docs/building/tracks/new/launch)
- [Enable syntax highlighting](/docs/building/tracks/new/enable-syntax-highlighting)
- [Enable syntax highlighting](/docs/building/tracks/new/syntax-highlighting)
- [Implement additional tooling](/docs/building/tracks/new/implement-tooling)
- [Prepare for open source contributions from strangers](/docs/building/tracks/new/prepare-for-contributions)
2 changes: 1 addition & 1 deletion building/tracks/new/dynamic-syntax-highlighting.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ There is only one place where this happens, and that is the online editor.

```exercism/note
Code snippets, iterations, and the like are _static_ as the user can't change their code on the fly.
If you'd like to know more of how we handle static syntax highlighting, check the [static syntax highlighting docs](/docs/building/tracks/new/enable-syntax-highlighting/static).
If you'd like to know more of how we handle static syntax highlighting, check the [static syntax highlighting docs](/docs/building/tracks/new/syntax-highlighting/static).
```

## Implementation
Expand Down
2 changes: 1 addition & 1 deletion building/tracks/new/static-syntax-highlighting.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ This includes code snippets, iterations, and more.

```exercism/note
The online editor does _not_ use static syntax highlighting as the user can change the code on the fly.
If you'd like to know more of how we handle syntax highlighting in the online editor, check the [dynamic syntax highlighting docs](/docs/building/tracks/new/enable-syntax-highlighting/dynamic).
If you'd like to know more of how we handle syntax highlighting in the online editor, check the [dynamic syntax highlighting docs](/docs/building/tracks/new/syntax-highlighting/dynamic).
```

## Implementation
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# Enable syntax highlighting
# Syntax highlighting

There are two types of syntax highlighting on the website:

1. Highlighting _static_ code (code snippets, iterations, and such).
Check [static syntax highlighting docs](/docs/building/tracks/new/enable-syntax-highlighting/static) for more information.
Check [static syntax highlighting docs](/docs/building/tracks/new/syntax-highlighting/static) for more information.
2. Highlighting _dynamic_ code (the online editor).
Check [dynamic syntax highlighting docs](/docs/building/tracks/new/enable-syntax-highlighting/dynamic) for more information.
Check [dynamic syntax highlighting docs](/docs/building/tracks/new/syntax-highlighting/dynamic) for more information.

```exercism/note
The requirements for static and dynamic syntax highlighting are _very_ different, which is why they use different libraries.
Expand Down

0 comments on commit 4292e83

Please sign in to comment.