是否有任何可能的方法来定制Runkit(https://runkit.com)的样式?就像将编辑器的背景设为深色主题。
我尝试将样式注入到runkit iframe中,但是它不起作用。寻找任何建议或解决方案。
答案 0 :(得分:0)
它没有记录在2019年6月。
左侧的装订线行可见不清晰。
我在主题制作工具中编辑Text
参数。
(但是RunKit除了行号也会更改笔记本的文本颜色。)
此答案的数据于2019年6月相关,将来可能已过时。
这个答案的方法令人不舒服,我非常希望将来还会有另一个。
您不能通过CSS覆盖嵌入RunKit和其他域的任何其他iframe样式:
我attach RunKit to existing element。
<script src="https://embed.runkit.com" data-element-id="KiraRunkit"></script>
<article>
<pre id="KiraRunkit">
var stringSimilarity = require('string-similarity')
var similarity = stringSimilarity.compareTwoStrings('Кира', 'Кирк');
</pre>
</article>
body
height 100%
overflow hidden
background-color sienna
article
margin-left 2rem
margin-right 2rem
// [INFO] Responsive iframe:
// https://medium.com/@mahbub_hemel/how-to-make-your-video-iframe-responsive-a8c5fda821ba
#KiraRunkit
width 100%
position relative
iframe
width 100%
height 100%
position absolute
/* [INFO] Instead of frameborder — http://stackoverflow.com/a/10831379/5951529 */
border 0
我programmaticaly create a notebook。选项:
element
-HTML元素,您将对其应用RunKit。source
— RunKit笔记本的完整资料;使用\n
进行换行。syntaxTheme
-您创建的主题。您在theme-maker page中找到的JavaScript代码。
<script src="https://embed.runkit.com"></script>
<article>
<div id="KiraRunkit"></div>
</article>
body
height 100%
overflow hidden
background-color sienna
article
margin-left 2rem
margin-right 2rem
// [INFO] Responsive iframe:
// https://medium.com/@mahbub_hemel/how-to-make-your-video-iframe-responsive-a8c5fda821ba
#KiraRunkit
width 100%
position relative
iframe
width 100%
height 100%
position absolute
/* [INFO] Instead of frameborder — http://stackoverflow.com/a/10831379/5951529 */
border 0
##########
# RunKit #
##########
# Run npm code online in browser:
# https://runkit.com
# Needs use theme-maker, that change styles:
# https://runkit.com/docs/theme-maker
notebook = RunKit.createNotebook(
# [NOTE] Id required, class will not work
element: document.getElementById('KiraRunkit')
# [NOTE] You need paste here content of your RunKit notebook even if it big:
source: 'var stringSimilarity = require(\'string-similarity\')\n\n\
var similarity = stringSimilarity.compareTwoStrings(\'Кира\', \'Кирк\');'
# [INFO] https://runkit.com/docs/theme-maker/untilted-2jxk2crve1p7 theme
syntaxTheme: 'untilted-028u85ijnoyr')
通过theme-maker编辑主题时,您可能会遇到以下问题: