summaryrefslogtreecommitdiffstats
path: root/helpers/pygments_test.go
AgeCommit message (Expand)Author
2017-10-14Add table linenos support for Chroma highlighterBjørn Erik Pedersen
2017-10-04helpers: Fix broken testBjørn Erik Pedersen
2017-09-29Clean up lint in various packagesCameron Moore
2017-09-29helpers: Fix broken Chroma testBjørn Erik Pedersen
2017-09-25Use Chroma as new default syntax highlighterBjørn Erik Pedersen
2017-02-17all: Refactor to nonglobal Viper, i18n etc.Bjørn Erik Pedersen
2016-10-24all: Unify case of config variable namesAlbert Nigmatzianov
2016-02-06Apply gofmt -sBjørn Erik Pedersen
2015-12-10Add copyright header to that source files that don’t have one.Anthony Fok
2015-11-23Add PygmentsOptions optionAndrew Brampton
2015-05-20Stop Viper from leaking across many of the tests (now tests pass regardless o...spf13
2015-04-15Add more options to highlightbep
span>, "||"); if (matches.size() == 5) { const std::string option = matches[0]; const std::string syntax = matches[1]; const std::string defaultparam = matches[2]; const std::string desc = matches[3]; const std::string example = matches[4]; std::cout << "[[" << linkprefix << option << "]]_" << option << "_ "; std::cout << "(parameters: " << syntax << "; "; std::cout << "default value: _" << defaultparam << "_)::\n"; std::cout << " " << desc; std::cout << " (example: " << example << ")\n\n"; } else { std::cerr << "expected exactly 5 cells in " << argv[1] << ":" << lineno; std::cerr << ", but got " << matches.size() << " instead\n"; return 1; } } return 0; }