From e2c3207537cd891cb080554c4e5b42ef634e8809 Mon Sep 17 00:00:00 2001 From: Peng Li Date: Fri, 3 Mar 2017 23:15:19 +0800 Subject: [PATCH] blog - re construct the blog files --- blog.el | 66 ++++++++++++ linux-note.org | 36 ------- ...ackage-for-working-with-multiple-workspaces.org | 0 .../Blog-with-org-mode.org | 5 +- .../My-work-flow-with-tmux-vim-zsh-iterm.org | 0 posts/elisp-tips.org | 5 + git-note.org => posts/git-note.org | 0 posts/linux-note.org | 68 ++++++++++++ posts/org-tips.org | 8 ++ posts/print-vs-message-in-emacs.org | 0 posts/raspberrypi-note.org | 28 +++++ posts/test.org | 4 + res/code.css | 75 +++++++++++++ res/org.css | 117 +++++++++++++++++++++ {css => res}/worg.css | 0 sitemap.org | 12 +++ 16 files changed, 387 insertions(+), 37 deletions(-) create mode 100644 blog.el delete mode 100644 linux-note.org rename A-new-package-for-working-with-multiple-workspaces.org => posts/A-new-package-for-working-with-multiple-workspaces.org (100%) rename Blog-with-org-mode.org => posts/Blog-with-org-mode.org (96%) rename My-work-flow-with-tmux-vim-zsh-iterm.org => posts/My-work-flow-with-tmux-vim-zsh-iterm.org (100%) create mode 100644 posts/elisp-tips.org rename git-note.org => posts/git-note.org (100%) create mode 100644 posts/linux-note.org create mode 100644 posts/org-tips.org create mode 100644 posts/print-vs-message-in-emacs.org create mode 100644 posts/raspberrypi-note.org create mode 100644 posts/test.org create mode 100644 res/code.css create mode 100644 res/org.css rename {css => res}/worg.css (100%) create mode 100644 sitemap.org diff --git a/blog.el b/blog.el new file mode 100644 index 0000000..4ff8179 --- /dev/null +++ b/blog.el @@ -0,0 +1,66 @@ +;;; blog.el --- Config file used to export blog -*- lexical-binding: t; -*- + +;; Copyright (C) 2017 Peng Li + +;; Author: Peng Li +;; Keywords: lisp + +;; This program is free software; you can redistribute it and/or modify +;; it under the terms of the GNU General Public License as published by +;; the Free Software Foundation, either version 3 of the License, or +;; (at your option) any later version. + +;; This program is distributed in the hope that it will be useful, +;; but WITHOUT ANY WARRANTY; without even the implied warranty of +;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +;; GNU General Public License for more details. + +;; You should have received a copy of the GNU General Public License +;; along with this program. If not, see . + +;;; Commentary: + +;; This is emacs config used to export Blog Org files in batch mode. + +;;; Code: + +(require 'org) +(require 'ox-publish) +(require 'htmlize) + +;; To prevent inline-css when exporting html. will use external css +(setq org-html-htmlize-output-type 'css) + +(setq org-publish-project-alist + `( + ("org-notes" + :base-directory "~/Private/blog/" + :base-extension "org" + :publishing-directory "~/Private/publish_html" + :recursive t + :publishing-function org-html-publish-to-html + :headline-levels 4 + :section-numbers nil + :auto-preamble t + :auto-sitemap t ;Generate sitmap.org automagicaly... + :sitemap-filename "sitemap.org" ;... call it sitemap.org (it's the default )... + :sitemap-title "Sitemap" + + :html-table-of-contents nil + :html-postamble nil ;dont export creator auto validation info in html postamble div + :html-link-home "/" + :html-head "" + :html-head-include-default-style nil + :html-head-include-scripts nil) + ("org-static" + :base-directory "~/Private/blog/" + :base-extension "css\\|js\\|png\\|gif\\|pdf\\|mp3\\|ogg\\|swf" + :publishing-directory "~/Private/publish_html" + :recursive t + :publishing-function org-publish-attachment + :table-of-contents nil) + ("org" :components ("org-notes" "org-static")))) + + +(provide 'blog) +;;; blog.el ends here diff --git a/linux-note.org b/linux-note.org deleted file mode 100644 index 03ab029..0000000 --- a/linux-note.org +++ /dev/null @@ -1,36 +0,0 @@ -#+TITLE: Note of Linux (Debian) -#+AUTHOR: Peng Li -#+EMAIL: seudut@gmail.com -#+DATE: 2016-12-23 - -* Install and Environment -** Install ios in virtual box -** install essential softwares -*** Change the sourece.list -163 mirrors -#+BEGIN_EXAMPLE - deb http://mirrors.163.com/debian stable main non-free contrib - deb-src http://mirrors.163.com/debian stable main non-free contrib -#+END_EXAMPLE -*** Install essential packages -- ~netselect-apt~ - Find the fastest apt mirror server -- vim -- sudo - Add user to sudo group or change the =/etc/sudoers= to use =sudo= command - #+BEGIN_SRC sh :results output replace - sudo adduser sudo - #+END_SRC -- git, openssh-server, emacs, build-essential, tmux, zsh - -*** Build Emacs from source -1. gnutls error, to fix, install =gnutls-dev= and =pkg-config= -* Issue -1. See the router table on mac -#+BEGIN_SRC sh :results output replace - netstat -nr -#+END_SRC - -* VirtualBox -** HostOnly and NAT -** Port forward, web server diff --git a/A-new-package-for-working-with-multiple-workspaces.org b/posts/A-new-package-for-working-with-multiple-workspaces.org similarity index 100% rename from A-new-package-for-working-with-multiple-workspaces.org rename to posts/A-new-package-for-working-with-multiple-workspaces.org diff --git a/Blog-with-org-mode.org b/posts/Blog-with-org-mode.org similarity index 96% rename from Blog-with-org-mode.org rename to posts/Blog-with-org-mode.org index ea71f87..afc0759 100644 --- a/Blog-with-org-mode.org +++ b/posts/Blog-with-org-mode.org @@ -7,6 +7,9 @@ #+OPTIONS: toc:nil date:t + + + 今天总算把 Blog 的框架大致弄好了。主要参考了 =Org-mode= 的 tutorial, [[http://orgmode.org/worg/org-tutorials/org-publish-html-tutorial.html#Special-comment-section][Publishing Org-mode files to HTML]] 和 [[https://ogbe.net/blog/blogging_with_org.html][Blogging using org-mode (and nothing else)]]。 其中 =css= , 利用的是 =worg.css=, 并参考了[[http://dayigu.github.io/WhyUseOrgModeToWriteBlog.html][为什么用org-mode写 blog?]] 和 [[http://wiki.houye.xyz/blogwithorg-mode.html][用org-mode写博客]]。 @@ -33,7 +36,7 @@ nothing else)]]。 其中 =css= , 利用的是 =worg.css=, 并参考了[[http:// :table-of-contents nil :html-postamble nil ;dont export creator auto validation info in html postamble div :html-link-home "/" - :html-head "" + :html-head "" ;; :html-head-extra ,my-blog-extra-head :html-head-include-default-style nil :html-head-include-scripts nil) diff --git a/My-work-flow-with-tmux-vim-zsh-iterm.org b/posts/My-work-flow-with-tmux-vim-zsh-iterm.org similarity index 100% rename from My-work-flow-with-tmux-vim-zsh-iterm.org rename to posts/My-work-flow-with-tmux-vim-zsh-iterm.org diff --git a/posts/elisp-tips.org b/posts/elisp-tips.org new file mode 100644 index 0000000..0c1ed11 --- /dev/null +++ b/posts/elisp-tips.org @@ -0,0 +1,5 @@ +#+TITLE: Emacs List Tips +#+AUTHOR: Peng Li +#+EMAIL: seudut@gmail.com +#+DATE: 2016-12-04 + diff --git a/git-note.org b/posts/git-note.org similarity index 100% rename from git-note.org rename to posts/git-note.org diff --git a/posts/linux-note.org b/posts/linux-note.org new file mode 100644 index 0000000..3f9ef8f --- /dev/null +++ b/posts/linux-note.org @@ -0,0 +1,68 @@ +#+TITLE: Note of Linux (Debian) +#+AUTHOR: Peng Li +#+EMAIL: seudut@gmail.com +#+DATE: 2016-12-23 + +* Install and Environment +** Install ios in virtual box +** install essential softwares +*** Change the sourece.list +163 mirrors +#+BEGIN_EXAMPLE + deb http://mirrors.163.com/debian stable main non-free contrib + deb-src http://mirrors.163.com/debian stable main non-free contrib +#+END_EXAMPLE +*** Install essential packages +- ~netselect-apt~ + Find the fastest apt mirror server +- vim +- sudo + Add user to sudo group or change the =/etc/sudoers= to use =sudo= command + #+BEGIN_SRC sh :results output replace + sudo adduser sudo + #+END_SRC +- git, openssh-server, emacs, build-essential, tmux, zsh, silversearcher-ag + +*** Build Emacs from source +1. gnutls error, to fix, install =gnutls-dev= and =pkg-config= +** others package +htop, lftp, apache2, vsftpd, silversearcher-ag, +* Issue +1. See the router table on mac +#+BEGIN_SRC sh :results output replace + netstat -nr +#+END_SRC + +2. wget download https +https://www.cyberciti.biz/faq/wget-example-download-from-https-web-sites/ +wget --no-check-certificate https://cyberciti.biz/foo/bar.tar.gz + +3. =ls= in =zsh= has no color + +* VirtualBox +Install virtualbox guest addition +https://blog.paranoidpenguin.net/2016/12/installing-the-virtualbox-guest-additions-on-debian-8-jessie/ +** HostOnly and NAT +** Port forward, web server + +* Raspberry raspbian +** start sshd on boot and vnc server +http://www.raspberrypi-spy.co.uk/2012/05/enable-secure-shell-ssh-on-your-raspberry-pi/ + +** Auto mount usb / external disk +change fstab file, add one entry with the uuid of the disk + +** Auto mount smb folder +1. manuall mount +#+BEGIN_EXAMPLE +sudo mount -t cifs -o username=pi,password=xxx //192.168.31.1/Folder /mnt/folder +#+END_EXAMPLE + +http://askubuntu.com/questions/157128/proper-fstab-entry-to-mount-a-samba-share-on-boot + +** apache2 +aptitude install =apache2=, start it by runing + +** vsftpd + +** smbclient diff --git a/posts/org-tips.org b/posts/org-tips.org new file mode 100644 index 0000000..8612c72 --- /dev/null +++ b/posts/org-tips.org @@ -0,0 +1,8 @@ +#+TITLE: Org Tips +#+AUTHOR: Peng Li +#+EMAIL: seudut@gmail.com +#+DATE: 2016-11-10 + +* Fix Chinese fonts in Org table + +* diff --git a/posts/print-vs-message-in-emacs.org b/posts/print-vs-message-in-emacs.org new file mode 100644 index 0000000..e69de29 diff --git a/posts/raspberrypi-note.org b/posts/raspberrypi-note.org new file mode 100644 index 0000000..6eb968b --- /dev/null +++ b/posts/raspberrypi-note.org @@ -0,0 +1,28 @@ +#+TITLE: The note of raspberry +#+AUTHOR: Peng Li +#+EMAIL: seudut@gmail.com +#+DATE: 2017-02-18 + +* Install Raspbian +** format the sd card and install the image +- earse as MBR type and FAT fromat using Disk Utility on Mac +- dd the image +** start the system and config the network +** Support exFat32 format mobile disk +Install =exfat-utils= by =aptitude= +** SSHd not started on boot +http://www.raspberrypi-spy.co.uk/2012/05/enable-secure-shell-ssh-on-your-raspberry-pi/ +#+BEGIN_SRC sh :results output replace +sudo raspi-config +#+END_SRC +It can also config vncserver started on boot +** change locales to fix +#+BEGIN_SRC sh :results output replace +sudo dpkg-reconfigure locales +#+END_SRC +** set the timezone +copy =/usr/share/zoneinfo/**Shanghai= to =/etc/localtime= +#+BEGIN_SRC sh :results output replace +sudo dpkg-reconfigure tzdata +#+END_SRC +** diff --git a/posts/test.org b/posts/test.org new file mode 100644 index 0000000..37d3f0e --- /dev/null +++ b/posts/test.org @@ -0,0 +1,4 @@ +#+TITLE: Test + + +This is first test page for blog. diff --git a/res/code.css b/res/code.css new file mode 100644 index 0000000..0af242d --- /dev/null +++ b/res/code.css @@ -0,0 +1,75 @@ +.org-bold-italic{font-weight:700;font-style:italic;} +.org-cursor{background-color:#c9c1b9;} +.org-error{color:red;font-weight:700;} +.org-escape-glyph{color:#a52a2a;} +.org-fringe{color:#7d7d7d;background-color:#dfd6cd;} +.org-glyphless-char{font-size:60%;} +.org-header-line{color:#333;background-color:#e5e5e5;font-weight:700;} +.org-highlight{color:#707070;background-color:#c9c1b9;} +.org-holiday{background-color:#ffc0cb;} +.org-isearch-fail{background-color:#ffc1c1;} +.org-lazy-highlight{color:#646464;background-color:#c9c1b9;} +.org-link-visited{color:#8b008b;text-decoration:underline;} +.org-mode-line-emphasis{color:#585858;} +.org-mode-line-inactive{color:#43757c;background-color:#f5ebe1;} +.org-nobreak-space{color:#a52a2a;text-decoration:underline;} +.org-org-agenda-date-today{color:#707070;background-color:#c9c1b9;font-weight:700;font-style:italic;} +.org-org-agenda-restriction-lock{background-color:#EEE;} +.org-org-code{color:#646464;} +.org-org-column-title{background-color:#e5e5e5;font-weight:700;text-decoration:underline;} +.org-org-date{color:#476238;text-decoration:underline;} +.org-org-document-info{color:#191970;} +.org-org-document-title{color:#191970;font-weight:700;} +.org-org-footnote{color:#7d7d7d;text-decoration:underline;} +.org-org-headline-done{color:#bc8f8f;} +.org-org-level-1{color:#646464;font-size:110%;font-weight:700;} +.org-org-level-3{color:#7d7d7d;font-weight:700;} +.org-org-link{color:#8c4a79;text-decoration:underline;} +.org-org-mode-line-clock-overrun{color:#7d7d7d;background-color:red;font-weight:700;} +.org-org-scheduled-today{color:#bd745e;font-size:120%;font-weight:700;} +.org-org-warning{color:#ff1276;text-decoration:underline;} +.org-show-paren-match{background-color:#40e0d0;} +.org-show-paren-mismatch{color:#FFF;background-color:#a020f0;} +.org-success{color:#228b22;font-weight:700;} +.org-tool-bar{color:#000;background-color:#bfbfbf;} +.org-tooltip{color:#000;background-color:#ffffe0;} +.org-trailing-whitespace{background-color:#ff1276;} +.org-tty-menu-disabled{color:#d3d3d3;background-color:#00F;} +.org-tty-menu-enabled{color:#FF0;background-color:#00F;font-weight:700;} +.org-tty-menu-selected{background-color:red;} +.org-warning{color:#ff1276;} +.org-warning-1{color:#ff1276;background-color:#dfd6cd;} +.org-window-divider{color:#999;} +.org-window-divider-first-pixel{color:#CCC;} +.org-window-divider-last-pixel{color:#666;} +.org-bold,.org-buffer-menu-buffer,.org-comint-highlight-input,.org-completions-first-difference,.org-org-checkbox,.org-org-list-dt,.org-org-tag,.org-org-tag-group,.org-regexp-grouping-backslash,.org-regexp-grouping-construct{font-weight:700;} +.org-builtin,.org-org-ellipsis,.org-org-level-7,.org-outline-7,.org-preprocessor{color:#1a8591;} +.org-button,.org-link{color:#697024;text-decoration:underline;} +.org-calendar-month-header,.org-function-name,.org-mode-line-buffer-id,.org-outline-1{color:#bd745e;font-weight:700;} +.org-calendar-today,.org-org-target,.org-underline{text-decoration:underline;} +.org-calendar-weekday-header,.org-constant,.org-negation-char,.org-org-level-6,.org-outline-6{color:#697024;} +.org-calendar-weekend-header,.org-comment,.org-comment-delimiter,.org-doc,.org-org-block-begin-line,.org-org-block-end-line,.org-org-meta-line,.org-outline-4{color:#a9a9a9;} +.org-comint-highlight-prompt,.org-keyword,.org-minibuffer-prompt,.org-mode-line-highlight,.org-org-checkbox-statistics-todo,.org-org-priority,.org-org-todo,.org-outline-3{color:#4a858c;font-weight:700;} +.org-completions-annotations,.org-help-argument-name,.org-italic{font-style:italic;} +.org-diary,.org-org-date-selected{color:red;} +.org-file-name-shadow,.org-org-agenda-dimmed-todo,.org-org-archived,.org-shadow{color:#7f7f7f;} +.org-isearch,.org-query-replace{background-color:#c9c1b9;color:#ff1276;font-weight:700;} +.org-match,.org-org-agenda-clocking,.org-org-clock-overlay,.org-secondary-selection{background-color:#FF0;} +.org-mode-line,.org-org-agenda-filter-category,.org-org-agenda-filter-regexp,.org-org-agenda-filter-tags,.org-org-mode-line-clock{background-color:#dfd6cd;color:#7d7d7d;font-weight:700;} +.org-next-error,.org-region{background-color:#585858;color:#f5ebe1;} +.org-org-agenda-calendar-event,.org-org-agenda-calendar-sexp,.org-org-agenda-diary,.org-org-default{background-color:#f5ebe1;color:#585858;} +.org-org-agenda-column-dateline,.org-org-column{background-color:#e5e5e5;} +.org-org-agenda-current-time,.org-org-time-grid{color:#b8860b;} +.org-org-agenda-date,.org-org-agenda-date-weekend,.org-org-agenda-structure{background-color:#c9c1b9;color:#707070;font-weight:700;} +.org-org-agenda-done,.org-org-level-4{color:#b4ada6;} +.org-org-block,.org-org-level-2,.org-org-quote,.org-org-verse,.org-vertical-border{color:#707070;} +.org-org-checkbox-statistics-done,.org-org-done{color:#b4ada6;font-weight:700;} +.org-org-document-info-keyword,.org-org-special-keyword{color:#bd745e;} +.org-org-drawer,.org-org-table{color:#00F;} +.org-org-formula,.org-org-scheduled-previously,.org-org-upcoming-deadline{color:#b22222;} +.org-org-hide,.org-org-sexp-date,.org-org-verbatim{color:#7d7d7d;} +.org-org-latex-and-related,.org-org-macro{color:#8b4513;} +.org-org-level-5,.org-org-scheduled,.org-outline-5,.org-type{color:#8c4a79;} +.org-org-level-8,.org-outline-8,.org-string{color:#b3534b;} +.org-outline-2,.org-variable-name{color:#476238;} + diff --git a/res/org.css b/res/org.css new file mode 100644 index 0000000..b1a15a8 --- /dev/null +++ b/res/org.css @@ -0,0 +1,117 @@ +html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%} +body{margin:0} +article,aside,details,figcaption,figure,footer,header,main,menu,nav,section,summary{display:block} +audio,canvas,progress,video{display:inline-block} +audio:not([controls]){display:none;height:0} +progress{vertical-align:baseline} +[hidden],template{display:none} +a{background-color:transparent;-webkit-text-decoration-skip:objects} +a:active,a:hover{outline-width:0} +abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted} +b,strong{font-weight:inherit;font-weight:bolder} +dfn{font-style:italic} +h1{font-size:2em;margin:.67em 0} +mark{background-color:#ff0;color:#000} +small{font-size:80%} +sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline} +sub{bottom:-.25em} +sup{top:-.5em} +img{border-style:none} +svg:not(:root){overflow:hidden} +code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em} +figure{margin:1em 40px} +hr{box-sizing:content-box;height:0;overflow:visible} +button,input,select,textarea{font:inherit;margin:0} +optgroup{font-weight:700} +button,input{overflow:visible} +button,select{text-transform:none} +[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button} +[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0} +[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText} +fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em} +legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal} +textarea{overflow:auto} +[type=checkbox],[type=radio]{box-sizing:border-box;padding:0} +[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto} +[type=search]{-webkit-appearance:textfield;outline-offset:-2px} +[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none} +::-webkit-input-placeholder{color:inherit;opacity:.54} +::-webkit-file-upload-button{-webkit-appearance:button;font:inherit} +body{width:95%;margin:2%;font:normal normal normal 16px/1.6em Helvetica,sans-serif;color:#333} +@media (min-width:769px){body{width:700px;margin-left:5vw} +} +::-moz-selection{background:#d6edff} +::selection{background:#d6edff} +.title{margin:auto;color:#000} +.subtitle,.title{text-align:center} +.subtitle{font-size:medium;font-weight:700} +.abstract{margin:auto;width:80%;font-style:italic} +.abstract p:last-of-type:before{content:" ";white-space:pre} +.status{font-size:90%;margin:2em auto} +[class^=section-number-]{margin-right:.5em} +[id^=orgheadline]{clear:both} +#footnotes{font-size:90%} +.footpara{display:inline;margin:.2em auto} +.footdef{margin-bottom:1em} +.footdef sup{padding-right:.5em} +a{color:#527d9a;text-decoration:none} +a:hover{color:#035;border-bottom:1px dotted} +figure{padding:0;margin:0;text-align:center} +img{max-width:100%;vertical-align:middle} +@media (min-width:769px){img{max-width:85vw;margin:auto} +} +.MathJax_Display{font-size:90%;margin:0!important;width:90%!important} +h1,h2,h3,h4,h5,h6{color:#a5573e;line-height:1.6em;font-family:Georgia,serif} +h4,h5,h6{font-size:1em} +dt{font-weight:700} +table{margin:auto;border-top:2px solid;border-collapse:collapse} +table,thead{border-bottom:2px solid} +table td+td,table th+th{border-left:1px solid gray} +table tr{border-top:1px solid #d3d3d3} +td,th{padding:5px 10px;vertical-align:middle} +caption.t-above{caption-side:top} +caption.t-bottom{caption-side:bottom} +th.org-center,th.org-left,th.org-right{text-align:center} +td.org-right{text-align:right} +td.org-left{text-align:left} +td.org-center{text-align:center} +code{padding:2px 5px;margin:auto 1px;border:1px solid #ddd;border-radius:3px;background-clip:padding-box;color:#333;font-size:80%} +blockquote{margin:1em 2em;padding-left:1em;border-left:3px solid #ccc} +kbd{background-color:#f7f7f7;font-size:80%;margin:0 .1em;padding:.1em .6em} +.todo{background-color:red;padding:2px} +.done,.todo{color:#fff;border-radius:3px;background-clip:padding-box;font-size:80%;font-family:Lucida Console,monospace} +.done{background-color:green;padding:3px} +.priority{color:orange;font-family:Lucida Console,monospace} +#table-of-contents li{clear:both} +.tag{font-family:Lucida Console,monospace;font-size:70%;font-weight:400} +.tag span{padding:0 5px;float:right;margin-right:5px;border:1px solid #bbb;border-radius:3px;background-clip:padding-box;color:#333;background-color:#eee;line-height:1.6} +.timestamp{color:#bebebe;font-size:90%} +.timestamp-kwd{color:#5f9ea0} +.org-right{margin-left:auto;margin-right:0;text-align:right} +.org-left{margin-left:0;margin-right:auto;text-align:left} +.org-center{margin-left:auto;margin-right:auto;text-align:center} +.underline{text-decoration:underline} +#postamble p,#preamble p{font-size:90%;margin:.2em} +p.verse{margin-left:3%} +pre{border:1px solid #ccc;box-shadow:3px 3px 3px #eee;font-family:Lucida Console,monospace;margin:1.2em;padding:8pt} +pre.src{overflow:auto;padding-top:1.2em;position:relative;font-size:80%} +pre.src:before{display:block;position:absolute;background-color:#ccccd0;top:0;right:0;padding:.25em .5em;border-bottom-left-radius:8px;border:0;color:#fff;font-size:80%} +pre.src:hover:before{display:inline} +pre.src-sh:before{content:'sh'} +pre.src-bash:before{content:'bash'} +pre.src-emacs-lisp:before{content:'Emacs Lisp'} +pre.src-R:before{content:'R'} +pre.src-org:before{content:'Org'} +pre.src-c+:before{content:'C++'} +pre.src-c:before{content:'C'} +pre.src-html:before{content:'HTML'} +.inlinetask{background:#ffc;border:2px solid gray;margin:10px;padding:10px} +#org-div-home-and-up{font-size:70%;text-align:right;white-space:nowrap} +.linenr{font-size:90%} +.code-highlighted{background-color:#ff0} +#bibliography{font-size:90%} +#bibliography table{width:100%} +.creator{display:block} +@media (min-width:769px){.creator{display:inline;float:right} +} + diff --git a/css/worg.css b/res/worg.css similarity index 100% rename from css/worg.css rename to res/worg.css diff --git a/sitemap.org b/sitemap.org new file mode 100644 index 0000000..6a45f41 --- /dev/null +++ b/sitemap.org @@ -0,0 +1,12 @@ +#+TITLE: Sitemap + + + [[file:Blog-with-org-mode.org][Blog with Org Mode]] + + [[file:elisp-tips.org][Emacs List Tips]] + + [[file:git-note.org][Git Note]] + + [[file:index.org][My Personal Wiki]] + + [[file:linux-note.org][Note of Linux (Debian)]] + + [[file:org-tips.org][Org Tips]] + + [[file:README.org][README]] + + [[file:remember.org][Remember]] + + [[file:test.org][Test]] + + [[file:print-vs-message-in-emacs.org][ij]] -- 2.11.0