aboutsummaryrefslogtreecommitdiffstats
path: root/info/texise
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2021-03-07 20:50:01 +0100
committerMattias Andrée <maandree@kth.se>2021-03-07 20:50:01 +0100
commit6d4d0823dc508b35c53735a872190ad43aa60315 (patch)
tree4ff15b8e91882f21393a0815a54e4865d956c040 /info/texise
parentAssume all EDID 1.x are compatible (diff)
downloadlibgamma-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-xinfo/texise16
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)