﻿<?xml version="1.0" encoding="utf-8"?>
<snippet name="Print URL after a Link" description="Add this media query to print URL after a link while printing web pages" preview="code" type="block">
<insertText location="beforeSelection">
<![CDATA[@media print {
    a:after {
        content: " (" attr(href)") ";
        font-size: 0.8em;
        font-weight: normal;
    }
}]]>
</insertText>
<insertText location="afterSelection"><![CDATA[]]>
</insertText>
</snippet>
