mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-03 21:43:21 +00:00 
			
		
		
		
	
		
			
				
	
	
	
		
			512 B
		
	
	
	
	
	
	
	
			
		
		
	
	
			512 B
		
	
	
	
	
	
	
	
What you type
Inline code span: `let x = 5`
Code block:
```
def f(x):
   return x+1
```
Syntax highlighting:
```python
def fib(n):
    # TODO: base case
    return fib(n-1) + fib(n-2)
```
!!! tip ""
You can also use `~~~` to start code blocks, or just indent the code 4 or more
spaces.
What it looks like
!!! tip ""
A widget in the top right corner of code blocks allows you to easily
copy code to your clipboard.
			
		