This is an automated email from the ASF dual-hosted git repository. robin0716 pushed a commit to branch dev in repository https://gitbox.apache.org/repos/asf/incubator-answer-plugins.git
commit a1e89e1342f8dc19716e394d68f5fcc8d8352b38 Author: robin <[email protected]> AuthorDate: Thu Sep 19 14:52:00 2024 +0800 refactor(highlight): Add theme_list.go for code highlighting --- render-markdown-codehighlight/theme_list.go | 62 +++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) diff --git a/render-markdown-codehighlight/theme_list.go b/render-markdown-codehighlight/theme_list.go new file mode 100644 index 0000000..831b2f2 --- /dev/null +++ b/render-markdown-codehighlight/theme_list.go @@ -0,0 +1,62 @@ + +package render_markdown_codehighlight + +var ThemeList = []string{ +"1c-light", + "a11y-all", + "agate-dark", + "an-dark", + "androidstudio-dark", + "arduino-light", + "arta-dark", + "ascetic-light", + "atom-all", + "brown-light", + "codepen-dark", + "color-light", + "dark-dark", + "default-light", + "devibeans-dark", + "docco-light", + "far-dark", + "felipec-dark", + "foundation-light", + "github-all", + "gml-dark", + "googlecode-light", + "gradient-all", + "grayscale-light", + "hybrid-dark", + "idea-light", + "intellij-light", + "ir-dark", + "isbl-all", + "kimbie-all", + "lightfair-light", + "lioshi-dark", + "magula-light", + "mono-light", + "monokai-dark", + "night-dark", + "nnfx-all", + "nord-dark", + "obsidian-dark", + "panda-all", + "paraiso-all", + "pojoaque-light", + "purebasic-light", + "qtcreator-all", + "rainbow-dark", + "routeros-light", + "school-light", + "shades-dark", + "srcery-dark", + "stackoverflow-all", + "sunburst-dark", + "tokyo-all", + "tomorrow-dark", + "vs-light", + "vs2015-dark", + "xcode-light", + "xt256-dark", +}
