TiddlyWiki 使用下面的标记将文本显示为代码:
{{{
your code here
}}}
我做了这个脚本来内联显示 MATLAB 文件
<script>
var p;
if (document.all){
// For IE, create an ActiveX Object instance
p = new ActiveXObject("Microsoft.XMLHTTP");
}
else {
// For mozilla, create an instance of XMLHttpRequest.
p = new XMLHttpRequest();
}
p.open("GET","$1",false);
p.send(null);
wikify(p.responseText,place);
</script>
其中 $1 是 .m 文件网址。
此代码有效,.m 文件内容显示精美。
我只是无法将 p.responseText 与大括号连接起来以很好地显示 .m 文件内容。
你能帮帮我吗?
因此,解决方案是将以下包装器连接到内容:
wikify("{{{n" + p.responseText + "n}}}",place);