scratch/multi/blog/2010-10-26-LaTeX-like-macro-and-markdown.md
Yann Esposito (Yogsototh) 6f1f16f2ee Updated blog
2011-03-21 14:42:28 +01:00

104 lines
3.6 KiB
Markdown

-----
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: J'ai ajouter un système de macro pour mon système de blog.
fr: Lorsqu'on est habitué à %latex et que l'on commence à écrire des articles
fr: un peu conséquent avec des notations mathématiques,
fr: les macros deviennent vite quelque chose d'indispensable.
fr:
fr: Dans l'entête de mes fichiers j'écris simplement:
en: I added a macro system for my blog system.
en: When we are used to %latex this lack can be hard to handle.
en: Particularly when using mathematical notations.
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: - and %<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.