##// END OF EJS Templates
try to play with data display priority
try to play with data display priority

File last commit:

r9049:ec3b152d
r9049:ec3b152d
Show More
runme.py
11 lines | 231 B | text/x-python | PythonLexer
#!/usr/bin/env python
# coding: utf-8
from __future__ import print_function
import sys
import io
from converters.template import *
C = ConverterTemplate(tplfile=sys.argv[1])
C.read(sys.argv[2])
print(C.convert().encode('utf-8'))