mirror of
https://github.com/redmine/redmine.git
synced 2025-11-12 08:16:03 +01:00
git-svn-id: https://svn.redmine.org/redmine/trunk@23115 e93f8b46-1217-0410-a6f0-8f06a7374b81
29 lines
667 B
Plaintext
29 lines
667 B
Plaintext
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>List of languages supported by Redmine code highlighter</title>
|
|
<meta charset="UTF-8">
|
|
<%= stylesheet_link_tag "wiki_syntax_detailed.css" %>
|
|
</head>
|
|
|
|
<body>
|
|
<h1>List of languages supported by Redmine code highlighter</h1>
|
|
|
|
<table class="list">
|
|
<tr>
|
|
<th>Language</th>
|
|
<th>Description</th>
|
|
</tr>
|
|
<% @available_lexers.each do |lexer| %>
|
|
<tr>
|
|
<td><code><%= lexer.tag %></code></td>
|
|
<td>
|
|
<%= lexer.desc %>
|
|
<%= " [aliases: #{lexer.aliases.uniq.join(', ')}]" if lexer.aliases.any? %>
|
|
</td>
|
|
</tr>
|
|
<% end %>
|
|
</table>
|
|
</body>
|
|
</html>
|