diff --git a/src/core/components/operations.jsx b/src/core/components/operations.jsx
index 13fcd8ba..20f67418 100644
--- a/src/core/components/operations.jsx
+++ b/src/core/components/operations.jsx
@@ -66,7 +66,12 @@ export default class Operations extends React.Component {
onClick={() => layoutActions.show(isShownKey, !showTag)}
className={!tagDescription ? "opblock-tag no-desc" : "opblock-tag" }
id={isShownKey.join("-")}>
-
{tag}
+
e.preventDefault()}
+ href={`#/${tag}`}>
+ {tag}
+
{ !tagDescription ? null :
{ tagDescription }
diff --git a/src/style/_layout.scss b/src/style/_layout.scss
index 78e09249..dab425d9 100644
--- a/src/style/_layout.scss
+++ b/src/style/_layout.scss
@@ -632,3 +632,16 @@ section
@include text_headline();
}
}
+
+a.nostyle {
+ text-decoration: inherit;
+ color: inherit;
+ cursor: auto;
+ display: inline;
+
+ &:visited {
+ text-decoration: inherit;
+ color: inherit;
+ cursor: auto;
+ }
+}