This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# See blog article: | |
# https://blog.zanstra.com/2020/10/05/Pretty-printing-JSON-with-a-twist.html | |
import json, re, sys | |
def json_stringify(obj, indent=2): | |
if not isinstance(indent, str): | |
indent = ' ' * indent |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*Trello rule*/ | |
.card-label .label-text::after { | |
content: ' ⚪️'; /*clear label*/ | |
} | |
.card-label-green .label-text::after { | |
content: ' 🟢'; | |
} | |
.card-label-yellow .label-text::after { | |
content: ' 🟡'; | |
} |
OlderNewer