diff --git a/README.md b/README.md
index 9ae90d3..d7f8e8a 100644
--- a/README.md
+++ b/README.md
@@ -1,3 +1,3 @@
## Jekyll Documentation theme
-This is the readme page of the Jekyll documentation theme.
+Build the site to see the instructions for using it. Or just go here: [http://idratherbewriting.com/documentation-theme-jekyll/](idratherbewriting.com/documentation-theme-jekyll/)
diff --git a/mydoc/mydoc_hyperlinks.md b/mydoc/mydoc_hyperlinks.md
index 09ede2b..1cce38f 100644
--- a/mydoc/mydoc_hyperlinks.md
+++ b/mydoc/mydoc_hyperlinks.md
@@ -131,15 +131,14 @@ Here's how you specify an ID for a heading in Kramdown:
Link to it using this syntax:
-
```
-[{{site.data.urls.your-page-permalink.title}}]({{site.data.urls.your-page-permalink.url | append: "#myheading"}})
+{%raw%}[{{site.data.urls.your-page-permalink.title}}]({{site.data.urls.your-page-permalink.url | append: "#myheading"}}){%endraw%}
```
Or using HTML:
```
-{{site.data.urls.your-page-permalink.title}}
+{%raw%}{{site.data.urls.your-page-permalink.title}}{%endraw%}
```
Granted, this is somewhat long, but it's the only way to continue to leverage the automated links from urls.yaml. You want to avoid manually referencing links since they are much more prone to break when you specify them that way.