什麼是在網頁上顯示Ruby代碼的最佳工具?在網頁上顯示Ruby代碼的最佳方式?
你是怎麼做的?
(類似 http://www.khelll.com/blog/ruby/stackoverflow-cool-ruby-questions-4/
什麼是在網頁上顯示Ruby代碼的最佳工具?在網頁上顯示Ruby代碼的最佳方式?
你是怎麼做的?
(類似 http://www.khelll.com/blog/ruby/stackoverflow-cool-ruby-questions-4/
可以使用Pygments來做這是蟒蛇顯示數百o一個工具。 f不同的語言http://pygments.org/,所以也紅寶石。
有很多這樣的工具堆棧溢出使用google-code-prettify如果你喜歡的代碼格式張貼在這裏,你可能想使用Ruby示例:。
<pre class="prettyprint lang-ruby">
def sum(n)
result = 0
i = 1
while i <= n
result += i
i += 1
end
return result
end
</pre>
結果將是這樣的:
def sum(n)
result = 0
i = 1
while i <= n
result += i
i += 1
end
return result
end
我沒有在其中看到任何「lang-ruby」:http://code.google.com/p/google-code-prettify/source/browse/trunk/src 。我錯過了什麼? – Eduardo 2014-01-22 22:34:16
您鏈接到的頁面是一個似乎在使用wp-syntax wordpress plugin的WordPress博客。如果您搜索「語法突出顯示器」或「語法突出顯示」,您可以找到適用於您的網頁的內容。
我喜歡谷歌代碼美化工程: http://google-code-prettify.googlecode.com/svn/trunk/README.html
請注意,如果您使用的軌道,你可能將不得不使用的代碼,以顯示simple_format視圖助手。
<%= simple_format(@blogpost) %>
的
可能重複[哪個語法高亮與導出爲HTML(爲博客)選擇?(http://stackoverflow.com/questions/4112314/which-syntax-highlighter-with-export-to -html-for-blog-to-choose) – Nakilon 2011-01-06 14:30:22