2021-12-05 05:00:46 +00:00
|
|
|
<!doctype html
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<head>
|
|
|
|
|
<title>List of languages supported by Redmine code highlighter</title>
|
|
|
|
|
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
|
2024-02-25 21:41:14 +00:00
|
|
|
<%= stylesheet_link_tag "wiki_syntax.css" %>
|
2021-12-05 05:00:46 +00:00
|
|
|
</head>
|
|
|
|
|
|
|
|
|
|
<body>
|
|
|
|
|
<h1>List of languages supported by Redmine code highlighter</h1>
|
|
|
|
|
|
|
|
|
|
<table>
|
|
|
|
|
<tr>
|
|
|
|
|
<th>Language</th>
|
|
|
|
|
<th>Description</th>
|
|
|
|
|
</tr>
|
2024-05-19 05:07:42 +00:00
|
|
|
<% @available_lexers.each do |lexer| %>
|
|
|
|
|
<tr>
|
|
|
|
|
<td><%= lexer.tag %></td>
|
|
|
|
|
<td>
|
|
|
|
|
<%= lexer.desc %>
|
|
|
|
|
<%= " [aliases: #{lexer.aliases.uniq.join(', ')}]" if lexer.aliases.any? %>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<% end %>
|
2021-12-05 05:00:46 +00:00
|
|
|
</table>
|
|
|
|
|
</body>
|
2022-02-04 03:02:41 +00:00
|
|
|
</html>
|