Move parsing methods to their own files (separates manipulation dependency from core)

Conflicts:
	src/core.js
This commit is contained in:
Timmy Willison
2013-09-08 21:05:07 -04:00
parent 48e13e9a5f
commit 44596aa8f2
7 changed files with 152 additions and 130 deletions

4
src/var/rsingleTag.js Normal file
View File

@@ -0,0 +1,4 @@
define(function() {
// Match a standalone tag
return (/^<(\w+)\s*\/?>(?:<\/\1>|)$/);
});