汤博乐开发工具
我想创建 Tumblr 主题,有趣的是有没有 IDE(Netbeans、Eclipse、PHPStorm)插件或开发工具?理想的情况是在浏览器中预览我的主题,而不将其上传到 Tumblr。 谢谢。
I want to create Tumblr theme and ineteresting is there any IDE (Netbeans, Eclipse, PHPStorm) plugins or tools for development? Ideal is to preview my theme in browser without uploading it to Tumblr.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我找到了自己的方法来使用 PhpStorm(或可能任何其他 IDE)开发 tumblr 主题,并避免手动复制粘贴来查看我的更新。我编写了一个简单的 JavaScript 来在浏览器控制台中执行(MIT 许可)。
Howto:
在浏览器中打开
。http://localhost:63342/TumblrTheme/index.html
。编辑 html
。在此要点发布:https://gist.github.com/cmfcmf/7154536
I found my own way to develop tumblr themes using PhpStorm (or possibly any other IDE) and avoid the manual copy pasting to see my updates. I wrote a simple javascript to execute in your browsers console (MIT licensed).
Howto:
Open in browser
in PhpStorm while viewing the file.http://localhost:63342/TumblrTheme/index.html
.http://www.tumblr.com/customize/YOUR-BLOG-NAME
.Edit html
.Published at this gist: https://gist.github.com/cmfcmf/7154536
就资源而言,我找到了一些。
还有一个 TextMate 捆绑包 尽管它已经有几年了。
为 Tumblr 开发有点痛苦,我的方法是设置一个测试 tumblr 来使用、转发或发布我想要的每种帖子类型(照片、照片集、音频、文本等)。我在本地处理 HTML 并按照我想要的方式设置它,直到我知道我可以单独通过 CSS 完成几乎所有需要实现的操作。然后,我在服务器上托管任何资产(CSS/JS/等),使用测试主题上的主题编辑器来更新 HTML,然后我需要做的任何事情都可以在我的远程资产上完成。如果我需要编辑 HTML,我会在本地进行编辑,然后将其粘贴回主题编辑器中。
这不是最好的工作方式,但我已经用这种方式完成了大约 4 个主题,而且对我来说效果还不错。
In terms of resources there's a few that I've found.
There's also a TextMate bundle although it's a few years old.
Developing for Tumblr is a bit of a pain, the way I do it is by setting up a test tumblr to use, reblogging or posting each post type that I want (photo, photoset, audio, text, etc.). I work on the HTML locally and get it set up how I want it to, until I know I can do pretty much everything I need to achieve via CSS alone. I then host any assets (CSS/JS/etc.) on my server, use the theme editor on my test theme to update the HTML, and then anything I need to do can just be done on my remote assets. If I need to edit the HTML I do it locally then paste it back into the theme editor.
It's not the nicest way of working, but I've done about 4 themes that way and it works okay for me.