Create 2019-8-12-code-snippets.md

This commit is contained in:
Amit Merchant 2019-08-12 17:10:45 +05:30 committed by GitHub
parent a8b8158dcb
commit 363e3dbc42
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 42 additions and 0 deletions

View File

@ -0,0 +1,42 @@
---
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!"
```