我已经为在Lubuntu 13.04上运行的gedit安装了markdown preview plugin。它按预期工作。
但是,为了便于查看,我通过在每个降价文件顶部包含一个本地样式表的链接来更改生成的html面板(左侧面板)的外观。但这种方法显然意味着我必须改变现有的所有降价文件。
为了避免这种情况,我查看了~/.local/share/gedit/plugins/markdown-preview/__init__.py
# Can be used to add default HTML code (e.g. default header section with CSS).
htmlTemplate = "%s"
,我看到第39行和第40行(转载如下):
htmlTemplate = "%s"
这让我觉得我可以以某种方式告诉插件查看样式表并相应地设置html的样式。但我不知道该怎么做(如果确实必须改变{{1}})。
答案 0 :(得分:1)
将htmlTemplate
设置为以下内容
# Can be used to add default HTML code (e.g. default header section with CSS).
htmlTemplate = """
<html>
<head>
<link rel="stylesheet" type="text/css" charset="utf-8" media="screen" href="http://paste.ubuntu.com/static/pastebin.css">
</head>
<body>
%s
</body>
</html>
"""