A partial archive of discourse.wicg.io as of Saturday February 24, 2024.

Direct links to page content a la ShowQuoteInContext

JoyLivingwell
2015-10-19

The ShowQuoteInContext Safari extension implements a nifty extension to standard HTML links: the ability to create citation links that jump directly to quoted content and highlights it.

Instead of taking the user to the top of a book-length web page and leaving them to maybe search out the content you cited, a ShowQuote link takes them directly to the quoted text. This adds a LOT of useful functionality, similar to citations in books and magazines with page numbers that take you directly to the relevant part of the source material.

Currently linking to specific content in a web page requires an anchor to link to. ShowQuote links don’t require anchors, so you can link to any text you want to.

The programmer who developed the plugin, Jean Tantra, also points out that ShowQuote links are useful for machine learning, as they give programs an easy way to show you where they learned something.

ShowQuote links work on most web pages (not redirects or iframes). Browsers not running the plugin ignore the special sauce and treat ShowQuote links like any other link.

I would love to see ShowQuote links included in the new HTML standard. Which would be easy to do since the work is basically done.

More info: http://algorithmicartisan.com/showquote/

Tigt
2015-10-21

This is a frequent request, and I think it’s being considered along other Media Fragment URLs, if not by that group exactly.

Some commonly proposed features:

  • Link to an element using a CSS selector — #css(article > p:nth-of-type(9))
  • Link to an element using XPath — #//*[@id="mw-content-text"]/p[6]
  • Link to literal text, as used by ShowQuoteInContext — ##Now is the winter of our discontent,
  • Link spatially, like SVG’s viewBox() fragments — #viewBox(0,0,100,200)

I think what stops the W3C from proposing these is how fragile such fragments tend to be, and then they try making some web-wide archiving date & time URL notation first, and then, well, they’re still working on it.

That said, sometimes you just want to paste your friend a link, and it doesn’t matter if it doesn’t work perfectly in a month or so.