git clone https://gist.github.com/ishu3101/6fb35afd237e42ef25f9
mv 6fb35afd237e42ef25f9 ConvertTo-Markdown
cd ConvertTo-Markdown
| #!/usr/bin/env python3 | |
| # NOTE: this script is deprecated; | |
| # maintained version with SVG icons: https://github.com/glowinthedark/index-html-generator/ | |
| # --- | |
| # Copyright 2020 glowinthedark | |
| # | |
| # Licensed under the Apache License, Version 2.0 (the "License"); | |
| # you may not use this file except in compliance with the License. |
| #!/usr/bin/env python3 | |
| # Recursively generate index.html files for | |
| # all subdirectories in a directory tree | |
| ########################################################################## | |
| ## ❗️❗️❗️ WARNING: This version is outdated and unmaintained! | |
| ## For an up-to-date version with cleaner CSS styling see: | |
| ## https://gist.github.com/glowinthedark/625eb4caeca12c5aa52778a3b4b0adb4 | |
| ########################################################################## |
| <RelativeLayout | |
| xmlns:android="http://schemas.android.com/apk/res/android" | |
| android:layout_width="match_parent" | |
| android:layout_height="match_parent" | |
| android:padding="16dp"> | |
| <TextView | |
| android:text="I’m in this corner" | |
| android:layout_height="wrap_content" | |
| android:layout_width="wrap_content" |
| #!/usr/bin/perl | |
| # Create index.html with a list of all files. | |
| # Written by Ilya Zverev, licensed WTFPL. | |
| use strict; | |
| use POSIX qw(strftime); | |
| use HTML::Template; | |
| use File::Basename; | |
| use Getopt::Long; |