wp-bootstrap Doesn't like the word "alert".
Firstly, I want to apologize for I know the title is not descriptive at all. When I installed this theme and modified a few tutorials on my personal site I found a bizarre problem that I had no idea where it was coming from, and hence no idea how to fix it myself. I have found the problem, but I still have no idea how to fix it by myself so I will just open this issue here. (As recommended by 320press' recommendation via Twitter).
Basically, in my website, I write tutorials about iOS jailbreak development and the like. I had put a small piece of code between SyntaxHighlighter (Wordpress plugin for code formatting). In other words, by having this same exact markup in my post:
[sourcecode language="objc"]%hook SBApplicationIcon -(void)launch { NSString *appName = [self displayName]; NSString *message = [NSString stringWithFormat:@"The app %@ has been launched", appName, nil]; UIAlertView *alert1 = [[UIAlertView alloc] initWithTitle:appName message:message delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil]; [alert show]; [alert release]; %orig; } %end[/sourcecode]
The final output in the post is like this:

Like you can see, both lines that have "alert" in brackets in them ([alert show], [alert release]) have been replaced by HTML code that has Bootstrap classes. I'm assuming this is being done by wp-bootstrap since I didn't have any problems with my previous theme.
Of course, this has an easy workaround: To call the variables "alert1" instead of "alert". Then it works fine:

It works fine,
Now, I also recognize this could be a conflict with SyntaxHighlighter, but I will leave that up to the developers of both sides to investigate. :)
I recognize this is a small issue that can be worked around really easily and fast. But a problem of this type could easily escalate to become a much bigger problem in the long run, especially if not patched soon. (I won't be able to come with a workaround for all my Objective-C snippets. Whoops!)
That said, I want to take this chance to say that I freaking love this theme and that you guys are doing a good with it. Keep working hard!
the problem is the alerts shortcode: https://github.com/320press/wordpress-bootstrap/blob/master/library/shortcodes.php#L67 does anybody have an idea how to fix it?