Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个运行以生成 DOC 文件的 .vm (Velocity) 文件。我想在这个生成的 DOC 文件中有一个非常简单的页眉和页脚。我如何为此在 .vm 文件中编写代码。我不想将页眉和页脚文件包含为外部文件。我想要在同一个 .vm 文件中的简单代码。请帮忙!!!
不包括单独的文件?只需编写 HTML。以下代码是 vm 文件的摘录:
<div class="footer"> <div class="footerlinks"> <ul> <li class="first">Something</li> </ul> </div> </div>