From 911fd27e4c4c61b978c2370f7e92b051f0636614 Mon Sep 17 00:00:00 2001 From: rsiddharth Date: Mon, 14 Dec 2015 07:48:37 -0500 Subject: Removed lpschedule package. --- lpschedule/__init__.py | 0 lpschedule/htmlrender.py | 34 ---------------------------------- lpschedule/mark2html.py | 44 -------------------------------------------- 3 files changed, 78 deletions(-) delete mode 100644 lpschedule/__init__.py delete mode 100644 lpschedule/htmlrender.py delete mode 100644 lpschedule/mark2html.py diff --git a/lpschedule/__init__.py b/lpschedule/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/lpschedule/htmlrender.py b/lpschedule/htmlrender.py deleted file mode 100644 index 5375524..0000000 --- a/lpschedule/htmlrender.py +++ /dev/null @@ -1,34 +0,0 @@ -import mistune -import re - - -class HtmlRender(mistune.Renderer): - """ - Subclassing Renderer classes to customize HTML content. - - """ - def header(self, text, level, raw=None): - if level == 2: - return '
\n\t
\n\t\t%s\n\t\t\n\t
\n
\n' % (level, text+ \ - '\n\t\t', level) - elif level == 3: - return '\n
'+ \ - '\n\t
'+ \ - '\n\t\t
\n\t\t\t%s\n\t\t
\n\t
\n
\n' % (level, text, level) - - return '%s\n' % (level, text, level) - - - def paragraph(self, text): - _get_room_ptr = re.compile(r'(Room\s[\d]*\-[\d]*)') - if _get_room_ptr.search(text.strip(' ')) is not None: - str = _get_room_ptr.findall(text.strip(' ')) - return '

%s

\n%s' \ - % (''.join(str), _get_room_ptr.sub('',text.strip(' '))) + \ - '\n\n' - else: - return '

%s

\n' % text.strip(' ') \ No newline at end of file diff --git a/lpschedule/mark2html.py b/lpschedule/mark2html.py deleted file mode 100644 index 587208d..0000000 --- a/lpschedule/mark2html.py +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright (C) 2015 lpschedule-generator contributors. See CONTRIBUTORS. -# -# This file is part of lpschedule-generator. -# -# lpschedule-generator is free software: you can redistribute it -# and/or modify it under the terms of the GNU General Public License -# as published by the Free Software Foundation, either version 3 of -# the License, or (at your option) any later version. -# -# lpschedule-generator is distributed in the hope that it will be useful, but -# WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with lpschedule-generator (see COPYING). If not, see -# . - -import mistune - -class Mark2html(object): - """ - Converts Markdown to HTML format. `mistune` parser is used. - - Attributes: - FileName : Markdown File descriptor - """ - def __init__(self, FileName): - """ - Returns a Mark2html object - """ - self.FileName = FileName - - def PrintHTML(self): - """ - Prints HTML format of FileName - """ - print mistune.markdown(self.FileName.read()) - - def GetHTML(self): - """ - Returns HTML format of FileName - """ - return mistune.markdown(self.FileName.read()) -- cgit v1.2.3