Merge branch 'next'

This commit is contained in:
Yann Esposito (Yogsototh) 2010-10-26 16:46:46 +02:00
commit 6a4d19f4c9
2 changed files with 96 additions and 1 deletions

View file

@ -211,7 +211,7 @@ fr: Voici le dernier résultat :
enddiv
<code class="c" file="wavsum.c">
<code class="c" file="wavsum2.c">
#include <stdio.h>
#include <stdlib.h>
#include <string.h> // for memcmp

View file

@ -0,0 +1,95 @@
-----
isHidden: false
menupriority: 1
kind: article
created_at: 2010-10-26T14:30:58+02:00
en: title: LaTeX like macro for markdown
fr: title: Des macros LaTeX pour markdown
author_name: Yann Esposito
author_uri: yannesposito.com
macros:
test: "This is a macro test"
latex: '<span style="text-transform: uppercase">L<sup style="vertical-align: 0.15em; margin-left: -0.36em; margin-right: -0.15em; font-size: .85em">a</sup>T<sub style="vertical-align: -0.5ex; margin-left: -0.1667em; margin-right: -0.125em; font-size: 1em">e</sub>X</span>'
# tags:
-----
begindiv(intro)
en: <%= tldr %> I made a simple macro system for my blog. Now I juste have to write %<span></span>latex and it show as %latex.
fr: <%= tlal %> J'ai fait un système simple de macros pour mon blog. Par exemple, il me suffit d'écrire %<span></span>latex et ça affiche %latex.
enddiv
fr: Dans l'entête de mes fichiers j'écris simplement:
en: In the header of my files I simply write:
<code class="yaml">
macros:
test: "This is a macro test"
latex: '<span style="text-transform: uppercase">L<sup style="vertical-align: 0.15em; margin-left: -0.36em; margin-right: -0.15em; font-size: .85em">a</sup>T<sub style="vertical-align: -0.5ex; margin-left: -0.1667em; margin-right: -0.125em; font-size: 1em">e</sub>X</span>'
</code>
fr: Puis dans le corps ça va remplacer :
fr:
fr: - %<span></span>test par *%test* ;
fr: - et %<span></span>latex par *%latex*
fr:
fr: Le code est assez simple.
fr: Pour les utilisateurs de `nanoc` il suffit de copier le fichier suivant dans le répertoire `lib`.
en: In the body it will replace every occurrence of:
en:
en: - %<span></span>test by *%test*,
en: - et %<span></span>latex by *%latex*.
en:
en: The source code is really simple.
en: For `nanoc` user, simply put this file in your `lib` directory.
<code class="ruby" file="macros.rb">
# usage:
# ---
# ...
# macros:
# test: "passed test"
# ---
# ...
# Here is a %test.
#
class Macros < Nanoc3::Filter
identifier :falacy
attr_accessor :macro
def initialize(arg)
super
@macro={}
@macro[:tlal] = %{<span class="sc"><abbr title="Trop long à lire">tlàl</abbr> : </span>}
@macro[:tldr] = %{<span class="sc"><abbr title="Too long; don't read">tl;dr</abbr>: </span>}
if @item.nil?
if not arg.nil?
@macro.merge!( arg )
end
else
if not @item[:macros].nil?
@macro.merge!( @item[:macros] )
end
end
end
def macro_value_for(macro_name)
if macro_name.nil? or macro_name=="" or @macro[macro_name.intern].nil?
return %{%#{macro_name}}
end
return @macro[macro_name.intern]
end
def run(content, params={})
content.gsub(/%(\w*)/) do |m|
if m != '%'
macro_value_for($1)
else
m
end
end
end
end
</code>
fr: Les macros peuvent être vraiment utiles. Lisez [cet article](http://adam.gomaa.us/blog/2007/oct/22/markdown-doesnt-scale/index.html) par exemple.
en: Macros could be very useful, read [this article](http://adam.gomaa.us/blog/2007/oct/22/markdown-doesnt-scale/index.html) for example.