Jekyll does not like enumerations w/o blank lines

This commit is contained in:
Simon Legner
2015-09-03 16:22:26 +02:00
parent 782c0b8320
commit 2c9288b83a
3 changed files with 3 additions and 0 deletions

View File

@ -16,5 +16,6 @@ language.
**Applicability:** Use the Interpreter pattern when there is a language to
interpret, and you can represent statements in the language as abstract syntax
trees. The Interpreter pattern works best when
* the grammar is simple. For complex grammars, the class hierarchy for the grammar becomes large and unmanageable. Tools such as parser generators are a better alternative in such cases. They can interpret expressions without building abstract syntax trees, which can save space and possibly time
* efficiency is not a critical concern. The most efficient interpreters are usually not implemented by interpreting parse trees directly but by first translating them into another form. For example, regular expressions are often transformed into state machines. But even then, the translator can be implemented by the Interpreter pattern, so the pattern is still applicable