summaryrefslogtreecommitdiff
path: root/_posts
diff options
context:
space:
mode:
authorFranck Cuny <franck.cuny@gmail.com>2013-09-18 16:53:46 +0000
committerFranck Cuny <franck.cuny@gmail.com>2013-09-18 16:54:10 +0000
commit30d09cf446bdf556aa5e59205ea2cc98bc839355 (patch)
treebbe7fa82230fd89bb00cfa7fef94929dfe6448be /_posts
parentdon't need rvmrc (diff)
downloadlumberjaph-30d09cf446bdf556aa5e59205ea2cc98bc839355.tar.gz
Convert more posts to markdown.
Diffstat (limited to '')
-rw-r--r--_posts/2008-06-15-rtgi-recrute.md14
-rw-r--r--_posts/2008-06-15-rtgi-recrute.textile14
-rw-r--r--_posts/2008-06-17-vim-function-for-creating-new-task.md (renamed from _posts/2008-06-17-vim-function-for-creating-new-task.textile)14
3 files changed, 19 insertions, 23 deletions
diff --git a/_posts/2008-06-15-rtgi-recrute.md b/_posts/2008-06-15-rtgi-recrute.md
new file mode 100644
index 0000000..3092fd1
--- /dev/null
+++ b/_posts/2008-06-15-rtgi-recrute.md
@@ -0,0 +1,14 @@
+---
+layout: post
+title: RTGI recrute
+summary: In which RTGI is hiring.
+---
+
+[RTGI](http://rtgi.fr) recrute pour 2 postes differents. Le premier, pour un poste "d'écologue", le second pour un poste développeur.
+
+Vous pouvez voir differents travaux realises par RTGI ici:
+
+* [blogopole](http://www.blogopole.fr/)
+* [segoland](http://www.visualcomplexity.com/vc/project.cfm?id=473)
+* [blogopole bis](http://www.visualcomplexity.com/vc/project.cfm?id=400)
+* [PW08](http://www.visualcomplexity.com/vc/project.cfm?id=542) \ No newline at end of file
diff --git a/_posts/2008-06-15-rtgi-recrute.textile b/_posts/2008-06-15-rtgi-recrute.textile
deleted file mode 100644
index b31b798..0000000
--- a/_posts/2008-06-15-rtgi-recrute.textile
+++ /dev/null
@@ -1,14 +0,0 @@
----
-layout: post
-category: linkfluence
-title: RTGI recrute
----
-
-<a href="http://www.rtgi.fr">RTGI</a> recrute pour 2 postes differents. Le premier, pour un poste "d'écologue", le second pour un poste développeur. La description des annonces est disponible <a href="http://franck.breizhdev.net/upload/0805_profil_poste_tech.pdf">ici</a>
-
-Vous pouvez voir differents travaux realises par RTGI ici:
-
- * "blogopole":http://www.blogopole.fr/
- * "segoland":http://www.visualcomplexity.com/vc/project.cfm?id=473
- * "blogopole bis":http://www.visualcomplexity.com/vc/project.cfm?id=400
- * "pw08":http://www.visualcomplexity.com/vc/project.cfm?id=542
diff --git a/_posts/2008-06-17-vim-function-for-creating-new-task.textile b/_posts/2008-06-17-vim-function-for-creating-new-task.md
index 81d2420..f549cf5 100644
--- a/_posts/2008-06-17-vim-function-for-creating-new-task.textile
+++ b/_posts/2008-06-17-vim-function-for-creating-new-task.md
@@ -1,12 +1,12 @@
---
layout: post
-category: app
title: Vim function for creating new task
+summary: In which I add a few functions for my vim wiki.
---
I've added a new function to my .vimrc for creating quickly a new task:
-{% highlight vim %}
+```
function! CreateTask()
let context = input("Enter context: ")
exe ":set noautoindent"
@@ -15,12 +15,8 @@ function! CreateTask()
exe ":set autoindent"
exe ":startinsert"
endfunction
-{% endhighlight %}
+```
-and then this mapping:
+and then this mapping: `map ct <esc>:call CreateTask()<cr>`
-{% highlight vim %}
-map ct <esc>:call CreateTask()<cr>
-{% endhighlight %}
-
-Now, I've just to hit *,n*, type my context, a new line will be inserted and I just have to create my task.
+Now, I've just to hit **,n**, type my context, a new line will be inserted and I just have to create my task.