lexi 0.3.0

Renders a YAML lexicon file into dictionary files.
Documentation
<h1>{{ lexicon.format.native_foreign.title }}</h1>
{% for lexeme in lexicon.lexemes -%}
{%- if lexeme.glosses or lexeme.translation %}
<div id="{{ lexeme.lemma }}">
	<b><a href="#{{ lexeme.lemma }}">
		{{- lexicon.format.native.prefix -}}
		{{- lexeme.lemma -}}
		{{- lexicon.format.native.suffix -}}
	</a></b>
	{%- if lexeme.glosses -%}
		{{- lexicon.format.native_foreign.delimiter -}}
		{%- for gloss in lexeme.glosses -%}
			{{- gloss -}}
			{%- if not loop.last -%}
				{{- lexicon.format.native_foreign.gloss_delimiter -}}
			{%- endif -%}
		{%- endfor -%}
	{%- endif -%}
	{%- if lexeme.translation %}
	<div style="margin-left:{{ lexicon.format.indent }}">
		{{ lexeme.translation }}
	</div>
	{%- endif %}
</div>
{% endif -%}
{%- endfor -%}