在 Adob​​e Dreamweaver 中使用 SASS

发布于 2024-10-14 19:12:47 字数 159 浏览 2 评论 0 原文

我试图弄清楚如何开始在 Dreamweaver 中使用 SASS 文件。

尝试打开时收到的错误消息是:“找不到此文件扩展名的有效编辑器”。

我的所有 SASS 文件都是有效的,并且可以用 Eclipse 很好地打开。

预先感谢任何可以就此发表任何提示的人。

I am trying to figure out how to start using SASS files in Dreamweaver.

The error message I get when trying to open is: "Can't find a valid editor for this file extension".

All my SASS files are valid and open well with Eclipse.

Thanks in advance to anyone who could post any tips on this one.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(6

や三分注定 2024-10-21 19:12:47

好的。我已经找到答案了。

您所需要做的就是打开 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.

疑心病 2024-10-21 19:12:47

要更进一步并使 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

我很坚强 2024-10-21 19:12:47

Visual28 链接不再有效。以下是此处的快速概述

DreamweaverCS?/Configuration/DocumentTypes/MMDocumentTypes.xml  

如果 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

DreamweaverCS?/Configuration/DocumentTypes/MMDocumentTypes.xml  

If Windows change winfileextension="css" to winfileextension="css,scss"

If Mac change macfileextension="css" to macfileextension="css,scss"

白云悠悠 2024-10-21 19:12:47

相反,要在安装目录中查找“MMDocumentTypes.xml”文件,请转至

C:\Users\\AppData\Roaming\Adobe\Dreamweaver
CS5?\en_US\Configuration\DocumentTypes\MMDocumentTypes.xml

然后找到 winfileextension="css" 并将其更改为 winfileextension="css,scss"

...绝对有效..

instead to go in your installation directory to find the 'MMDocumentTypes.xml' file, GO to

C:\Users\\AppData\Roaming\Adobe\Dreamweaver
CS5?\en_US\Configuration\DocumentTypes\MMDocumentTypes.xml

and then find winfileextension="css" and change it to winfileextension="css,scss"...

That would definitely work..

腹黑女流氓 2024-10-21 19:12:47
  1. 更新到 Dreamweaver 的最新版本

  2. 确保在“控制面板”中启用“显示隐藏文件”>文件夹选项

  3. 打开您的用户文件夹,例如 C:\users\Dylan\ 替换为您的姓名

  4. 然后打开 AppData/Roaming/ Adobe/Dreamweaver CS6/en_US/Configuration/

  5. 打开文件 Extensions.txt

  6. 将第一行替换为以下内容:

HTM、HTML、SHTM、SHTML、HTA、HTC、XHTML、STM、SSI、JS、JSON、AS、ASC、ASR、XML、XSL、XSD、DTD、XSLT、RSS、RDF、LBI、DWT、ASP ,ASA,ASPX,ASCX,ASMX,CONFIG,CS,CSS,LESS,SCSS,CFM,CFML,CFC,TLD,TXT,PHP,PHP3,PHP4,PHP5,PHP-DIST,PHTML,JSP,WML,TPL,LASSO ,JSF,VB,VBS,VTM,VTML,INC,SQL,JAVA,EDML,MASTER,INFO,安装,主题,配置,模块,配置文件,引擎,SVG:全部
文件

  1. 替换以下行:

CSS:样式表

CSS、LESS、SCSS:样式表

  1. 保存并退出文件

  2. 转到文件夹 DocumentTypes

  3. 打开名为 MMDocumentTypes 的文件.xml

  4. 替换以以下内容开头的行:

>documenttype id="CSS"

开头的行替换为

 <documenttype id="CSS" internaltype="Text"
 winfileextension="css,less,sass,scss" macfileextension="css"
 file="Default.css" writebyteordermark="false" mimetype="text/css" >
  1. 保存并退出文件,然后重新启动 Dreamweaver

  2. 语法高亮现在可以使用

  1. Update to the latest version of Dreamweaver

  2. Ensure that ‘Show hidden files’ is enabled in Control Panel > Folder options

  3. Open your user folder eg C:\users\Dylan\ replacing with your name

  4. Then open AppData/Roaming/Adobe/Dreamweaver CS6/en_US/Configuration/

  5. Open the file Extensions.txt

  6. Replace the first line with the following:

HTM,HTML,SHTM,SHTML,HTA,HTC,XHTML,STM,SSI,JS,JSON,AS,ASC,ASR,XML,XSL,XSD,DTD,XSLT,RSS,RDF,LBI,DWT,ASP,ASA,ASPX,ASCX,ASMX,CONFIG,CS,CSS,LESS,SCSS,CFM,CFML,CFC,TLD,TXT,PHP,PHP3,PHP4,PHP5,PHP-DIST,PHTML,JSP,WML,TPL,LASSO,JSF,VB,VBS,VTM,VTML,INC,SQL,JAVA,EDML,MASTER,INFO,INSTALL,THEME,CONFIG,MODULE,PROFILE,ENGINE,SVG:All
Documents

  1. Replace the following line:

CSS:Style Sheets

With

CSS,LESS,SCSS:Style Sheets

  1. Save and exit the file

  2. Go to the folder DocumentTypes

  3. Open the file named MMDocumentTypes.xml

  4. Replace the line beginning with:

=>documenttype id="CSS"

with

 <documenttype id="CSS" internaltype="Text"
 winfileextension="css,less,sass,scss" macfileextension="css"
 file="Default.css" writebyteordermark="false" mimetype="text/css" >
  1. Save and exit the file, and restart Dreamweaver

  2. Syntax highlighting now works

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文