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.
从:
<body> <div id="header"> <a id="logo">Foo</a> </div> <div id="search"> ... </div> </body>
至:
<body> <div id="header"> <a id="logo">Foo</a> <!-- inside #header now --> <div id="search"> ... </div> </div> </body>
这对 Genshi 可行吗?