Reviewers: golang-dev_googlegroups.com,
Message:
Hello [email protected],
I'd like you to review this change to
https://code.google.com/p/go.talks
Description:
go.talks/present: display twitter names in @name format
Please review this at http://codereview.appspot.com/6745051/
Affected files:
M present/parse.go
Index: present/parse.go
===================================================================
--- a/present/parse.go
+++ b/present/parse.go
@@ -349,6 +349,7 @@
el = parseURL("http://twitter.com/" + text[1:])
if l, ok := el.(Link); ok {
l.Args = []string{text}
+ el = l
}
case strings.Contains(text, ":"):
el = parseURL(text)