diff --git a/_includes/taglogic.html b/_includes/taglogic.html index 5669d4b..2822f90 100644 --- a/_includes/taglogic.html +++ b/_includes/taglogic.html @@ -1,4 +1,4 @@ -

The following pages are tagged with

+

The following pages are tagged with

{% assign thisTag = page.tagName %} diff --git a/css/customstyles.css b/css/customstyles.css index cb2275e..fab8a8b 100644 --- a/css/customstyles.css +++ b/css/customstyles.css @@ -929,9 +929,10 @@ a[href^="http://"]:after, a[href^="https://"]:after { text-decoration: none; padding-left: 3px; } -/* Strip from links to own domain or with class no_icon */ + +/* Strip the outbound icon when this class is present */ a[href^="http://own-domain.com"]:after, a.no_icon:after { content:"" !important; padding-left: 0; -} \ No newline at end of file +} diff --git a/mydoc/mydoc_adding_new_projects.md b/mydoc/mydoc_adding_new_projects.md index 138e579..5c36304 100644 --- a/mydoc/mydoc_adding_new_projects.md +++ b/mydoc/mydoc_adding_new_projects.md @@ -36,7 +36,7 @@ In this theme, each output requires a separate config file. If you have 10 audie More details about customizing the settings in the configuration files will be explained later. For now you're just duplicating the necessary project files for your new project. -### 3. Create a includes folder +### 3. Create a new folder inside \_includes In the _includes/custom directory, add a new folder there called "acme." This folder should sit parallel to the mydoc folder. This is where you can store includes for your project. diff --git a/mydoc/mydoc_images.md b/mydoc/mydoc_images.md index 2c48cac..a1d5bff 100644 --- a/mydoc/mydoc_images.md +++ b/mydoc/mydoc_images.md @@ -6,7 +6,6 @@ last_updated: November 30, 2015 summary: "You embed images using traditional HTML or Markdown syntax for images. Unlike pages, you can store images in subfolders (in this theme). This is because when pages reference the images, the references are always as subpaths, never requiring the reference to move up directories." --- - You embed an image the same way you embed other files or assets: you put the file into a folder, and then link to that file. Put images inside the `images` folder in your root directory. You can create subdirectories inside this directory. Although you could use Markdown syntax for images, the HTML syntax is probably easier: @@ -37,7 +36,7 @@ And the result: You can also embed SVG graphics. If you use SVG, you need to use the HTML syntax so that you can define a width/container for the graphic. Here's a sample embed: ```html - + ``` Here's the result:
PageExcerpt