Parcourir la source

Using .pd file extension

Along with https://github.com/vim-pandoc/vim-pandoc
Swaroop C H il y a 12 ans
Parent
commit
14caada2ab
9 fichiers modifiés avec 8 ajouts et 8 suppressions
  1. 0 0
      01-frontpage.pd
  2. 0 0
      02-preface.pd
  3. 0 0
      03-intro.pd
  4. 0 0
      04-installation.pd
  5. 0 0
      05-first-steps.pd
  6. 0 0
      06-basics.pd
  7. 0 0
      07-operators-expressions.pd
  8. 0 0
      08-control-flow.pd
  9. 8 8
      fabfile.py

01-frontpage.md → 01-frontpage.pd


02-preface.md → 02-preface.pd


03-intro.md → 03-intro.pd


04-installation.md → 04-installation.pd


05-first-steps.md → 05-first-steps.pd


06-basics.md → 06-basics.pd


07-operators-expressions.md → 07-operators-expressions.pd


08-control-flow.md → 08-control-flow.pd


+ 8 - 8
fabfile.py

@@ -13,42 +13,42 @@ FULL_PROJECT_NAME = 'byte_of_{}'.format(SHORT_PROJECT_NAME)
 # NOTE Slugs MUST be lower-case
 MARKDOWN_FILES = [
     {
-        'file': '01-frontpage.md',
+        'file': '01-frontpage.pd',
         'slug': "python",
         'title': "Python",
     },
     {
-        'file': '02-preface.md',
+        'file': '02-preface.pd',
         'slug': "python_en-preface",
         'title': "Python : Preface",
     },
     {
-        'file': '03-intro.md',
+        'file': '03-intro.pd',
         'slug': "python_en-introduction",
         'title': "Python : Introduction",
     },
     {
-        'file': '04-installation.md',
+        'file': '04-installation.pd',
         'slug': "python_en-installation",
         'title': "Python : Installation",
     },
     {
-        'file': '05-first-steps.md',
+        'file': '05-first-steps.pd',
         'slug': "python_en-first_steps",
         'title': "Python : First Steps",
     },
     {
-        'file': '06-basics.md',
+        'file': '06-basics.pd',
         'slug': "python_en-basics",
         'title': "Python : Basics",
     },
     {
-        'file': '07-operators-expressions.md',
+        'file': '07-operators-expressions.pd',
         'slug': "python_en-operators_and_expressions",
         'title': "Python : Operators and Expressions",
     },
     {
-        'file': '08-control-flow.md',
+        'file': '08-control-flow.pd',
         'slug': "python_en-control_flow",
         'title': "Python : Control Flow",
     },