diff --git a/tips/10-props-in-getInitialState-as-anti-pattern.md b/tips/10-props-in-getInitialState-as-anti-pattern.md
index 097fbc71..e0f13530 100644
--- a/tips/10-props-in-getInitialState-as-anti-pattern.md
+++ b/tips/10-props-in-getInitialState-as-anti-pattern.md
@@ -13,7 +13,7 @@ next: dom-event-listeners.html
Using props, passed down from parent, to generate state in `getInitialState` often leads to duplication of "source of truth", i.e. where the real data is. Whenever possible, compute values on-the-fly to ensure that they don't get out of sync later on and cause maintenance trouble.
-Bad example:
+**Bad example:**
```js
/** @jsx React.DOM */
@@ -60,3 +60,25 @@ var MessageBox = React.createClass({
React.renderComponent(