1
0
silverbullet/website/Markdown/Syntax Highlighting.md
Zef Hemel 0313565610
Complete redo of content indexing and querying (#517)
Complete redo of data store
Introduces live queries and live templates
2023-10-03 14:16:33 +02:00

71 lines
677 B
Markdown

SilverBullet comes with syntax highlighters for various programming languages. This page demonstrates some:
```yaml
name: Pete
```
```javascript
function myFunc() {
console.log("Hello World!");
}
```
```typescript
function myFunc(name: string) {
console.log("Hello", name);
}
```
```sql
select * from my_table;
```
```c++
class MyClass {
}
```
```rust
fn main() {
// Print text to the console
println!("Hello World!");
}
```
```swift
fn myFun() {
}
```
```xml
<MyTag attribute="cool">
</MyTag>
```
```html
<b>Regular HTML</b>
```
```kotlin
class MyClass {
}
```
```dart
void main() {
print('Hello, World!');
}
```
```c
void main() {
}
```