By using this site, you agree to have cookies stored on your device, strictly for functional purposes, such as storing your session and preferences.

Dismiss

 jinja_utils.py

View raw Download
text/x-script.python • 912 B
Python script, ASCII text executable
        
            
1
from app import app
2
from datetime import datetime
3
import markdown
4
from markupsafe import Markup
5
6
7
@app.template_filter("split")
8
def split(value: str, separator=" ", maxsplit: int = -1):
9
return value.split(separator, maxsplit)
10
11
12
@app.template_filter("strftime")
13
def strftime(value: datetime, syntax: str):
14
return value.strftime(syntax)
15
16
17
@app.template_filter("unixtime")
18
def strftime(value: datetime):
19
return round(value.timestamp())
20
21
22
@app.template_filter("decode")
23
def decode(value: bytes, codec: str = "UTF-8", errors: str = "strict"):
24
return value.decode(codec, errors)
25
26
27
@app.template_filter("markdown")
28
def decode(value: str):
29
return Markup(markdown.make_html(markdown.tokenise(value)))
30
31
32
@app.template_filter("parse_diff_location")
33
def decode(value: str):
34
header = value.split("@@")[1].strip()
35
return [tuple(int(j) for j in i.lstrip("-+").split(",")) for i in header.split(" ")]