我正在撰写一篇关于软件开发的文章,并且经常想插入如下代码块:
public static void RegisterBundles(BundleCollection bundles)
{
bundles.Add(new ScriptBundle("~/bundles/jquery").Include("~/Scripts/jquery-{version}.js"));
bundles.Add(new ScriptBundle("~/bundles/modernizr").Include("~/Scripts/modernizr-*"));
bundles.Add(new StyleBundle("~/Content/css").Include("~/Content/bootstrap.css", "~/Content/site.css"));
}
我希望始终将所有行放在一起,但我可以做到这一点,但我还想为其添加标题和交叉引用,这样我就可以将“清单 1 - 捆绑below it, and then insert references to
清单 1”放在文档的其他地方。这可能吗?如果可以,我该怎么做?
答案1
您需要将代码插入到单单元格表格或文本框中(使其对齐方式“与文本对齐”)。然后您可以隐藏边框并为其添加标题。