mirror of
https://github.com/minoplhy/crappy-reverie.git
synced 2024-11-14 21:36:57 +00:00
43 lines
573 B
Markdown
43 lines
573 B
Markdown
|
---
|
||
|
layout: post
|
||
|
title: Code snippets in a blog post
|
||
|
categories: [HTML,Code]
|
||
|
---
|
||
|
|
||
|
This post demonstrate the use of code snippets in the theme.
|
||
|
|
||
|
This is a raw snippet:
|
||
|
|
||
|
```
|
||
|
hello world
|
||
|
123
|
||
|
This is a text snippet
|
||
|
```
|
||
|
|
||
|
This is a PHP snippet:
|
||
|
|
||
|
```js
|
||
|
<?php
|
||
|
echo 'Hello, World!';
|
||
|
?>
|
||
|
```
|
||
|
|
||
|
This is a JavaScript snippet:
|
||
|
|
||
|
```js
|
||
|
const add = (a, b) => a + b
|
||
|
const minus = (a, b) => a - b
|
||
|
|
||
|
console.log(add(100,200)) // 300
|
||
|
console.log(minus(100,200)) // -100
|
||
|
```
|
||
|
|
||
|
This is a Python snippet:
|
||
|
|
||
|
```python
|
||
|
def say_hello():
|
||
|
print("hello world!")
|
||
|
|
||
|
say_hello() // "hello world!"
|
||
|
```
|