From 418eb81d05949a99f33eb1738c75dcc1cae3199e Mon Sep 17 00:00:00 2001 From: Rohit Tanwar Date: Sun, 21 Jan 2018 14:53:43 +0530 Subject: [PATCH] table of content --- README.md | 6 +++--- scripts/readme.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index e394e6b5d..050a8d258 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ ## Table of Content ### :books: List -
View contents
  • chunk
  • +
    View contents
    • chunk
    • compact
    • count_occurences
    • deep_flatten
    • @@ -23,12 +23,12 @@ ### :scroll: String -
      View contents
      • count_vowels
      • +
        View contents
        ### :heavy_division_sign: Math -
        View contents
        • gcd
        • +
          View contents
          • gcd
          • lcm
          • max_n
          • min_n
          • diff --git a/scripts/readme.py b/scripts/readme.py index a61a182a0..663615be5 100644 --- a/scripts/readme.py +++ b/scripts/readme.py @@ -36,7 +36,7 @@ toAppend = '' tag_dict = tagger() toAppend += '## Table of Content \n' for category in tag_dict: - toAppend = toAppend + '### ' + EMOJIS[category] + ' ' + title_case(category) +'\n\n
            View contents
              ' + toAppend = toAppend + '### ' + EMOJIS[category] + ' ' + title_case(category) +'\n\n
              View contents
                ' for snippet in tag_dict[category]: toAppend += f'
              • {snippet}
              • \n' toAppend += '
              \n\n'