latest 20 messages by somiaj

+ [8 years ago] somiaj ahh I needed 6 spaces (not 4) to get <pre class="highlighter-rogue">
+ [8 years ago] somiaj hmm, trying to figure out why (using kramdown) code blocks are not surrounded with <pre> tags, they all seem to be surrounded by <div class="highlighter-rogue"> tags. I could make these pre blocks, but would prefer to just use pre blcoks for this (not needing syntax highlighting)
+ [8 years ago] somiaj I am having trouble with github pages and trying to track down why. It was working, but now it is not working. I was told it might be a DNS issue, but my DNS points to the right spot. Also if it was a DNS issue why does the github.io address fail, fvwmorg.github.io is the page in question, it use to work. Any thoughts?
+ [8 years ago] somiaj I haven't used plugins yet, been looking into them. You may need to get those plugins and add those to your _plugin directory, if you don't want to install them from the system or ruby
+ [8 years ago] somiaj hmm, I guess you could do a series of | replace: 'English', 'German' | replace: ...., for all the months, and not need a plugin
+ [8 years ago] somiaj I don't know jekylls internals so unsure if this is achivable without the plugin.
+ [8 years ago] somiaj https://github.com/vwochnik/jekyll-language-plugin/wiki/Date-Translation-Liquid-Tag
+ [8 years ago] somiaj I found this plugin
+ [8 years ago] somiaj hmm, maybe the locale setting is more internal ot jekyll than uses the system
+ [8 years ago] somiaj batteur: I would think it would use your system's date to do this, what locale do you have set when generating the site?
+ [8 years ago] somiaj Is it possible when running jekyll build to only have it render pages that have changed since the last build (this way if I use it with a git repo, only the changes in the commits rebuilt instead of the whole site)
+ [8 years ago] somiaj know of any such plugins already written, most google hits are about mathjax or rendering in a webpage, not just producing a .pdf to be downloaded from a link.
+ [8 years ago] somiaj I was courious, is it possible to have jekyll run pdflatex on .tex files then copy the .pdf into _site?
+ [8 years ago] somiaj think the issue is jekyll is not using my installed version of rogue, but install the other version on my system... any tips?
+ [8 years ago] somiaj trying to write a custom Lexer for rouge syntax highlighting. So far I have my own fork of rouge and the higlighter is working with rougify -l test filename, but using {% highlight test %} {% endhilight %} blocks in jekyll is not picking up this lexer (the standard lexers work)
+ [8 years ago] somiaj hmm, I think I got it. Restarting jekyll serve seemd to do the trick.
+ [8 years ago] somiaj hmm how do I check pygments is being used and not rogue. I have higlighter: pygments in _config.yml, but it isn't finding my custom lexer. I want to check that indeed pymgnets is being used and not rogue. Anyone happen to know a default language that is in pygments but not rogue?
+ [8 years ago] somiaj when searching for info on writting a custom lexer I just found info on pygments and since I know python it wasn't to hard. I don't mind it being slower, or using pythong, just want it to work. I don't want to translte my lexer to rogue at this point.