是否可以在RubyMine 3.2.4中格式化或重新加載html?我試過Code... Reformat Code
,但它似乎沒有爲HTML做任何事情。我需要一個插件嗎?是否有可能在html中格式化/重排html?
4
A
回答
4
它確實有效。
使用生成標準404.html文件:
<!DOCTYPE html>
<html>
<head>
<title>The page you were looking for doesn't exist (404)</title>
<style type="text/css">
body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
div.dialog {
width: 25em;
padding: 0 4em;
margin: 4em auto 0 auto;
border: 1px solid #ccc;
border-right-color: #999;
border-bottom-color: #999;
}
h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
</style>
</head>
<body>
<!-- This file lives in public/404.html -->
<div class="dialog">
<h1>The page you were looking for doesn't exist.</h1>
<p>You may have mistyped the address or the page may have moved.</p>
</div>
</body>
</html>
我使用的代碼/格式化選項,它導致了以下內容:
<!DOCTYPE html>
<html>
<head>
<title>The page you were looking for doesn't exist (404)</title>
<style type="text/css">
body {
background-color: #fff;
color: #666;
text-align: center;
font-family: arial, sans-serif;
}
div.dialog {
width: 25em;
padding: 0 4em;
margin: 4em auto 0 auto;
border: 1px solid #ccc;
border-right-color: #999;
border-bottom-color: #999;
}
h1 {
font-size: 100%;
color: #f00;
line-height: 1.5em;
}
</style>
</head>
<body>
<!-- This file lives in public/404.html -->
<div class="dialog">
<h1>The page you were looking for doesn't exist.</h1>
<p>You may have mistyped the address or the page may have moved.</p>
</div>
</body>
</html>
你可以看到它是如何重新格式化特別是樣式(如果我改變換行符等,它也修復了這些問題)。
如果您轉到文件/設置,IDE設置/編輯器,然後確保選中顯示「重新格式化代碼」對話框已選中[x],請重試。它可能被設置爲僅修復選定的文本?或...
2
您可以使用⌘+⌥+ l鍵盤快捷鍵。
0
您可以更改「項目設置>代碼樣式> HTML」中的html格式選項。
例如:你可以改變標籤的大小,縮進等
如果你是在OSX上,你可以使用快捷鍵⌘+,
其他建議:嘗試重命名格式之前的文件(除從它的.erb)
相關問題
- 1. Visual Studio ASP.NET/HTML重新格式化功能 - 它是否存在?
- 2. WP 7.5 - 是否有可以格式化HTML的控件?
- 3. 在Adobe Brackets中重新格式化HTML
- 4. 重新格式化HTML
- 5. 是否有可能呈現HTML在Gmail
- 6. JList中的項目是否可以格式化爲HTML
- 7. 在VBA中格式化HTML
- 8. 在JSP中格式化HTML
- 9. SharePoint Designer在運行中重新格式化HTML,能夠禁用?
- 10. 是否有可能存儲數據json到html(不是表格)
- 11. 是否有可能HTML來導入*
- 12. Visual Studio中重新格式化我的預格式化HTML
- 13. 是否有可能有一個jqgrid treegrid單元格內的html
- 14. HTML排序列表格式化
- 15. 在HTML中格式化嵌套表格
- 16. 格式化HTML表
- 17. HTML塊格式化
- 18. Jlabel HTML格式化
- 19. 的Html格式化
- 20. 是否有可能爲單獨的href格式化單元格
- 21. AngularJS/HTML表格格式化
- 22. 是否有可能在RSpec中有參數化的規格?
- 23. 是否有可能封裝JSON格式內HTML或JavaScript的多行?
- 24. 是否有可能在EMACS中用CSS編寫HTML-withASP-withJavascript-withCSS?
- 25. 是否有可能在Dreamviwer中拖放html元素cs6
- 26. 是否有可能在android中使用html代碼?
- 27. 是否有可能阻止在HTML中包裝子元素?
- 28. 是否有可能在PHP中使用HTML?
- 29. 是否有可能在CSS中讀取HTML?
- 30. 是否有可能在內存中重新排序linq IQueryable?
我看到你是對的。我期待VS更像VS, RubyMine在清理空白時並不像VS那麼具有攻擊性。 – jcollum
同意。我喜歡VS一般更好一點,尤其是有更多的控制。 – WiredPrairie