diff --git a/app/components/cards/Comment.jsx b/app/components/cards/Comment.jsx
index 177ce9087661d4a082cc552a94b11fc13c327aa9..e9fd530e4dc33234f59d11da438d8243a9b6d5c7 100644
--- a/app/components/cards/Comment.jsx
+++ b/app/components/cards/Comment.jsx
@@ -217,7 +217,7 @@ class CommentImpl extends React.Component {
             showNegativeComments, ignore, noImage} = this.props
         const {onShowReply, onShowEdit, onDeletePost} = this
         const post = comment.author + '/' + comment.permlink
-        const anchor_link = '@' + post
+        const anchor_link = '#@' + post // Using a hash here is not standard but intentional; see issue #124 for details
         const {PostReplyEditor, PostEditEditor, showReply, showEdit, hide_body} = this.state
         const Editor = showReply ? PostReplyEditor : PostEditEditor