I am trying to make my site simpler. That means not having to carry a txt2tags plugin to convert files.
Now there are two kinds of txt2tags files in my site:
Old legacy .t2t files that were added together with their relative .html file, with no front matter (they are not processed by Jekyll)
Pages that I have added to Jekyll as .t2t files and are converted by the txt2tags_converter.rb plugin when doing jekyll build.
The first legacy files I'll handle in the future.
For now I'm interested in removing the txt2tags from Jekyll build, so I can ditch the plugin. You must convert these files to Markdown or to plain HTML:
[x] /_includes/urls.t2t
[x] /articles/_config.t2t
[x] /articles/applescript-install.t2t
[x] /articles/applescript-vs-python.t2t
[x] /articles/dropbox-ignore-folder.t2t
[x] /articles/dropbox-iphoto-11.t2t
[x] /articles/dropbox-iphoto-import.t2t
[x] /articles/dropbox-selective-sync.t2t
[x] /articles/dropbox-symlinks.t2t
[x] /articles/hungry-sumo-high-scores.t2t
[x] /articles/iphoto-symlinks.t2t
[x] /articles/sed-abc.t2t
[x] /articles/shell-reference.t2t
[x] /blog-arquivo.t2t
[x] /cygwin/index.t2t
[x] /cygwin/rdl/artigo-rdl.t2t
[x] /cygwin/rdl/artigo-v0.t2t
[x] /cygwin/rdl/bug.t2t
[x] /cygwin/rdl/index.t2t
Plain HTML is preferred since Markdown is another dependency that adds complexity to the site.
I am trying to make my site simpler. That means not having to carry a txt2tags plugin to convert files.
Now there are two kinds of txt2tags files in my site:
.t2t
files that were added together with their relative.html
file, with no front matter (they are not processed by Jekyll).t2t
files and are converted by the txt2tags_converter.rb plugin when doingjekyll build
.The first legacy files I'll handle in the future.
For now I'm interested in removing the txt2tags from Jekyll build, so I can ditch the plugin. You must convert these files to Markdown or to plain HTML:
Plain HTML is preferred since Markdown is another dependency that adds complexity to the site.