2011-01-06 132 views

回答

1

可以使用Pygments來做這是蟒蛇顯示數百o一個工具。 f不同的語言http://pygments.org/,所以也紅寶石。

7

有很多這樣的工具堆棧溢出使用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 
+0

我沒有在其中看到任何「lang-ruby」:http://code.google.com/p/google-code-prettify/source/browse/trunk/src 。我錯過了什麼? – Eduardo 2014-01-22 22:34:16

0

您鏈接到的頁面是一個似乎在使用wp-syntax wordpress plugin的WordPress博客。如果您搜索「語法突出顯示器」或「語法突出顯示」,您可以找到適用於您的網頁的內容。

相關問題