Skip to content
Permalink
Browse files
Licencing to GPL
  • Loading branch information
aa9863 committed Jul 5, 2020
1 parent bfa15ed commit 8a4a8443784c97db9a66f0fe3e39de023076e8a6
Show file tree
Hide file tree
Showing 6 changed files with 769 additions and 12 deletions.
674 COPYING

Large diffs are not rendered by default.

@@ -1,3 +1,22 @@
"""
reMarkable: Convert markdown to docs using Templates
Copyright (C) 2020 Dan Goldsmith (djgoldsmith@googlemail.com)
This program 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.
This program 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 this program. If not, see <https://www.gnu.org/licenses/>.
"""


"""
Use Markdown to generate various uni documents
@@ -10,18 +29,6 @@ Two use cases at the moment:
- Input File
1. Called with just an input file. Which contains the template.
I would then plumb this to a command line script.
```
markdownmark <input> -t [template] [output]
```
Exceptions to check for
- jinja2.exceptions.TemplateNotFound
Things to think about:
1. Batch conversion, point him at a directory
@@ -1,3 +1,22 @@
"""
reMarkable: Convert markdown to docs using Templates
Copyright (C) 2020 Dan Goldsmith (djgoldsmith@googlemail.com)
This program 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.
This program 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 this program. If not, see <https://www.gnu.org/licenses/>.
"""


"""
File to read Markdown files and generate
whatever AST we need to generate
@@ -1,3 +1,22 @@
"""
reMarkable: Convert markdown to docs using Templates
Copyright (C) 2020 Dan Goldsmith (djgoldsmith@googlemail.com)
This program 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.
This program 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 this program. If not, see <https://www.gnu.org/licenses/>.
"""


"""And a Class for Rendering Files
@@ -1,3 +1,22 @@
"""
reMarkable: Convert markdown to docs using Templates
Copyright (C) 2020 Dan Goldsmith (djgoldsmith@googlemail.com)
This program 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.
This program 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 this program. If not, see <https://www.gnu.org/licenses/>.
"""


import logging
import argparse

@@ -1,3 +1,22 @@
"""
reMarkable: Convert markdown to docs using Templates
Copyright (C) 2020 Dan Goldsmith (djgoldsmith@googlemail.com)
This program 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.
This program 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 this program. If not, see <https://www.gnu.org/licenses/>.
"""


"""
possibly a little overkill, but I may want
to do per section stuff. Saves Refactoring down the line

0 comments on commit 8a4a844

Please sign in to comment.