This file is indexed.

/usr/share/gocode/src/github.com/microcosm-cc/bluemonday/cmd/sanitise_ugc/doc.go is in golang-github-microcosm-cc-bluemonday-dev 0.0~git20161202.0.e797637-1.1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
/*
Package main demonstrates a simple user generated content sanitizer.

This is the configuration I use on the sites that I run, it allows a lot of safe
HTML that in my case comes from the blackfriday markdown package. As markdown
itself allows HTML the UGCPolicy includes most common HTML.

CSS and JavaScript is excluded (not white-listed), as are form elements and most
embedded media that isn't just an image or image map.

As I'm paranoid, I also do not allow data-uri images and embeds.
*/
package main