From a7e86d904233cfd4e93a12b1049d5ce9bc19d77c Mon Sep 17 00:00:00 2001 From: ccd0 Date: Fri, 6 May 2016 19:13:03 -0700 Subject: [PATCH] Don't need dummy entries at the moment (and we can use regexp for this anyway). --- src/Linkification/Embedding.coffee | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Linkification/Embedding.coffee b/src/Linkification/Embedding.coffee index b723a5750..7aa315278 100644 --- a/src/Linkification/Embedding.coffee +++ b/src/Linkification/Embedding.coffee @@ -36,7 +36,6 @@ Embedding = services: (link) -> {href} = link for type in Embedding.ordered_types when match = type.regExp.exec href - return if type.dummy return {key: type.key, uid: match[1], options: match[2], link} return