在 Adobe Dreamweaver 中使用 SASS
我试图弄清楚如何开始在 Dreamweaver 中使用 SASS 文件。
尝试打开时收到的错误消息是:“找不到此文件扩展名的有效编辑器”。
我的所有 SASS 文件都是有效的,并且可以用 Eclipse 很好地打开。
预先感谢任何可以就此发表任何提示的人。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
好的。我已经找到答案了。
您所需要做的就是打开 Dreamweaver,转到“编辑”>“编辑”。首选项>文件类型/编辑器
并在顶部文本框(“在代码视图中打开:”)列出各种文件扩展名添加 .sass。
就是这样。休息取决于哈姆尔和指南针。
我希望这篇文章能够帮助任何有类似问题的人。
OK. I have found the answer.
All you need to do is open Dreamweaver, go to Edit> Preferences> File Types / Editors
and in the top text box ("Open in code view:") listing various files extensions add .sass.
That's it. Rest is down to haml and compass.
I hope this post will help anyone having similar problem.
要更进一步并使 Dreamweaver 将 .scss 文件视为 .css 文件(应用代码着色和缩进),只需按照此 Adobe 技术说明
To go even further and make Dreamweaver treat .scss files as .css files (applying code coloring and indentation), just follow the instructions on this Adobe TechNote
Visual28 链接不再有效。以下是此处的快速概述
如果 Windows 发生变化
winfileextension="css"
更改为winfileextension="css,scss"
如果 Mac 将
macfileextension="css"
更改为macfileextension="css ,scss"
The visual28 link no longer works. Here is a quick rundown from here
If Windows change
winfileextension="css"
towinfileextension="css,scss"
If Mac change
macfileextension="css"
tomacfileextension="css,scss"
对于旧版 Dreamweaver:
http://www.visual28.com/articles /less-scss-syntax-highlighting-in-dreamweaver
对于 Dreamweaver 5.5 及更高版本:
http:// /forums.adobe.com/thread/861133
For older Dreamweaver:
http://www.visual28.com/articles/less-scss-syntax-highlighting-in-dreamweaver
For Dreamweaver 5.5 and above:
http://forums.adobe.com/thread/861133
相反,要在安装目录中查找“MMDocumentTypes.xml”文件,请转至
然后找到
winfileextension="css"
并将其更改为winfileextension="css,scss"
...绝对有效..
instead to go in your installation directory to find the 'MMDocumentTypes.xml' file, GO to
and then find
winfileextension="css"
and change it towinfileextension="css,scss"
...That would definitely work..
更新到 Dreamweaver 的最新版本
确保在“控制面板”中启用“显示隐藏文件”>文件夹选项
打开您的用户文件夹,例如 C:\users\Dylan\ 替换为您的姓名
然后打开 AppData/Roaming/ Adobe/Dreamweaver CS6/en_US/Configuration/
打开文件 Extensions.txt
将第一行替换为以下内容:
表
保存并退出文件
转到文件夹 DocumentTypes
打开名为 MMDocumentTypes 的文件.xml
替换以以下内容开头的行:
>documenttype id="CSS"
开头的行替换为
保存并退出文件,然后重新启动 Dreamweaver
语法高亮现在可以使用
Update to the latest version of Dreamweaver
Ensure that ‘Show hidden files’ is enabled in Control Panel > Folder options
Open your user folder eg C:\users\Dylan\ replacing with your name
Then open AppData/Roaming/Adobe/Dreamweaver CS6/en_US/Configuration/
Open the file Extensions.txt
Replace the first line with the following:
With
Save and exit the file
Go to the folder DocumentTypes
Open the file named MMDocumentTypes.xml
Replace the line beginning with:
=>documenttype id="CSS"
with
Save and exit the file, and restart Dreamweaver
Syntax highlighting now works