2024-10-11 07:50:09 +00:00
|
|
|
<!doctype html>
|
2021-12-05 05:00:46 +00:00
|
|
|
<html lang="en">
|
|
|
|
|
<head>
|
|
|
|
|
<title>List of languages supported by Redmine code highlighter</title>
|
2024-10-11 07:50:09 +00:00
|
|
|
<meta charset="UTF-8">
|
|
|
|
|
<%= stylesheet_link_tag "wiki_syntax_detailed.css" %>
|
2021-12-05 05:00:46 +00:00
|
|
|
</head>
|
|
|
|
|
|
|
|
|
|
<body>
|
|
|
|
|
<h1>List of languages supported by Redmine code highlighter</h1>
|
|
|
|
|
|
2024-10-11 07:50:09 +00:00
|
|
|
<table class="list">
|
2021-12-05 05:00:46 +00:00
|
|
|
<tr>
|
|
|
|
|
<th>Language</th>
|
|
|
|
|
<th>Description</th>
|
|
|
|
|
</tr>
|
2024-05-19 05:07:42 +00:00
|
|
|
<% @available_lexers.each do |lexer| %>
|
|
|
|
|
<tr>
|
2024-10-11 07:50:09 +00:00
|
|
|
<td><code><%= lexer.tag %></code></td>
|
2024-05-19 05:07:42 +00:00
|
|
|
<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>
|