向 WMD (Stack Overflow) 编辑器添加自定义按钮
如何在 WMD 编辑器中添加新按钮,例如 code按钮?如果我单击按钮
标记将添加到选定的文本上,如代码按钮。
How can I add a new button in the WMD editor, like the code
button? If I click on the button <info></info>
tag will add on the selected text like code button.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
该存储库有一个较新版本,名为 wmd-new。正如 StackOverflow 博客中所述,此版本使用 CSS sprites 以获得更好的性能。因此工具栏是一个图形:
存储库中有一个用于工具栏的 PSD (Photoshop) 文件您可以编辑。基本上,您需要向 wmd.css 和 wmd.js 文件添加一个新按钮。查看 CSS 中的第 93 行,您会看到:
请注意上面的
wmd-button-bar
的原始样式以及left
的使用方式。There is a newer version of the repository called wmd-new. As described on the StackOverflow blog this version uses CSS sprites for better performance. So the toolbar is a single graphic:
There is a PSD (Photoshop) file for the toolbar in the repository that you can edit. Basically you need to add a new button to the wmd.css and the wmd.js files. Look around line 93 in the CSS and you'll see:
Note how the original styling of
wmd-button-bar
and the howleft
is being used above.