To create an anchor to a heading in github flavored markdown.
Add - characters between each word in the heading and wrap the value in parens (#some-markdown-heading) so your link should look like so:
[create an anchor](#anchors-in-markdown)
| #!/usr/local/bin/python3 | |
| # For Gigabyte M27Q KVM connected over USB-C | |
| # | |
| # Reads brightness value of builtin display from system, adapts it (Lunar-style) and sends over USB command to external display | |
| # | |
| # You need PyUSB and PyObjC | |
| # | |
| # Not much testing was done so far, only on MBP A1990 15" 2019 i7 555X | |
| # |
| #!/usr/bin/env python2 | |
| import SimpleHTTPServer | |
| import SocketServer | |
| import logging | |
| PORT = 8000 | |
| class GetHandler(SimpleHTTPServer.SimpleHTTPRequestHandler): |
| # By Jake VanderPlas | |
| # License: BSD-style | |
| import matplotlib.pyplot as plt | |
| import numpy as np | |
| def discrete_cmap(N, base_cmap=None): | |
| """Create an N-bin discrete colormap from the specified input map""" |