Skip to content

Commit

Permalink
Fixed single and other odd placement of asterisk signs. Closes tomaz#96.
Browse files Browse the repository at this point in the history
**Note:** This should resolve the issue, although the whole processing of single asterisk as bold marker makes the code quite fragile. The best solution would be to revert to standard Markdown and stop handling single asterisk as bold. This might break existing users comments somewhat, but should provide more stable platform for the future...
  • Loading branch information
tomaz committed Sep 1, 2011
1 parent c75e26f commit ef54d87
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Application/GBCommentComponentsProvider.m
Expand Up @@ -170,11 +170,11 @@ - (NSString *)codeSpanEndMarker {
}

- (NSString *)appledocBoldStartMarker {
return @"~!#";
return @"~!$";
}

- (NSString *)appledocBoldEndMarker {
return @"#!~";
return @"$!~";
}

#pragma Properties
Expand Down

0 comments on commit ef54d87

Please sign in to comment.