Every Mermaid diagram type that renders on GitHub, with practical examples.
flowchart LR| // ==UserScript== | |
| // @name Sora Post Auto Unmute | |
| // @namespace http://tampermonkey.net/ | |
| // @version 1.1 | |
| // @description Auto-unmutes Sora posts on load and pauses videos when tab is unfocused. | |
| // @match https://sora.chatgpt.com/* | |
| // @grant none | |
| // @run-at document-end | |
| // ==/UserScript== |
| #!/usr/bin/python3 | |
| import json | |
| import re | |
| import requests | |
| from os import environ, path | |
| # Environment configurations | |
| APP_KEY = environ.get('APP_KEY') |