From b58383affe2a46d28267d33c29041a2a6130ce37 Mon Sep 17 00:00:00 2001
From: Wouter Scherphof
Date: Tue, 2 Apr 2013 11:05:28 +0200
Subject: [PATCH] Listed some more limitations
---
README.md | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/README.md b/README.md
index 10389f1..f235aa5 100644
--- a/README.md
+++ b/README.md
@@ -69,8 +69,9 @@ Selectors can be combined; e.g. `".class:not([attribute]) element.class"`
###Limitations
- Attribute values in selectors currently cannot contain any spaces, since space is interpreted as a delimiter between the `ancestor` and `descendant`, `parent` and `>`, or `>` and `child` parts of the selector
- Likewise, for the `parent > child` relation, the spaces before and after the `>` are mandatory
-- `line1
line2
` is plainly `"line1
line2"`
+- All start and end tags should be explicitly specified in the text to be parsed; omitted tags (as [permitted](http://www.w3.org/TR/html5/syntax.html#optional-tags) by the the HTML spec) are NOT implied. Only the [void](http://www.w3.org/TR/html5/syntax.html#void-elements) elements naturally don't need an end tag
##Examples
See `./doc/samples.lua`