This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| This is a simple CSS file I pass as -c when generating a HTML | |
| file out of my markdown file with a bunch of links inside, using | |
| Pandoc. | |
| */ | |
| body { | |
| width: 960px; | |
| margin: 0 150px 50px; | |
| font: 13px/1.3 'DejaVu Sans', sans-serif; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| INFMT="markdown" | |
| INEXT="md" | |
| OUTFMT="html" | |
| OUTEXT="html" | |
| CSSFILE="./pandoc.css" | |
| for INFILE in $(ls *.$INEXT) | |
| do |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version='1.0'?> | |
| <!DOCTYPE fontconfig SYSTEM 'fonts.dtd'> | |
| <fontconfig> | |
| <match target="font"> | |
| <edit mode="assign" name="autohint"> | |
| <bool>true</bool> | |
| </edit> | |
| </match> | |
| <!-- Enable sub-pixel rendering --> | |
| <match target="font"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| " Basic settings | |
| set nocompatible " behave like vim, not old vi | |
| set modelines=0 " don't use modelines | |
| set viminfo='20,\"50 " use a viminfo file,... | |
| set history=50 " and limit history | |
| set ruler " show the cursor position | |
| set title " show title on the window | |
| set autoread " reload file if changed outside vim | |
| set autowrite " save file on some commands | |
| set scrolloff=1 " minimal no. of lines around cursor |
OlderNewer