From 7823e44fc9634d6859460b59122e51082030efdf Mon Sep 17 00:00:00 2001
From: szTheory
Date: Sat, 13 Jun 2020 12:42:00 +0000
Subject: [PATCH 001/241] Update timeouts.go: Fix typo
---
examples/timeouts/timeouts.go | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/examples/timeouts/timeouts.go b/examples/timeouts/timeouts.go
index 3f25aec86..be5de76ef 100644
--- a/examples/timeouts/timeouts.go
+++ b/examples/timeouts/timeouts.go
@@ -25,7 +25,7 @@ func main() {
}()
// Here's the `select` implementing a timeout.
- // `res := <-c1` awaits the result and `<-Time.After`
+ // `res := <-c1` awaits the result and `<-time.After`
// awaits a value to be sent after the timeout of
// 1s. Since `select` proceeds with the first
// receive that's ready, we'll take the timeout case
From 7d87b1b9f0a050650d3acb15293a9ea475f2b163 Mon Sep 17 00:00:00 2001
From: Mark McGranaghan
Date: Sun, 23 Aug 2020 07:50:27 -0700
Subject: [PATCH 002/241] Rebuild
---
examples/timeouts/timeouts.hash | 4 ++--
public/timeouts | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/examples/timeouts/timeouts.hash b/examples/timeouts/timeouts.hash
index 8fbb39d99..82f34b704 100644
--- a/examples/timeouts/timeouts.hash
+++ b/examples/timeouts/timeouts.hash
@@ -1,2 +1,2 @@
-fb913ae361c41095a39bb3fa0c5e9dcd54ec840e
-4oOz0j29MJ6
+79963f30cb3ca93d559a409e3ded40c2bb64df66
+gyr0NbVKBVf
diff --git a/public/timeouts b/public/timeouts
index 0d1854d30..b4d14e78b 100644
--- a/public/timeouts
+++ b/public/timeouts
@@ -44,7 +44,7 @@ elegant thanks to channels and select.
- 
+ 
@@ -103,7 +103,7 @@ channel is never read.
|
|
Here’s the select implementing a timeout.
-res := <-c1 awaits the result and <-Time.After
+res := <-c1 awaits the result and <-time.After
awaits a value to be sent after the timeout of
1s. Since select proceeds with the first
receive that’s ready, we’ll take the timeout case
From 71719ea0f3204160ecc8c089a560279496a394e5 Mon Sep 17 00:00:00 2001
From: legonian
Date: Sun, 18 Oct 2020 14:34:13 +0300
Subject: [PATCH 003/241] Change t.Fail to t.Fatal
Fail* continues execution, right function probably Fatal*.
---
examples/testing/main_test.go | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/examples/testing/main_test.go b/examples/testing/main_test.go
index c91540f10..e409d9d2e 100644
--- a/examples/testing/main_test.go
+++ b/examples/testing/main_test.go
@@ -31,7 +31,7 @@ func TestIntMinBasic(t *testing.T) {
ans := IntMin(2, -2)
if ans != -2 {
// `t.Error*` will report test failures but continue
- // executing the test. `t.Fail*` will report test
+ // executing the test. `t.Fatal*` will report test
// failures and stop the test immediately.
t.Errorf("IntMin(2, -2) = %d; want -2", ans)
}
From f72f11e64157dc151fa604c545b29fbaf1424ef0 Mon Sep 17 00:00:00 2001
From: Mark McGranaghan
Date: Mon, 19 Oct 2020 08:04:08 -0700
Subject: [PATCH 004/241] Rebuild
---
examples/testing/testing.hash | 4 ++--
public/testing | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/examples/testing/testing.hash b/examples/testing/testing.hash
index 3a02134ef..6dc53a9ef 100644
--- a/examples/testing/testing.hash
+++ b/examples/testing/testing.hash
@@ -1,2 +1,2 @@
-8e15d97f54c34ac1546c2ec6589cc1b60ff27f80
-GFuPdlBlyMU
+c9ca6b71d9f762b689f1f08a490d8c7f7764fcb3
+vY8PN0c6BSx
diff --git a/public/testing b/public/testing
index 385028c03..673e027a1 100644
--- a/public/testing
+++ b/public/testing
@@ -47,7 +47,7 @@ typically lives in the same package as the code it tests.
|
- 
+ 
@@ -110,7 +110,7 @@ beginning with Test.
|
|
t.Error* will report test failures but continue
-executing the test. t.Fail* will report test
+executing the test. t.Fatal* will report test
failures and stop the test immediately.
|
From 9e216da9ef940a0e8c4b1f30219a8f6b57804a89 Mon Sep 17 00:00:00 2001
From: Hana
Date: Mon, 15 Feb 2021 16:22:08 -0500
Subject: [PATCH 005/241] go.mod: add go.mod and move pygments to third_party
After go1.16, go will use module mode by default,
even when the repository is checked out under GOPATH
or in a one-off directory. Add go.mod, go.sum to keep
this repo buildable without opting out of the module
mode.
> go mod init github.com/mmcgrana/gobyexample
> go mod tidy
> go mod vendor
In module mode, the 'vendor' directory is special
and its contents will be actively maintained by the
go command. pygments aren't the dependency the go will
know about, so it will delete the contents from vendor
directory. Move it to `third_party` directory now.
And, vendor the blackfriday package.
Note: the tutorial contents are not affected by the
change in go1.16 because all the examples in this
tutorial ask users to run the go command with the
explicit list of files to be compiled (e.g.
`go run hello-world.go` or `go build command-line-arguments.go`).
When the source list is provided, the go command does
not have to compute the build list and whether it's
running in GOPATH mode or module mode becomes irrelevant.
---
README.md | 2 +-
go.mod | 5 +
go.sum | 2 +
public/arrays | 2 +-
public/atomic-counters | 2 +-
public/base64-encoding | 2 +-
public/channel-buffering | 2 +-
public/channel-directions | 2 +-
public/channel-synchronization | 2 +-
public/channels | 2 +-
public/closing-channels | 2 +-
public/closures | 2 +-
public/collection-functions | 2 +-
public/command-line-arguments | 2 +-
public/command-line-flags | 2 +-
public/command-line-subcommands | 2 +-
public/constants | 2 +-
public/context | 2 +-
public/defer | 2 +-
public/directories | 2 +-
public/environment-variables | 2 +-
public/epoch | 2 +-
public/errors | 2 +-
public/execing-processes | 2 +-
public/file-paths | 2 +-
public/for | 2 +-
public/functions | 2 +-
public/goroutines | 2 +-
public/http-clients | 2 +-
public/http-servers | 2 +-
public/if-else | 2 +-
public/index.html | 4 +
public/interfaces | 2 +-
public/json | 2 +-
public/line-filters | 2 +-
public/maps | 2 +-
public/methods | 2 +-
public/multiple-return-values | 2 +-
public/mutexes | 2 +-
public/non-blocking-channel-operations | 2 +-
public/number-parsing | 2 +-
public/panic | 2 +-
public/pointers | 2 +-
public/random-numbers | 2 +-
public/range | 2 +-
public/range-over-channels | 2 +-
public/rate-limiting | 2 +-
public/reading-files | 2 +-
public/recursion | 2 +-
public/regular-expressions | 2 +-
public/select | 2 +-
public/sha1-hashes | 2 +-
public/signals | 2 +-
public/slices | 2 +-
public/sorting | 2 +-
public/sorting-by-functions | 2 +-
public/spawning-processes | 2 +-
public/stateful-goroutines | 2 +-
public/string-formatting | 2 +-
public/string-functions | 2 +-
public/structs | 2 +-
public/switch | 2 +-
public/temporary-files-and-directories | 2 +-
public/testing | 2 +-
public/tickers | 2 +-
public/time | 2 +-
public/time-formatting-parsing | 2 +-
public/timeouts | 2 +-
public/timers | 2 +-
public/url-parsing | 2 +-
public/values | 2 +-
public/variables | 2 +-
public/variadic-functions | 2 +-
public/waitgroups | 2 +-
public/worker-pools | 2 +-
public/writing-files | 2 +-
public/xml | 2 +-
{vendor => third_party}/pygments/.hgignore | 0
{vendor => third_party}/pygments/.hgtags | 0
{vendor => third_party}/pygments/AUTHORS | 0
{vendor => third_party}/pygments/CHANGES | 0
{vendor => third_party}/pygments/LICENSE | 0
{vendor => third_party}/pygments/MANIFEST.in | 0
{vendor => third_party}/pygments/Makefile | 0
{vendor => third_party}/pygments/PKG-INFO | 0
.../pygments/Pygments.egg-info/PKG-INFO | 0
.../pygments/Pygments.egg-info/SOURCES.txt | 0
.../Pygments.egg-info/dependency_links.txt | 0
.../Pygments.egg-info/entry_points.txt | 0
.../pygments/Pygments.egg-info/not-zip-safe | 0
.../pygments/Pygments.egg-info/top_level.txt | 0
{vendor => third_party}/pygments/README.rst | 0
{vendor => third_party}/pygments/TODO | 0
{vendor => third_party}/pygments/doc/Makefile | 0
.../pygments/doc/_static/favicon.ico | Bin
.../pygments/doc/_static/logo_new.png | Bin
.../pygments/doc/_static/logo_only.png | Bin
.../pygments/doc/_templates/docssidebar.html | 0
.../pygments/doc/_templates/indexsidebar.html | 0
.../doc/_themes/pygments14/layout.html | 0
.../doc/_themes/pygments14/static/bodybg.png | Bin
.../doc/_themes/pygments14/static/docbg.png | Bin
.../_themes/pygments14/static/listitem.png | Bin
.../doc/_themes/pygments14/static/logo.png | Bin
.../doc/_themes/pygments14/static/pocoo.png | Bin
.../pygments14/static/pygments14.css_t | 0
.../doc/_themes/pygments14/theme.conf | 0
{vendor => third_party}/pygments/doc/conf.py | 0
.../pygments/doc/docs/api.rst | 0
.../pygments/doc/docs/authors.rst | 0
.../pygments/doc/docs/changelog.rst | 0
.../pygments/doc/docs/cmdline.rst | 0
.../pygments/doc/docs/filterdevelopment.rst | 0
.../pygments/doc/docs/filters.rst | 0
.../doc/docs/formatterdevelopment.rst | 0
.../pygments/doc/docs/formatters.rst | 0
.../pygments/doc/docs/index.rst | 0
.../pygments/doc/docs/integrate.rst | 0
.../pygments/doc/docs/java.rst | 0
.../pygments/doc/docs/lexerdevelopment.rst | 0
.../pygments/doc/docs/lexers.rst | 0
.../pygments/doc/docs/moinmoin.rst | 0
.../pygments/doc/docs/plugins.rst | 0
.../pygments/doc/docs/quickstart.rst | 0
.../pygments/doc/docs/rstdirective.rst | 0
.../pygments/doc/docs/styles.rst | 0
.../pygments/doc/docs/tokens.rst | 0
.../pygments/doc/docs/unicode.rst | 0
.../pygments/doc/download.rst | 0
{vendor => third_party}/pygments/doc/faq.rst | 0
.../pygments/doc/index.rst | 0
.../pygments/doc/languages.rst | 0
{vendor => third_party}/pygments/doc/make.bat | 0
.../pygments/doc/pygmentize.1 | 0
.../pygments/external/autopygmentize | 0
.../external/lasso-builtins-generator-9.lasso | 0
.../pygments/external/markdown-processor.py | 0
.../pygments/external/moin-parser.py | 0
.../pygments/external/pygments.bashcomp | 0
.../pygments/external/rst-directive.py | 0
{vendor => third_party}/pygments/ez_setup.py | 0
{vendor => third_party}/pygments/pygmentize | 0
.../pygments/pygments/__init__.py | 0
.../pygments/pygments/cmdline.py | 0
.../pygments/pygments/console.py | 0
.../pygments/pygments/filter.py | 0
.../pygments/pygments/filters/__init__.py | 0
.../pygments/pygments/formatter.py | 0
.../pygments/pygments/formatters/__init__.py | 0
.../pygments/pygments/formatters/_mapping.py | 0
.../pygments/pygments/formatters/bbcode.py | 0
.../pygments/pygments/formatters/html.py | 0
.../pygments/pygments/formatters/img.py | 0
.../pygments/pygments/formatters/irc.py | 0
.../pygments/pygments/formatters/latex.py | 0
.../pygments/pygments/formatters/other.py | 0
.../pygments/pygments/formatters/rtf.py | 0
.../pygments/pygments/formatters/svg.py | 0
.../pygments/pygments/formatters/terminal.py | 0
.../pygments/formatters/terminal256.py | 0
.../pygments/pygments/lexer.py | 0
.../pygments/pygments/lexers/__init__.py | 0
.../pygments/pygments/lexers/_asy_builtins.py | 0
.../pygments/pygments/lexers/_cl_builtins.py | 0
.../pygments/lexers/_cocoa_builtins.py | 0
.../pygments/lexers/_csound_builtins.py | 0
.../pygments/lexers/_lasso_builtins.py | 0
.../pygments/pygments/lexers/_lua_builtins.py | 0
.../pygments/pygments/lexers/_mapping.py | 0
.../pygments/pygments/lexers/_mql_builtins.py | 0
.../pygments/lexers/_openedge_builtins.py | 0
.../pygments/pygments/lexers/_php_builtins.py | 0
.../pygments/lexers/_postgres_builtins.py | 0
.../pygments/lexers/_scilab_builtins.py | 0
.../pygments/lexers/_sourcemod_builtins.py | 0
.../pygments/lexers/_stan_builtins.py | 0
.../pygments/pygments/lexers/_vim_builtins.py | 0
.../pygments/pygments/lexers/actionscript.py | 0
.../pygments/pygments/lexers/agile.py | 0
.../pygments/pygments/lexers/algebra.py | 0
.../pygments/pygments/lexers/ambient.py | 0
.../pygments/pygments/lexers/apl.py | 0
.../pygments/pygments/lexers/archetype.py | 0
.../pygments/pygments/lexers/asm.py | 0
.../pygments/pygments/lexers/automation.py | 0
.../pygments/pygments/lexers/basic.py | 0
.../pygments/pygments/lexers/business.py | 0
.../pygments/pygments/lexers/c_cpp.py | 0
.../pygments/pygments/lexers/c_like.py | 0
.../pygments/pygments/lexers/chapel.py | 0
.../pygments/pygments/lexers/compiled.py | 0
.../pygments/pygments/lexers/configs.py | 0
.../pygments/pygments/lexers/console.py | 0
.../pygments/pygments/lexers/csound.py | 0
.../pygments/pygments/lexers/css.py | 0
.../pygments/pygments/lexers/d.py | 0
.../pygments/pygments/lexers/dalvik.py | 0
.../pygments/pygments/lexers/data.py | 0
.../pygments/pygments/lexers/diff.py | 0
.../pygments/pygments/lexers/dotnet.py | 0
.../pygments/pygments/lexers/dsls.py | 0
.../pygments/pygments/lexers/dylan.py | 0
.../pygments/pygments/lexers/ecl.py | 0
.../pygments/pygments/lexers/eiffel.py | 0
.../pygments/pygments/lexers/elm.py | 0
.../pygments/pygments/lexers/erlang.py | 0
.../pygments/pygments/lexers/esoteric.py | 0
.../pygments/pygments/lexers/ezhil.py | 0
.../pygments/pygments/lexers/factor.py | 0
.../pygments/pygments/lexers/fantom.py | 0
.../pygments/pygments/lexers/felix.py | 0
.../pygments/pygments/lexers/fortran.py | 0
.../pygments/pygments/lexers/foxpro.py | 0
.../pygments/pygments/lexers/functional.py | 0
.../pygments/pygments/lexers/go.py | 0
.../pygments/lexers/grammar_notation.py | 0
.../pygments/pygments/lexers/graph.py | 0
.../pygments/pygments/lexers/graphics.py | 0
.../pygments/pygments/lexers/haskell.py | 0
.../pygments/pygments/lexers/haxe.py | 0
.../pygments/pygments/lexers/hdl.py | 0
.../pygments/pygments/lexers/hexdump.py | 0
.../pygments/pygments/lexers/html.py | 0
.../pygments/pygments/lexers/idl.py | 0
.../pygments/pygments/lexers/igor.py | 0
.../pygments/pygments/lexers/inferno.py | 0
.../pygments/pygments/lexers/installers.py | 0
.../pygments/pygments/lexers/int_fiction.py | 0
.../pygments/pygments/lexers/iolang.py | 0
.../pygments/pygments/lexers/j.py | 0
.../pygments/pygments/lexers/javascript.py | 0
.../pygments/pygments/lexers/julia.py | 0
.../pygments/pygments/lexers/jvm.py | 0
.../pygments/pygments/lexers/lisp.py | 0
.../pygments/pygments/lexers/make.py | 0
.../pygments/pygments/lexers/markup.py | 0
.../pygments/pygments/lexers/math.py | 0
.../pygments/pygments/lexers/matlab.py | 0
.../pygments/pygments/lexers/ml.py | 0
.../pygments/pygments/lexers/modeling.py | 0
.../pygments/pygments/lexers/modula2.py | 0
.../pygments/pygments/lexers/nimrod.py | 0
.../pygments/pygments/lexers/nit.py | 0
.../pygments/pygments/lexers/nix.py | 0
.../pygments/pygments/lexers/oberon.py | 0
.../pygments/pygments/lexers/objective.py | 0
.../pygments/pygments/lexers/ooc.py | 0
.../pygments/pygments/lexers/other.py | 0
.../pygments/pygments/lexers/parasail.py | 0
.../pygments/pygments/lexers/parsers.py | 0
.../pygments/pygments/lexers/pascal.py | 0
.../pygments/pygments/lexers/pawn.py | 0
.../pygments/pygments/lexers/perl.py | 0
.../pygments/pygments/lexers/php.py | 0
.../pygments/pygments/lexers/praat.py | 0
.../pygments/pygments/lexers/prolog.py | 0
.../pygments/pygments/lexers/python.py | 0
.../pygments/pygments/lexers/qvt.py | 0
.../pygments/pygments/lexers/r.py | 0
.../pygments/pygments/lexers/rdf.py | 0
.../pygments/pygments/lexers/rebol.py | 0
.../pygments/pygments/lexers/resource.py | 0
.../pygments/pygments/lexers/roboconf.py | 0
.../pygments/lexers/robotframework.py | 0
.../pygments/pygments/lexers/ruby.py | 0
.../pygments/pygments/lexers/rust.py | 0
.../pygments/pygments/lexers/scripting.py | 0
.../pygments/pygments/lexers/shell.py | 0
.../pygments/pygments/lexers/smalltalk.py | 0
.../pygments/pygments/lexers/snobol.py | 0
.../pygments/pygments/lexers/special.py | 0
.../pygments/pygments/lexers/sql.py | 0
.../pygments/pygments/lexers/supercollider.py | 0
.../pygments/pygments/lexers/tcl.py | 0
.../pygments/pygments/lexers/templates.py | 0
.../pygments/pygments/lexers/testing.py | 0
.../pygments/pygments/lexers/text.py | 0
.../pygments/pygments/lexers/textedit.py | 0
.../pygments/pygments/lexers/textfmts.py | 0
.../pygments/pygments/lexers/theorem.py | 0
.../pygments/pygments/lexers/trafficscript.py | 0
.../pygments/pygments/lexers/urbi.py | 0
.../pygments/pygments/lexers/web.py | 0
.../pygments/pygments/lexers/webmisc.py | 0
.../pygments/pygments/lexers/x10.py | 0
.../pygments/pygments/modeline.py | 0
.../pygments/pygments/plugin.py | 0
.../pygments/pygments/regexopt.py | 0
.../pygments/pygments/scanner.py | 0
.../pygments/pygments/sphinxext.py | 0
.../pygments/pygments/style.py | 0
.../pygments/pygments/styles/__init__.py | 0
.../pygments/pygments/styles/algol.py | 0
.../pygments/pygments/styles/algol_nu.py | 0
.../pygments/pygments/styles/arduino.py | 0
.../pygments/pygments/styles/autumn.py | 0
.../pygments/pygments/styles/borland.py | 0
.../pygments/pygments/styles/bw.py | 0
.../pygments/pygments/styles/colorful.py | 0
.../pygments/pygments/styles/default.py | 0
.../pygments/pygments/styles/emacs.py | 0
.../pygments/pygments/styles/friendly.py | 0
.../pygments/pygments/styles/fruity.py | 0
.../pygments/pygments/styles/igor.py | 0
.../pygments/pygments/styles/lovelace.py | 0
.../pygments/pygments/styles/manni.py | 0
.../pygments/pygments/styles/monokai.py | 0
.../pygments/pygments/styles/murphy.py | 0
.../pygments/pygments/styles/native.py | 0
.../pygments/pygments/styles/paraiso_dark.py | 0
.../pygments/pygments/styles/paraiso_light.py | 0
.../pygments/pygments/styles/pastie.py | 0
.../pygments/pygments/styles/perldoc.py | 0
.../pygments/pygments/styles/rrt.py | 0
.../pygments/pygments/styles/tango.py | 0
.../pygments/pygments/styles/trac.py | 0
.../pygments/pygments/styles/vim.py | 0
.../pygments/pygments/styles/vs.py | 0
.../pygments/pygments/styles/xcode.py | 0
.../pygments/pygments/token.py | 0
.../pygments/pygments/unistring.py | 0
.../pygments/pygments/util.py | 0
.../pygments/requirements.txt | 0
.../pygments/scripts/check_sources.py | 0
.../pygments/scripts/debug_lexer.py | 0
.../scripts/detect_missing_analyse_text.py | 0
.../pygments/scripts/epydoc.css | 0
.../pygments/scripts/find_error.py | 0
.../pygments/scripts/get_vimkw.py | 0
.../pygments/scripts/pylintrc | 0
.../pygments/scripts/vim2pygments.py | 0
{vendor => third_party}/pygments/setup.cfg | 0
{vendor => third_party}/pygments/setup.py | 0
.../pygments/tests/.coverage | Bin
.../pygments/tests/cover/coverage_html.js | 0
.../pygments/tests/cover/jquery.hotkeys.js | 0
.../pygments/tests/cover/jquery.isonscreen.js | 0
.../pygments/tests/cover/jquery.min.js | 0
.../tests/cover/jquery.tablesorter.min.js | 0
.../pygments/tests/cover/keybd_closed.png | Bin
.../pygments/tests/cover/keybd_open.png | Bin
.../pygments/tests/cover/status.dat | 0
.../pygments/tests/cover/style.css | 0
.../pygments/tests/dtds/HTML4-f.dtd | 0
.../pygments/tests/dtds/HTML4-s.dtd | 0
.../pygments/tests/dtds/HTML4.dcl | 0
.../pygments/tests/dtds/HTML4.dtd | 0
.../pygments/tests/dtds/HTML4.soc | 0
.../pygments/tests/dtds/HTMLlat1.ent | 0
.../pygments/tests/dtds/HTMLspec.ent | 0
.../pygments/tests/dtds/HTMLsym.ent | 0
.../examplefiles/99_bottles_of_beer.chpl | 0
.../tests/examplefiles/AcidStateAdvanced.hs | 0
.../tests/examplefiles/AlternatingGroup.mu | 0
.../pygments/tests/examplefiles/BOM.js | 0
.../pygments/tests/examplefiles/Blink.ino | 0
.../tests/examplefiles/CPDictionary.j | 0
.../tests/examplefiles/Config.in.cache | 0
.../pygments/tests/examplefiles/Constants.mo | 0
.../tests/examplefiles/DancingSudoku.lhs | 0
.../pygments/tests/examplefiles/Deflate.fs | 0
.../pygments/tests/examplefiles/Error.pmod | 0
.../pygments/tests/examplefiles/Errors.scala | 0
.../pygments/tests/examplefiles/FakeFile.pike | 0
.../Get-CommandDefinitionHtml.ps1 | 0
.../tests/examplefiles/IPDispatchC.nc | 0
.../tests/examplefiles/IPDispatchP.nc | 0
.../pygments/tests/examplefiles/Intro.java | 0
.../pygments/tests/examplefiles/Makefile | 0
.../pygments/tests/examplefiles/Object.st | 0
.../pygments/tests/examplefiles/OrderedMap.hx | 0
.../pygments/tests/examplefiles/RoleQ.pm6 | 0
.../pygments/tests/examplefiles/SmallCheck.hs | 0
.../pygments/tests/examplefiles/Sorting.mod | 0
.../pygments/tests/examplefiles/Sudoku.lhs | 0
.../tests/examplefiles/abnf_example1.abnf | 0
.../tests/examplefiles/abnf_example2.abnf | 0
.../tests/examplefiles/addressbook.proto | 0
.../pygments/tests/examplefiles/ahcon.f | 0
.../pygments/tests/examplefiles/all.nit | 0
.../tests/examplefiles/antlr_ANTLRv3.g | 0
.../pygments/tests/examplefiles/antlr_throws | 0
.../pygments/tests/examplefiles/apache2.conf | 0
.../pygments/tests/examplefiles/as3_test.as | 0
.../pygments/tests/examplefiles/as3_test2.as | 0
.../pygments/tests/examplefiles/as3_test3.as | 0
.../tests/examplefiles/aspx-cs_example | 0
.../tests/examplefiles/autoit_submit.au3 | 0
.../pygments/tests/examplefiles/automake.mk | 0
.../pygments/tests/examplefiles/badcase.java | 0
.../pygments/tests/examplefiles/bigtest.nsi | 0
.../tests/examplefiles/bnf_example1.bnf | 0
.../pygments/tests/examplefiles/boot-9.scm | 0
.../pygments/tests/examplefiles/ca65_example | 0
.../tests/examplefiles/cbmbas_example | 0
.../pygments/tests/examplefiles/cells.ps | Bin
.../pygments/tests/examplefiles/ceval.c | 0
.../pygments/tests/examplefiles/char.scala | 0
.../tests/examplefiles/cheetah_example.html | 0
.../pygments/tests/examplefiles/classes.dylan | 0
.../examplefiles/clojure-weird-keywords.clj | 0
.../tests/examplefiles/condensed_ruby.rb | 0
.../tests/examplefiles/coq_RelationClasses | 0
.../pygments/tests/examplefiles/core.cljs | 0
.../pygments/tests/examplefiles/database.pytb | 0
.../tests/examplefiles/de.MoinMoin.po | 0
.../pygments/tests/examplefiles/demo.ahk | 0
.../pygments/tests/examplefiles/demo.cfm | 0
.../pygments/tests/examplefiles/demo.css.in | 0
.../pygments/tests/examplefiles/demo.hbs | 0
.../pygments/tests/examplefiles/demo.js.in | 0
.../pygments/tests/examplefiles/demo.thrift | 0
.../pygments/tests/examplefiles/demo.xul.in | 0
.../examplefiles/django_sample.html+django | 0
.../pygments/tests/examplefiles/docker.docker | 0
.../pygments/tests/examplefiles/dwarf.cw | 0
.../tests/examplefiles/eg_example1.eg | 0
.../tests/examplefiles/ember.handlebars | 0
.../pygments/tests/examplefiles/erl_session | 0
.../pygments/tests/examplefiles/es6.js | 0
.../tests/examplefiles/escape_semicolon.clj | 0
.../pygments/tests/examplefiles/eval.rs | 0
.../pygments/tests/examplefiles/evil_regex.js | 0
.../pygments/tests/examplefiles/example.Rd | 0
.../pygments/tests/examplefiles/example.als | 0
.../pygments/tests/examplefiles/example.bat | 0
.../pygments/tests/examplefiles/example.bc | 0
.../pygments/tests/examplefiles/example.bug | 0
.../pygments/tests/examplefiles/example.c | 0
.../tests/examplefiles/example.ceylon | 0
.../pygments/tests/examplefiles/example.chai | 0
.../pygments/tests/examplefiles/example.clay | 0
.../pygments/tests/examplefiles/example.cls | 0
.../pygments/tests/examplefiles/example.cob | 0
.../tests/examplefiles/example.coffee | 0
.../pygments/tests/examplefiles/example.cpp | 0
.../pygments/tests/examplefiles/example.e | 0
.../pygments/tests/examplefiles/example.elm | 0
.../pygments/tests/examplefiles/example.ezt | 0
.../pygments/tests/examplefiles/example.f90 | 0
.../tests/examplefiles/example.feature | 0
.../pygments/tests/examplefiles/example.fish | 0
.../pygments/tests/examplefiles/example.gd | 0
.../pygments/tests/examplefiles/example.gi | 0
.../pygments/tests/examplefiles/example.golo | 0
.../tests/examplefiles/example.groovy | 0
.../pygments/tests/examplefiles/example.gs | 0
.../pygments/tests/examplefiles/example.gst | 0
.../pygments/tests/examplefiles/example.hs | 0
.../pygments/tests/examplefiles/example.hx | 0
.../pygments/tests/examplefiles/example.i6t | 0
.../pygments/tests/examplefiles/example.i7x | 0
.../pygments/tests/examplefiles/example.j | 0
.../pygments/tests/examplefiles/example.jag | 0
.../pygments/tests/examplefiles/example.java | 0
.../pygments/tests/examplefiles/example.jcl | 0
.../tests/examplefiles/example.jsonld | 0
.../pygments/tests/examplefiles/example.kal | 0
.../pygments/tests/examplefiles/example.kt | 0
.../pygments/tests/examplefiles/example.lagda | 0
.../tests/examplefiles/example.liquid | 0
.../pygments/tests/examplefiles/example.lua | 0
.../pygments/tests/examplefiles/example.ma | 0
.../pygments/tests/examplefiles/example.mac | 0
.../tests/examplefiles/example.monkey | 0
.../pygments/tests/examplefiles/example.moo | 0
.../pygments/tests/examplefiles/example.moon | 0
.../pygments/tests/examplefiles/example.mq4 | 0
.../pygments/tests/examplefiles/example.mqh | 0
.../pygments/tests/examplefiles/example.msc | 0
.../pygments/tests/examplefiles/example.ni | 0
.../pygments/tests/examplefiles/example.nim | 0
.../pygments/tests/examplefiles/example.nix | 0
.../pygments/tests/examplefiles/example.ns2 | 0
.../pygments/tests/examplefiles/example.pas | 0
.../pygments/tests/examplefiles/example.pcmk | 0
.../pygments/tests/examplefiles/example.pp | 0
.../pygments/tests/examplefiles/example.praat | 0
.../pygments/tests/examplefiles/example.prg | 0
.../pygments/tests/examplefiles/example.rb | 0
.../pygments/tests/examplefiles/example.red | 0
.../pygments/tests/examplefiles/example.reds | 0
.../pygments/tests/examplefiles/example.reg | 0
.../pygments/tests/examplefiles/example.rexx | 0
.../pygments/tests/examplefiles/example.rhtml | 0
.../pygments/tests/examplefiles/example.rkt | 0
.../pygments/tests/examplefiles/example.rpf | 0
.../pygments/tests/examplefiles/example.rts | 0
.../pygments/tests/examplefiles/example.scd | 0
.../pygments/tests/examplefiles/example.sh | 0
.../tests/examplefiles/example.sh-session | 0
.../tests/examplefiles/example.shell-session | 0
.../pygments/tests/examplefiles/example.slim | 0
.../pygments/tests/examplefiles/example.sls | 0
.../pygments/tests/examplefiles/example.sml | 0
.../tests/examplefiles/example.snobol | 0
.../pygments/tests/examplefiles/example.stan | 0
.../pygments/tests/examplefiles/example.tap | 0
.../pygments/tests/examplefiles/example.tea | 0
.../pygments/tests/examplefiles/example.tf | 0
.../pygments/tests/examplefiles/example.thy | 0
.../tests/examplefiles/example.todotxt | 0
.../pygments/tests/examplefiles/example.ts | 0
.../pygments/tests/examplefiles/example.ttl | 0
.../pygments/tests/examplefiles/example.u | 0
.../tests/examplefiles/example.weechatlog | 0
.../pygments/tests/examplefiles/example.x10 | 0
.../pygments/tests/examplefiles/example.xhtml | 0
.../pygments/tests/examplefiles/example.xtend | 0
.../pygments/tests/examplefiles/example.yaml | 0
.../pygments/tests/examplefiles/example1.cadl | 0
.../pygments/tests/examplefiles/example2.aspx | 0
.../pygments/tests/examplefiles/example2.msc | 0
.../tests/examplefiles/exampleScript.cfc | 0
.../tests/examplefiles/exampleTag.cfc | 0
.../pygments/tests/examplefiles/example_coq.v | 0
.../tests/examplefiles/example_elixir.ex | 0
.../tests/examplefiles/example_file.fy | 0
.../tests/examplefiles/ezhil_primefactors.n | 0
.../pygments/tests/examplefiles/firefox.mak | 0
.../pygments/tests/examplefiles/flipflop.sv | 0
.../pygments/tests/examplefiles/foo.sce | 0
.../pygments/tests/examplefiles/format.ml | 0
.../pygments/tests/examplefiles/fucked_up.rb | 0
.../pygments/tests/examplefiles/function.mu | 0
.../tests/examplefiles/functional.rst | 0
.../tests/examplefiles/garcia-wachs.kk | 0
.../pygments/tests/examplefiles/genclass.clj | 0
.../examplefiles/genshi_example.xml+genshi | 0
.../genshitext_example.genshitext | 0
.../pygments/tests/examplefiles/glsl.frag | 0
.../pygments/tests/examplefiles/glsl.vert | 0
.../tests/examplefiles/grammar-test.p6 | 0
.../tests/examplefiles/hash_syntax.rb | 0
.../pygments/tests/examplefiles/hello.at | 0
.../pygments/tests/examplefiles/hello.golo | 0
.../pygments/tests/examplefiles/hello.lsl | 0
.../pygments/tests/examplefiles/hello.smali | 0
.../pygments/tests/examplefiles/hello.sp | 0
.../tests/examplefiles/hexdump_debugexe | 0
.../pygments/tests/examplefiles/hexdump_hd | 0
.../tests/examplefiles/hexdump_hexcat | 0
.../tests/examplefiles/hexdump_hexdump | 0
.../pygments/tests/examplefiles/hexdump_od | 0
.../pygments/tests/examplefiles/hexdump_xxd | 0
.../tests/examplefiles/html+php_faulty.php | 0
.../tests/examplefiles/http_request_example | 0
.../tests/examplefiles/http_response_example | 0
.../tests/examplefiles/hybris_File.hy | 0
.../tests/examplefiles/idl_sample.pro | 0
.../pygments/tests/examplefiles/iex_example | 0
.../pygments/tests/examplefiles/inet_pton6.dg | 0
.../tests/examplefiles/inform6_example | 0
.../pygments/tests/examplefiles/interp.scala | 0
.../pygments/tests/examplefiles/intro.ik | 0
.../pygments/tests/examplefiles/ints.php | 0
.../pygments/tests/examplefiles/intsyn.fun | 0
.../pygments/tests/examplefiles/intsyn.sig | 0
.../pygments/tests/examplefiles/irb_heredoc | 0
.../pygments/tests/examplefiles/irc.lsp | 0
.../tests/examplefiles/java.properties | 0
.../tests/examplefiles/jbst_example1.jbst | 0
.../tests/examplefiles/jbst_example2.jbst | 0
.../tests/examplefiles/jinjadesignerdoc.rst | 0
.../pygments/tests/examplefiles/json.lasso | 0
.../pygments/tests/examplefiles/json.lasso9 | 0
.../pygments/tests/examplefiles/language.hy | 0
.../tests/examplefiles/lighttpd_config.conf | 0
.../pygments/tests/examplefiles/limbo.b | 0
.../tests/examplefiles/linecontinuation.py | 0
.../tests/examplefiles/livescript-demo.ls | 0
.../tests/examplefiles/logos_example.xm | 0
.../pygments/tests/examplefiles/ltmain.sh | 0
.../pygments/tests/examplefiles/main.cmake | 0
.../pygments/tests/examplefiles/markdown.lsp | 0
.../tests/examplefiles/matlab_noreturn | 0
.../pygments/tests/examplefiles/matlab_sample | 0
.../examplefiles/matlabsession_sample.txt | 0
.../tests/examplefiles/metagrammar.treetop | 0
.../pygments/tests/examplefiles/minehunt.qml | 0
.../pygments/tests/examplefiles/minimal.ns2 | 0
.../tests/examplefiles/modula2_test_cases.def | 0
.../examplefiles/moin_SyntaxReference.txt | 0
.../tests/examplefiles/multiline_regexes.rb | 0
.../pygments/tests/examplefiles/nanomsg.intr | 0
.../tests/examplefiles/nasm_aoutso.asm | 0
.../tests/examplefiles/nasm_objexe.asm | 0
.../tests/examplefiles/nemerle_sample.n | 0
.../tests/examplefiles/nginx_nginx.conf | 0
.../pygments/tests/examplefiles/noexcept.cpp | 0
.../pygments/tests/examplefiles/numbers.c | 0
.../tests/examplefiles/objc_example.m | 0
.../tests/examplefiles/openedge_example | 0
.../pygments/tests/examplefiles/pacman.conf | 0
.../pygments/tests/examplefiles/pacman.ijs | 0
.../pygments/tests/examplefiles/pawn_example | 0
.../pygments/tests/examplefiles/perl_misc | 0
.../pygments/tests/examplefiles/perl_perl5db | 0
.../tests/examplefiles/perl_regex-delims | 0
.../pygments/tests/examplefiles/perlfunc.1 | 0
.../tests/examplefiles/phpMyAdmin.spec | 0
.../tests/examplefiles/phpcomplete.vim | 0
.../tests/examplefiles/pkgconfig_example.pc | 0
.../pygments/tests/examplefiles/pleac.in.rb | 0
.../tests/examplefiles/postgresql_test.txt | 0
.../tests/examplefiles/pppoe.applescript | 0
.../tests/examplefiles/psql_session.txt | 0
.../pygments/tests/examplefiles/py3_test.txt | 0
.../tests/examplefiles/py3tb_test.py3tb | 0
.../tests/examplefiles/pycon_ctrlc_traceback | 0
.../tests/examplefiles/pycon_test.pycon | 0
.../tests/examplefiles/pytb_test2.pytb | 0
.../tests/examplefiles/pytb_test3.pytb | 0
.../tests/examplefiles/python25-bsd.mak | 0
.../tests/examplefiles/qbasic_example | 0
.../pygments/tests/examplefiles/qsort.prolog | 0
.../examplefiles/r-console-transcript.Rout | 0
.../tests/examplefiles/r6rs-comments.scm | 0
.../tests/examplefiles/ragel-cpp_rlscan | 0
.../tests/examplefiles/ragel-cpp_snippet | 0
.../pygments/tests/examplefiles/regex.js | 0
.../tests/examplefiles/resourcebundle_demo | 0
.../pygments/tests/examplefiles/reversi.lsp | 0
.../tests/examplefiles/roboconf.graph | 0
.../tests/examplefiles/roboconf.instances | 0
.../examplefiles/robotframework_test.txt | 0
.../tests/examplefiles/rql-queries.rql | 0
.../tests/examplefiles/ruby_func_def.rb | 0
.../pygments/tests/examplefiles/sample.qvto | 0
.../pygments/tests/examplefiles/scilab.sci | 0
.../pygments/tests/examplefiles/scope.cirru | 0
.../tests/examplefiles/session.dylan-console | 0
.../tests/examplefiles/sibling.prolog | 0
.../pygments/tests/examplefiles/simple.camkes | 0
.../pygments/tests/examplefiles/simple.croc | 0
.../tests/examplefiles/smarty_example.html | 0
.../pygments/tests/examplefiles/source.lgt | 0
.../pygments/tests/examplefiles/sources.list | 0
.../pygments/tests/examplefiles/sparql.rq | 0
.../pygments/tests/examplefiles/sphere.pov | 0
.../examplefiles/sqlite3.sqlite3-console | 0
.../pygments/tests/examplefiles/squid.conf | 0
.../pygments/tests/examplefiles/string.jl | 0
.../tests/examplefiles/string_delimiters.d | 0
.../tests/examplefiles/stripheredoc.sh | 0
.../pygments/tests/examplefiles/subr.el | 0
.../pygments/tests/examplefiles/swig_java.swg | 0
.../tests/examplefiles/swig_std_vector.i | 0
.../tests/examplefiles/tads3_example.t | 0
.../pygments/tests/examplefiles/termcap | 0
.../pygments/tests/examplefiles/terminfo | 0
.../pygments/tests/examplefiles/test-3.0.xq | 0
.../tests/examplefiles/test-exist-update.xq | 0
.../pygments/tests/examplefiles/test.R | 0
.../pygments/tests/examplefiles/test.adb | 0
.../pygments/tests/examplefiles/test.adls | 0
.../pygments/tests/examplefiles/test.agda | 0
.../pygments/tests/examplefiles/test.apl | 0
.../pygments/tests/examplefiles/test.asy | 0
.../pygments/tests/examplefiles/test.awk | 0
.../pygments/tests/examplefiles/test.bb | 0
.../pygments/tests/examplefiles/test.bmx | 0
.../pygments/tests/examplefiles/test.boo | 0
.../pygments/tests/examplefiles/test.bpl | 0
.../pygments/tests/examplefiles/test.bro | 0
.../pygments/tests/examplefiles/test.cadl | 0
.../pygments/tests/examplefiles/test.cs | 0
.../pygments/tests/examplefiles/test.csd | 0
.../pygments/tests/examplefiles/test.css | 0
.../pygments/tests/examplefiles/test.cu | 0
.../pygments/tests/examplefiles/test.cyp | 0
.../pygments/tests/examplefiles/test.d | 0
.../pygments/tests/examplefiles/test.dart | 0
.../pygments/tests/examplefiles/test.dtd | 0
.../pygments/tests/examplefiles/test.ebnf | 0
.../pygments/tests/examplefiles/test.ec | 0
.../pygments/tests/examplefiles/test.eh | 0
.../pygments/tests/examplefiles/test.erl | 0
.../pygments/tests/examplefiles/test.evoque | 0
.../pygments/tests/examplefiles/test.fan | 0
.../pygments/tests/examplefiles/test.flx | 0
.../pygments/tests/examplefiles/test.gdc | 0
.../pygments/tests/examplefiles/test.gradle | 0
.../pygments/tests/examplefiles/test.groovy | 0
.../pygments/tests/examplefiles/test.html | 0
.../pygments/tests/examplefiles/test.idr | 0
.../pygments/tests/examplefiles/test.ini | 0
.../pygments/tests/examplefiles/test.java | 0
.../pygments/tests/examplefiles/test.jsp | 0
.../pygments/tests/examplefiles/test.lean | 0
.../pygments/tests/examplefiles/test.maql | 0
.../pygments/tests/examplefiles/test.mask | 0
.../pygments/tests/examplefiles/test.mod | 0
.../pygments/tests/examplefiles/test.moo | 0
.../pygments/tests/examplefiles/test.myt | 0
.../pygments/tests/examplefiles/test.nim | 0
.../pygments/tests/examplefiles/test.odin | 0
.../pygments/tests/examplefiles/test.opa | 0
.../pygments/tests/examplefiles/test.orc | 0
.../pygments/tests/examplefiles/test.p6 | 0
.../pygments/tests/examplefiles/test.pan | 0
.../pygments/tests/examplefiles/test.pas | 0
.../pygments/tests/examplefiles/test.php | 0
.../pygments/tests/examplefiles/test.pig | 0
.../pygments/tests/examplefiles/test.plot | 0
.../pygments/tests/examplefiles/test.ps1 | 0
.../pygments/tests/examplefiles/test.psl | 0
.../pygments/tests/examplefiles/test.pwn | 0
.../pygments/tests/examplefiles/test.pypylog | 0
.../pygments/tests/examplefiles/test.r3 | 0
.../pygments/tests/examplefiles/test.rb | 0
.../pygments/tests/examplefiles/test.rhtml | 0
.../pygments/tests/examplefiles/test.rsl | 0
.../pygments/tests/examplefiles/test.scaml | 0
.../pygments/tests/examplefiles/test.sco | 0
.../pygments/tests/examplefiles/test.shen | 0
.../pygments/tests/examplefiles/test.ssp | 0
.../pygments/tests/examplefiles/test.swift | 0
.../pygments/tests/examplefiles/test.tcsh | 0
.../pygments/tests/examplefiles/test.vb | 0
.../pygments/tests/examplefiles/test.vhdl | 0
.../pygments/tests/examplefiles/test.xqy | 0
.../pygments/tests/examplefiles/test.xsl | 0
.../pygments/tests/examplefiles/test.zep | 0
.../pygments/tests/examplefiles/test2.odin | 0
.../pygments/tests/examplefiles/test2.pypylog | 0
.../tests/examplefiles/test_basic.adls | 0
.../tests/examplefiles/truncated.pytb | 0
.../pygments/tests/examplefiles/twig_test | 0
.../pygments/tests/examplefiles/type.lisp | 0
.../tests/examplefiles/underscore.coffee | 0
.../tests/examplefiles/unicode.applescript | 0
.../pygments/tests/examplefiles/unicode.go | 0
.../pygments/tests/examplefiles/unicode.js | 0
.../pygments/tests/examplefiles/unicodedoc.py | 0
.../pygments/tests/examplefiles/unix-io.lid | 0
.../tests/examplefiles/vbnet_test.bas | 0
.../tests/examplefiles/vctreestatus_hg | 0
.../pygments/tests/examplefiles/vimrc | 0
.../pygments/tests/examplefiles/vpath.mk | 0
.../tests/examplefiles/webkit-transition.css | 0
.../pygments/tests/examplefiles/while.pov | 0
.../pygments/tests/examplefiles/wiki.factor | 0
.../pygments/tests/examplefiles/xml_example | 0
.../pygments/tests/examplefiles/yahalom.cpsa | 0
.../pygments/tests/examplefiles/zmlrpc.f90 | 0
{vendor => third_party}/pygments/tests/run.py | 0
.../pygments/tests/string_asserts.py | 0
.../pygments/tests/support.py | 0
.../pygments/tests/support/tags | 0
.../pygments/tests/test_basic_api.py | 0
.../pygments/tests/test_cfm.py | 0
.../pygments/tests/test_clexer.py | 0
.../pygments/tests/test_cmdline.py | 0
.../pygments/tests/test_examplefiles.py | 0
.../pygments/tests/test_ezhil.py | 0
.../pygments/tests/test_html_formatter.py | 0
.../pygments/tests/test_inherit.py | 0
.../pygments/tests/test_irc_formatter.py | 0
.../pygments/tests/test_java.py | 0
.../pygments/tests/test_latex_formatter.py | 0
.../pygments/tests/test_lexers_other.py | 0
.../pygments/tests/test_objectiveclexer.py | 0
.../pygments/tests/test_perllexer.py | 0
.../pygments/tests/test_qbasiclexer.py | 0
.../pygments/tests/test_regexlexer.py | 0
.../pygments/tests/test_regexopt.py | 0
.../pygments/tests/test_rtf_formatter.py | 0
.../pygments/tests/test_ruby.py | 0
.../pygments/tests/test_shell.py | 0
.../pygments/tests/test_smarty.py | 0
.../pygments/tests/test_string_asserts.py | 0
.../pygments/tests/test_terminal_formatter.py | 0
.../pygments/tests/test_textfmts.py | 0
.../pygments/tests/test_token.py | 0
.../pygments/tests/test_unistring.py | 0
.../pygments/tests/test_using_api.py | 0
.../pygments/tests/test_util.py | 0
{vendor => third_party}/pygments/tox.ini | 0
tools/generate.go | 2 +-
.../russross/blackfriday/.gitignore | 8 +
.../russross/blackfriday/.travis.yml | 18 +
.../russross/blackfriday/LICENSE.txt | 28 +
.../github.com/russross/blackfriday/README.md | 364 ++++
.../github.com/russross/blackfriday/block.go | 1480 +++++++++++++++++
vendor/github.com/russross/blackfriday/doc.go | 32 +
vendor/github.com/russross/blackfriday/go.mod | 3 +
.../github.com/russross/blackfriday/html.go | 945 +++++++++++
.../github.com/russross/blackfriday/inline.go | 1154 +++++++++++++
.../github.com/russross/blackfriday/latex.go | 334 ++++
.../russross/blackfriday/markdown.go | 943 +++++++++++
.../russross/blackfriday/smartypants.go | 430 +++++
vendor/modules.txt | 3 +
793 files changed, 5828 insertions(+), 75 deletions(-)
create mode 100644 go.mod
create mode 100644 go.sum
rename {vendor => third_party}/pygments/.hgignore (100%)
rename {vendor => third_party}/pygments/.hgtags (100%)
rename {vendor => third_party}/pygments/AUTHORS (100%)
rename {vendor => third_party}/pygments/CHANGES (100%)
rename {vendor => third_party}/pygments/LICENSE (100%)
rename {vendor => third_party}/pygments/MANIFEST.in (100%)
rename {vendor => third_party}/pygments/Makefile (100%)
rename {vendor => third_party}/pygments/PKG-INFO (100%)
rename {vendor => third_party}/pygments/Pygments.egg-info/PKG-INFO (100%)
rename {vendor => third_party}/pygments/Pygments.egg-info/SOURCES.txt (100%)
rename {vendor => third_party}/pygments/Pygments.egg-info/dependency_links.txt (100%)
rename {vendor => third_party}/pygments/Pygments.egg-info/entry_points.txt (100%)
rename {vendor => third_party}/pygments/Pygments.egg-info/not-zip-safe (100%)
rename {vendor => third_party}/pygments/Pygments.egg-info/top_level.txt (100%)
rename {vendor => third_party}/pygments/README.rst (100%)
rename {vendor => third_party}/pygments/TODO (100%)
rename {vendor => third_party}/pygments/doc/Makefile (100%)
rename {vendor => third_party}/pygments/doc/_static/favicon.ico (100%)
rename {vendor => third_party}/pygments/doc/_static/logo_new.png (100%)
rename {vendor => third_party}/pygments/doc/_static/logo_only.png (100%)
rename {vendor => third_party}/pygments/doc/_templates/docssidebar.html (100%)
rename {vendor => third_party}/pygments/doc/_templates/indexsidebar.html (100%)
rename {vendor => third_party}/pygments/doc/_themes/pygments14/layout.html (100%)
rename {vendor => third_party}/pygments/doc/_themes/pygments14/static/bodybg.png (100%)
rename {vendor => third_party}/pygments/doc/_themes/pygments14/static/docbg.png (100%)
rename {vendor => third_party}/pygments/doc/_themes/pygments14/static/listitem.png (100%)
rename {vendor => third_party}/pygments/doc/_themes/pygments14/static/logo.png (100%)
rename {vendor => third_party}/pygments/doc/_themes/pygments14/static/pocoo.png (100%)
rename {vendor => third_party}/pygments/doc/_themes/pygments14/static/pygments14.css_t (100%)
rename {vendor => third_party}/pygments/doc/_themes/pygments14/theme.conf (100%)
rename {vendor => third_party}/pygments/doc/conf.py (100%)
rename {vendor => third_party}/pygments/doc/docs/api.rst (100%)
rename {vendor => third_party}/pygments/doc/docs/authors.rst (100%)
rename {vendor => third_party}/pygments/doc/docs/changelog.rst (100%)
rename {vendor => third_party}/pygments/doc/docs/cmdline.rst (100%)
rename {vendor => third_party}/pygments/doc/docs/filterdevelopment.rst (100%)
rename {vendor => third_party}/pygments/doc/docs/filters.rst (100%)
rename {vendor => third_party}/pygments/doc/docs/formatterdevelopment.rst (100%)
rename {vendor => third_party}/pygments/doc/docs/formatters.rst (100%)
rename {vendor => third_party}/pygments/doc/docs/index.rst (100%)
rename {vendor => third_party}/pygments/doc/docs/integrate.rst (100%)
rename {vendor => third_party}/pygments/doc/docs/java.rst (100%)
rename {vendor => third_party}/pygments/doc/docs/lexerdevelopment.rst (100%)
rename {vendor => third_party}/pygments/doc/docs/lexers.rst (100%)
rename {vendor => third_party}/pygments/doc/docs/moinmoin.rst (100%)
rename {vendor => third_party}/pygments/doc/docs/plugins.rst (100%)
rename {vendor => third_party}/pygments/doc/docs/quickstart.rst (100%)
rename {vendor => third_party}/pygments/doc/docs/rstdirective.rst (100%)
rename {vendor => third_party}/pygments/doc/docs/styles.rst (100%)
rename {vendor => third_party}/pygments/doc/docs/tokens.rst (100%)
rename {vendor => third_party}/pygments/doc/docs/unicode.rst (100%)
rename {vendor => third_party}/pygments/doc/download.rst (100%)
rename {vendor => third_party}/pygments/doc/faq.rst (100%)
rename {vendor => third_party}/pygments/doc/index.rst (100%)
rename {vendor => third_party}/pygments/doc/languages.rst (100%)
rename {vendor => third_party}/pygments/doc/make.bat (100%)
rename {vendor => third_party}/pygments/doc/pygmentize.1 (100%)
rename {vendor => third_party}/pygments/external/autopygmentize (100%)
rename {vendor => third_party}/pygments/external/lasso-builtins-generator-9.lasso (100%)
rename {vendor => third_party}/pygments/external/markdown-processor.py (100%)
rename {vendor => third_party}/pygments/external/moin-parser.py (100%)
rename {vendor => third_party}/pygments/external/pygments.bashcomp (100%)
rename {vendor => third_party}/pygments/external/rst-directive.py (100%)
rename {vendor => third_party}/pygments/ez_setup.py (100%)
rename {vendor => third_party}/pygments/pygmentize (100%)
rename {vendor => third_party}/pygments/pygments/__init__.py (100%)
rename {vendor => third_party}/pygments/pygments/cmdline.py (100%)
rename {vendor => third_party}/pygments/pygments/console.py (100%)
rename {vendor => third_party}/pygments/pygments/filter.py (100%)
rename {vendor => third_party}/pygments/pygments/filters/__init__.py (100%)
rename {vendor => third_party}/pygments/pygments/formatter.py (100%)
rename {vendor => third_party}/pygments/pygments/formatters/__init__.py (100%)
rename {vendor => third_party}/pygments/pygments/formatters/_mapping.py (100%)
rename {vendor => third_party}/pygments/pygments/formatters/bbcode.py (100%)
rename {vendor => third_party}/pygments/pygments/formatters/html.py (100%)
rename {vendor => third_party}/pygments/pygments/formatters/img.py (100%)
rename {vendor => third_party}/pygments/pygments/formatters/irc.py (100%)
rename {vendor => third_party}/pygments/pygments/formatters/latex.py (100%)
rename {vendor => third_party}/pygments/pygments/formatters/other.py (100%)
rename {vendor => third_party}/pygments/pygments/formatters/rtf.py (100%)
rename {vendor => third_party}/pygments/pygments/formatters/svg.py (100%)
rename {vendor => third_party}/pygments/pygments/formatters/terminal.py (100%)
rename {vendor => third_party}/pygments/pygments/formatters/terminal256.py (100%)
rename {vendor => third_party}/pygments/pygments/lexer.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/__init__.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/_asy_builtins.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/_cl_builtins.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/_cocoa_builtins.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/_csound_builtins.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/_lasso_builtins.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/_lua_builtins.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/_mapping.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/_mql_builtins.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/_openedge_builtins.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/_php_builtins.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/_postgres_builtins.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/_scilab_builtins.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/_sourcemod_builtins.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/_stan_builtins.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/_vim_builtins.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/actionscript.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/agile.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/algebra.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/ambient.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/apl.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/archetype.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/asm.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/automation.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/basic.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/business.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/c_cpp.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/c_like.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/chapel.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/compiled.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/configs.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/console.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/csound.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/css.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/d.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/dalvik.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/data.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/diff.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/dotnet.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/dsls.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/dylan.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/ecl.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/eiffel.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/elm.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/erlang.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/esoteric.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/ezhil.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/factor.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/fantom.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/felix.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/fortran.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/foxpro.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/functional.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/go.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/grammar_notation.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/graph.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/graphics.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/haskell.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/haxe.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/hdl.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/hexdump.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/html.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/idl.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/igor.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/inferno.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/installers.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/int_fiction.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/iolang.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/j.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/javascript.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/julia.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/jvm.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/lisp.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/make.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/markup.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/math.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/matlab.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/ml.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/modeling.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/modula2.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/nimrod.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/nit.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/nix.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/oberon.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/objective.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/ooc.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/other.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/parasail.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/parsers.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/pascal.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/pawn.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/perl.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/php.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/praat.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/prolog.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/python.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/qvt.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/r.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/rdf.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/rebol.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/resource.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/roboconf.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/robotframework.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/ruby.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/rust.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/scripting.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/shell.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/smalltalk.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/snobol.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/special.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/sql.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/supercollider.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/tcl.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/templates.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/testing.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/text.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/textedit.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/textfmts.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/theorem.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/trafficscript.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/urbi.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/web.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/webmisc.py (100%)
rename {vendor => third_party}/pygments/pygments/lexers/x10.py (100%)
rename {vendor => third_party}/pygments/pygments/modeline.py (100%)
rename {vendor => third_party}/pygments/pygments/plugin.py (100%)
rename {vendor => third_party}/pygments/pygments/regexopt.py (100%)
rename {vendor => third_party}/pygments/pygments/scanner.py (100%)
rename {vendor => third_party}/pygments/pygments/sphinxext.py (100%)
rename {vendor => third_party}/pygments/pygments/style.py (100%)
rename {vendor => third_party}/pygments/pygments/styles/__init__.py (100%)
rename {vendor => third_party}/pygments/pygments/styles/algol.py (100%)
rename {vendor => third_party}/pygments/pygments/styles/algol_nu.py (100%)
rename {vendor => third_party}/pygments/pygments/styles/arduino.py (100%)
rename {vendor => third_party}/pygments/pygments/styles/autumn.py (100%)
rename {vendor => third_party}/pygments/pygments/styles/borland.py (100%)
rename {vendor => third_party}/pygments/pygments/styles/bw.py (100%)
rename {vendor => third_party}/pygments/pygments/styles/colorful.py (100%)
rename {vendor => third_party}/pygments/pygments/styles/default.py (100%)
rename {vendor => third_party}/pygments/pygments/styles/emacs.py (100%)
rename {vendor => third_party}/pygments/pygments/styles/friendly.py (100%)
rename {vendor => third_party}/pygments/pygments/styles/fruity.py (100%)
rename {vendor => third_party}/pygments/pygments/styles/igor.py (100%)
rename {vendor => third_party}/pygments/pygments/styles/lovelace.py (100%)
rename {vendor => third_party}/pygments/pygments/styles/manni.py (100%)
rename {vendor => third_party}/pygments/pygments/styles/monokai.py (100%)
rename {vendor => third_party}/pygments/pygments/styles/murphy.py (100%)
rename {vendor => third_party}/pygments/pygments/styles/native.py (100%)
rename {vendor => third_party}/pygments/pygments/styles/paraiso_dark.py (100%)
rename {vendor => third_party}/pygments/pygments/styles/paraiso_light.py (100%)
rename {vendor => third_party}/pygments/pygments/styles/pastie.py (100%)
rename {vendor => third_party}/pygments/pygments/styles/perldoc.py (100%)
rename {vendor => third_party}/pygments/pygments/styles/rrt.py (100%)
rename {vendor => third_party}/pygments/pygments/styles/tango.py (100%)
rename {vendor => third_party}/pygments/pygments/styles/trac.py (100%)
rename {vendor => third_party}/pygments/pygments/styles/vim.py (100%)
rename {vendor => third_party}/pygments/pygments/styles/vs.py (100%)
rename {vendor => third_party}/pygments/pygments/styles/xcode.py (100%)
rename {vendor => third_party}/pygments/pygments/token.py (100%)
rename {vendor => third_party}/pygments/pygments/unistring.py (100%)
rename {vendor => third_party}/pygments/pygments/util.py (100%)
rename {vendor => third_party}/pygments/requirements.txt (100%)
rename {vendor => third_party}/pygments/scripts/check_sources.py (100%)
rename {vendor => third_party}/pygments/scripts/debug_lexer.py (100%)
rename {vendor => third_party}/pygments/scripts/detect_missing_analyse_text.py (100%)
rename {vendor => third_party}/pygments/scripts/epydoc.css (100%)
rename {vendor => third_party}/pygments/scripts/find_error.py (100%)
rename {vendor => third_party}/pygments/scripts/get_vimkw.py (100%)
rename {vendor => third_party}/pygments/scripts/pylintrc (100%)
rename {vendor => third_party}/pygments/scripts/vim2pygments.py (100%)
rename {vendor => third_party}/pygments/setup.cfg (100%)
rename {vendor => third_party}/pygments/setup.py (100%)
rename {vendor => third_party}/pygments/tests/.coverage (100%)
rename {vendor => third_party}/pygments/tests/cover/coverage_html.js (100%)
rename {vendor => third_party}/pygments/tests/cover/jquery.hotkeys.js (100%)
rename {vendor => third_party}/pygments/tests/cover/jquery.isonscreen.js (100%)
rename {vendor => third_party}/pygments/tests/cover/jquery.min.js (100%)
rename {vendor => third_party}/pygments/tests/cover/jquery.tablesorter.min.js (100%)
rename {vendor => third_party}/pygments/tests/cover/keybd_closed.png (100%)
rename {vendor => third_party}/pygments/tests/cover/keybd_open.png (100%)
rename {vendor => third_party}/pygments/tests/cover/status.dat (100%)
rename {vendor => third_party}/pygments/tests/cover/style.css (100%)
rename {vendor => third_party}/pygments/tests/dtds/HTML4-f.dtd (100%)
rename {vendor => third_party}/pygments/tests/dtds/HTML4-s.dtd (100%)
rename {vendor => third_party}/pygments/tests/dtds/HTML4.dcl (100%)
rename {vendor => third_party}/pygments/tests/dtds/HTML4.dtd (100%)
rename {vendor => third_party}/pygments/tests/dtds/HTML4.soc (100%)
rename {vendor => third_party}/pygments/tests/dtds/HTMLlat1.ent (100%)
rename {vendor => third_party}/pygments/tests/dtds/HTMLspec.ent (100%)
rename {vendor => third_party}/pygments/tests/dtds/HTMLsym.ent (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/99_bottles_of_beer.chpl (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/AcidStateAdvanced.hs (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/AlternatingGroup.mu (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/BOM.js (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/Blink.ino (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/CPDictionary.j (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/Config.in.cache (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/Constants.mo (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/DancingSudoku.lhs (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/Deflate.fs (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/Error.pmod (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/Errors.scala (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/FakeFile.pike (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/Get-CommandDefinitionHtml.ps1 (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/IPDispatchC.nc (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/IPDispatchP.nc (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/Intro.java (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/Makefile (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/Object.st (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/OrderedMap.hx (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/RoleQ.pm6 (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/SmallCheck.hs (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/Sorting.mod (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/Sudoku.lhs (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/abnf_example1.abnf (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/abnf_example2.abnf (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/addressbook.proto (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/ahcon.f (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/all.nit (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/antlr_ANTLRv3.g (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/antlr_throws (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/apache2.conf (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/as3_test.as (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/as3_test2.as (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/as3_test3.as (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/aspx-cs_example (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/autoit_submit.au3 (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/automake.mk (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/badcase.java (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/bigtest.nsi (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/bnf_example1.bnf (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/boot-9.scm (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/ca65_example (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/cbmbas_example (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/cells.ps (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/ceval.c (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/char.scala (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/cheetah_example.html (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/classes.dylan (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/clojure-weird-keywords.clj (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/condensed_ruby.rb (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/coq_RelationClasses (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/core.cljs (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/database.pytb (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/de.MoinMoin.po (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/demo.ahk (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/demo.cfm (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/demo.css.in (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/demo.hbs (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/demo.js.in (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/demo.thrift (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/demo.xul.in (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/django_sample.html+django (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/docker.docker (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/dwarf.cw (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/eg_example1.eg (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/ember.handlebars (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/erl_session (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/es6.js (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/escape_semicolon.clj (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/eval.rs (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/evil_regex.js (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example.Rd (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example.als (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example.bat (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example.bc (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example.bug (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example.c (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example.ceylon (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example.chai (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example.clay (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example.cls (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example.cob (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example.coffee (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example.cpp (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example.e (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example.elm (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example.ezt (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example.f90 (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example.feature (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example.fish (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example.gd (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example.gi (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example.golo (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example.groovy (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example.gs (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example.gst (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example.hs (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example.hx (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example.i6t (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example.i7x (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example.j (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example.jag (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example.java (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example.jcl (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example.jsonld (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example.kal (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example.kt (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example.lagda (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example.liquid (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example.lua (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example.ma (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example.mac (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example.monkey (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example.moo (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example.moon (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example.mq4 (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example.mqh (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example.msc (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example.ni (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example.nim (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example.nix (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example.ns2 (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example.pas (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example.pcmk (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example.pp (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example.praat (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example.prg (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example.rb (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example.red (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example.reds (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example.reg (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example.rexx (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example.rhtml (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example.rkt (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example.rpf (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example.rts (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example.scd (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example.sh (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example.sh-session (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example.shell-session (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example.slim (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example.sls (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example.sml (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example.snobol (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example.stan (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example.tap (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example.tea (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example.tf (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example.thy (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example.todotxt (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example.ts (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example.ttl (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example.u (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example.weechatlog (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example.x10 (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example.xhtml (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example.xtend (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example.yaml (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example1.cadl (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example2.aspx (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example2.msc (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/exampleScript.cfc (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/exampleTag.cfc (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example_coq.v (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example_elixir.ex (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/example_file.fy (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/ezhil_primefactors.n (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/firefox.mak (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/flipflop.sv (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/foo.sce (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/format.ml (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/fucked_up.rb (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/function.mu (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/functional.rst (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/garcia-wachs.kk (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/genclass.clj (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/genshi_example.xml+genshi (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/genshitext_example.genshitext (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/glsl.frag (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/glsl.vert (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/grammar-test.p6 (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/hash_syntax.rb (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/hello.at (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/hello.golo (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/hello.lsl (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/hello.smali (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/hello.sp (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/hexdump_debugexe (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/hexdump_hd (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/hexdump_hexcat (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/hexdump_hexdump (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/hexdump_od (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/hexdump_xxd (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/html+php_faulty.php (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/http_request_example (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/http_response_example (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/hybris_File.hy (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/idl_sample.pro (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/iex_example (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/inet_pton6.dg (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/inform6_example (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/interp.scala (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/intro.ik (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/ints.php (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/intsyn.fun (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/intsyn.sig (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/irb_heredoc (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/irc.lsp (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/java.properties (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/jbst_example1.jbst (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/jbst_example2.jbst (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/jinjadesignerdoc.rst (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/json.lasso (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/json.lasso9 (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/language.hy (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/lighttpd_config.conf (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/limbo.b (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/linecontinuation.py (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/livescript-demo.ls (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/logos_example.xm (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/ltmain.sh (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/main.cmake (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/markdown.lsp (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/matlab_noreturn (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/matlab_sample (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/matlabsession_sample.txt (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/metagrammar.treetop (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/minehunt.qml (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/minimal.ns2 (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/modula2_test_cases.def (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/moin_SyntaxReference.txt (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/multiline_regexes.rb (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/nanomsg.intr (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/nasm_aoutso.asm (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/nasm_objexe.asm (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/nemerle_sample.n (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/nginx_nginx.conf (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/noexcept.cpp (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/numbers.c (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/objc_example.m (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/openedge_example (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/pacman.conf (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/pacman.ijs (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/pawn_example (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/perl_misc (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/perl_perl5db (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/perl_regex-delims (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/perlfunc.1 (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/phpMyAdmin.spec (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/phpcomplete.vim (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/pkgconfig_example.pc (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/pleac.in.rb (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/postgresql_test.txt (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/pppoe.applescript (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/psql_session.txt (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/py3_test.txt (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/py3tb_test.py3tb (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/pycon_ctrlc_traceback (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/pycon_test.pycon (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/pytb_test2.pytb (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/pytb_test3.pytb (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/python25-bsd.mak (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/qbasic_example (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/qsort.prolog (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/r-console-transcript.Rout (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/r6rs-comments.scm (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/ragel-cpp_rlscan (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/ragel-cpp_snippet (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/regex.js (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/resourcebundle_demo (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/reversi.lsp (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/roboconf.graph (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/roboconf.instances (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/robotframework_test.txt (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/rql-queries.rql (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/ruby_func_def.rb (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/sample.qvto (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/scilab.sci (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/scope.cirru (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/session.dylan-console (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/sibling.prolog (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/simple.camkes (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/simple.croc (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/smarty_example.html (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/source.lgt (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/sources.list (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/sparql.rq (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/sphere.pov (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/sqlite3.sqlite3-console (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/squid.conf (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/string.jl (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/string_delimiters.d (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/stripheredoc.sh (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/subr.el (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/swig_java.swg (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/swig_std_vector.i (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/tads3_example.t (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/termcap (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/terminfo (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/test-3.0.xq (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/test-exist-update.xq (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/test.R (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/test.adb (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/test.adls (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/test.agda (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/test.apl (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/test.asy (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/test.awk (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/test.bb (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/test.bmx (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/test.boo (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/test.bpl (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/test.bro (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/test.cadl (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/test.cs (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/test.csd (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/test.css (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/test.cu (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/test.cyp (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/test.d (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/test.dart (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/test.dtd (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/test.ebnf (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/test.ec (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/test.eh (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/test.erl (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/test.evoque (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/test.fan (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/test.flx (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/test.gdc (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/test.gradle (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/test.groovy (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/test.html (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/test.idr (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/test.ini (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/test.java (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/test.jsp (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/test.lean (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/test.maql (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/test.mask (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/test.mod (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/test.moo (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/test.myt (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/test.nim (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/test.odin (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/test.opa (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/test.orc (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/test.p6 (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/test.pan (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/test.pas (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/test.php (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/test.pig (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/test.plot (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/test.ps1 (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/test.psl (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/test.pwn (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/test.pypylog (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/test.r3 (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/test.rb (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/test.rhtml (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/test.rsl (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/test.scaml (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/test.sco (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/test.shen (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/test.ssp (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/test.swift (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/test.tcsh (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/test.vb (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/test.vhdl (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/test.xqy (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/test.xsl (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/test.zep (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/test2.odin (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/test2.pypylog (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/test_basic.adls (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/truncated.pytb (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/twig_test (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/type.lisp (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/underscore.coffee (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/unicode.applescript (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/unicode.go (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/unicode.js (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/unicodedoc.py (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/unix-io.lid (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/vbnet_test.bas (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/vctreestatus_hg (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/vimrc (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/vpath.mk (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/webkit-transition.css (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/while.pov (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/wiki.factor (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/xml_example (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/yahalom.cpsa (100%)
rename {vendor => third_party}/pygments/tests/examplefiles/zmlrpc.f90 (100%)
rename {vendor => third_party}/pygments/tests/run.py (100%)
rename {vendor => third_party}/pygments/tests/string_asserts.py (100%)
rename {vendor => third_party}/pygments/tests/support.py (100%)
rename {vendor => third_party}/pygments/tests/support/tags (100%)
rename {vendor => third_party}/pygments/tests/test_basic_api.py (100%)
rename {vendor => third_party}/pygments/tests/test_cfm.py (100%)
rename {vendor => third_party}/pygments/tests/test_clexer.py (100%)
rename {vendor => third_party}/pygments/tests/test_cmdline.py (100%)
rename {vendor => third_party}/pygments/tests/test_examplefiles.py (100%)
rename {vendor => third_party}/pygments/tests/test_ezhil.py (100%)
rename {vendor => third_party}/pygments/tests/test_html_formatter.py (100%)
rename {vendor => third_party}/pygments/tests/test_inherit.py (100%)
rename {vendor => third_party}/pygments/tests/test_irc_formatter.py (100%)
rename {vendor => third_party}/pygments/tests/test_java.py (100%)
rename {vendor => third_party}/pygments/tests/test_latex_formatter.py (100%)
rename {vendor => third_party}/pygments/tests/test_lexers_other.py (100%)
rename {vendor => third_party}/pygments/tests/test_objectiveclexer.py (100%)
rename {vendor => third_party}/pygments/tests/test_perllexer.py (100%)
rename {vendor => third_party}/pygments/tests/test_qbasiclexer.py (100%)
rename {vendor => third_party}/pygments/tests/test_regexlexer.py (100%)
rename {vendor => third_party}/pygments/tests/test_regexopt.py (100%)
rename {vendor => third_party}/pygments/tests/test_rtf_formatter.py (100%)
rename {vendor => third_party}/pygments/tests/test_ruby.py (100%)
rename {vendor => third_party}/pygments/tests/test_shell.py (100%)
rename {vendor => third_party}/pygments/tests/test_smarty.py (100%)
rename {vendor => third_party}/pygments/tests/test_string_asserts.py (100%)
rename {vendor => third_party}/pygments/tests/test_terminal_formatter.py (100%)
rename {vendor => third_party}/pygments/tests/test_textfmts.py (100%)
rename {vendor => third_party}/pygments/tests/test_token.py (100%)
rename {vendor => third_party}/pygments/tests/test_unistring.py (100%)
rename {vendor => third_party}/pygments/tests/test_using_api.py (100%)
rename {vendor => third_party}/pygments/tests/test_util.py (100%)
rename {vendor => third_party}/pygments/tox.ini (100%)
create mode 100644 vendor/github.com/russross/blackfriday/.gitignore
create mode 100644 vendor/github.com/russross/blackfriday/.travis.yml
create mode 100644 vendor/github.com/russross/blackfriday/LICENSE.txt
create mode 100644 vendor/github.com/russross/blackfriday/README.md
create mode 100644 vendor/github.com/russross/blackfriday/block.go
create mode 100644 vendor/github.com/russross/blackfriday/doc.go
create mode 100644 vendor/github.com/russross/blackfriday/go.mod
create mode 100644 vendor/github.com/russross/blackfriday/html.go
create mode 100644 vendor/github.com/russross/blackfriday/inline.go
create mode 100644 vendor/github.com/russross/blackfriday/latex.go
create mode 100644 vendor/github.com/russross/blackfriday/markdown.go
create mode 100644 vendor/github.com/russross/blackfriday/smartypants.go
create mode 100644 vendor/modules.txt
diff --git a/README.md b/README.md
index a990d285b..cf2046703 100644
--- a/README.md
+++ b/README.md
@@ -10,7 +10,7 @@ comments from source files in `examples` and rendering
them via the `templates` into a static `public`
directory. The programs implementing this build process
are in `tools`, along with some vendor'd dependencies
-in `vendor`.
+in `vendor` and `third_party`.
The built `public` directory can be served by any
static content system. The production site uses S3 and
diff --git a/go.mod b/go.mod
new file mode 100644
index 000000000..83e76765b
--- /dev/null
+++ b/go.mod
@@ -0,0 +1,5 @@
+module github.com/mmcgrana/gobyexample
+
+go 1.15
+
+require github.com/russross/blackfriday v1.6.0
diff --git a/go.sum b/go.sum
new file mode 100644
index 000000000..270cecfc7
--- /dev/null
+++ b/go.sum
@@ -0,0 +1,2 @@
+github.com/russross/blackfriday v1.6.0 h1:KqfZb0pUVN2lYqZUYRddxF4OR8ZMURnJIG5Y3VRLtww=
+github.com/russross/blackfriday v1.6.0/go.mod h1:ti0ldHuxg49ri4ksnFxlkCfN+hvslNlmVHqNRXXJNAY=
diff --git a/public/arrays b/public/arrays
index 0a6010586..7c116e7e8 100644
--- a/public/arrays
+++ b/public/arrays
@@ -206,7 +206,7 @@ typical Go. We’ll look at slices next.