Skip to content

Commit

Permalink
added code tag and = as a substitute for :
Browse files Browse the repository at this point in the history
  • Loading branch information
Tim Burks committed Nov 4, 2010
1 parent 636864d commit 11e7db0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions nu/xhtml.nu
Expand Up @@ -21,6 +21,7 @@ END contents:(list xmlns:XMLNS)))
body
br
button
code
col
div
dd
Expand Down
2 changes: 1 addition & 1 deletion objc/markup.m
Expand Up @@ -47,7 +47,7 @@ - (id) initWithTag:(NSString *) _tag
- (id) initWithTag:(NSString *) _tag prefix:(NSString *) _prefix contents:(id) _contents
{
self = [super init];
tag = _tag ? [_tag retain] : nil;
tag = _tag ? [[_tag stringByReplacingOccurrencesOfString:@"=" withString:@":"] retain] : nil;
prefix = _prefix ? [_prefix retain] : @"";
contents = _contents ? [_contents retain] : [NSNull null];
return self;
Expand Down

0 comments on commit 11e7db0

Please sign in to comment.