diff options
author | Mattias Andrée <maandree@kth.se> | 2021-03-07 20:50:01 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2021-03-07 20:50:01 +0100 |
commit | 6d4d0823dc508b35c53735a872190ad43aa60315 (patch) | |
tree | 4ff15b8e91882f21393a0815a54e4865d956c040 /info/texise | |
parent | Assume all EDID 1.x are compatible (diff) | |
download | libgamma-6d4d0823dc508b35c53735a872190ad43aa60315.tar.gz libgamma-6d4d0823dc508b35c53735a872190ad43aa60315.tar.bz2 libgamma-6d4d0823dc508b35c53735a872190ad43aa60315.tar.xz |
Start replacing info manual with man pages
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'info/texise')
-rwxr-xr-x | info/texise | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/info/texise b/info/texise deleted file mode 100755 index 48267e9..0000000 --- a/info/texise +++ /dev/null @@ -1,16 +0,0 @@ -#!/usr/bin/env python -# -*- mode: python, encoding: utf-8 -*- -# See LICENSE file for copyright and license details. - -import sys - -data = sys.stdin.read()[:-1] - -n = 0 -while '`' in data: - i = data.find('`') - replacement = '@code{' if n % 2 == 0 else '}' - data = data[:i] + replacement + data[i + 1:] - n += 1 - -print(data) |