Mercurial > p > roundup > code
view tools/base64 @ 7432:e3b35dcf0dcb
Shorten/simplify doc TOC by removing redundant Roundup in titles.
We already have a Roundup label at the top of the page. Remove the
word Roundup from each item. Roundup Features -> Features etc.
The titles for the pages keep the word Roundup since it will show up
on the tab/browser window title etc.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Mon, 29 May 2023 19:53:06 -0400 |
| parents | c75defc1c2f0 |
| children | 9c3ec0a5c7fc |
line wrap: on
line source
#!/usr/bin/env python from __future__ import print_function import zlib, base64, sys print(base64.encodestring(zlib.compress(sys.stdin.read())))
