[HTML5] Shortcut for generate the code

For example we want to generate the code like this:

    <a href="#tab1">Tab 1</a><a href="#tab2">Tab 2</a><a href="#tab3">Tab 3</a>
    <div id="tab1" class="tab">
        <h1>Tab 1 Content</h1>
    </div>
    <div id="tab2" class="tab">
        <h1>Tab 2 Content</h1>
    </div>
    <div id="tab3" class="tab">
        <h1>Tab 3 Content</h1>
    </div>

So it is three div, has a id called tab1,2,3 and a class tab. inside the div, has h1 with the content.

We can do:

a[href=#tab$]{Tab $}*3

(#tab$.tab>h1{Tab $ Content})*3

[]: attr

#tab: id--> tab

#tab$: id--> tab with increase interger

.tab: class tab

>: child node

{}: content

时间: 2024-11-06 11:00:06

[HTML5] Shortcut for generate the code的相关文章

Linking code for an enhanced application binary interface (ABI) with decode time instruction optimization

A code sequence made up multiple instructions and specifying an offset from a base address is identified in an object file. The offset from the base address corresponds to an offset location in a memory configured for storing an address of a variable

HTML5详解及其应用

语义标签和页面布局 我们首先讲一个关于一所大学的经典故事.这所大学在建设校园草地时,没有开辟任何步行小道,他们把整个空地种上草,然后等待. 一年以后,人们经常走过的地方,草都被踩光了.于是,这所大学就将这些地方铺设为真正的人行道. 棒极了!这些人行道是人们真正"走"出来的. HTML5新语义元素的诞生正是基于同样的逻辑.(关于这一点,可以参看W3C设计指南中的"Pave the Cowpaths".) 语义元素清晰地向浏览器和开发人员表明了它们的涵义和用途,要理解这

如何 debug nodeJS 代码? how to inspect NodeJS code?

基本原理 启动 WebSocket 进行基于 inspect protocol 双工通信 current_node_process <=> current_websocket <=> current_inspect_tool 启动 HTTP 服务,记录源(Meta)信息 每个程序会生成一个 UUID IDE VS Code VS code 中打断点,然后进入 debugger 面板,点击开始. Config launch.json mkdir node-debug-demo cd

iOS Workflow 分享 - Create QR Code

上次我分享了一个 Scan QR Code 的 Workflow,这次我分享一个正好相反的.如果我要分享一个 URL(或者是一段非常短的文本)给别人,我就可以用这个 Workflow 来生成 QR Code 图片然后发送给别人. 如果你还没有安装 Workflow,你可以先去免费下载安装上.然后打开 Create QR Code 并点击「GET WORKFLOW」,这个 Workflow 就会被自动导入到你的 Workflow 中去,之后你在分享菜单中就可以调用 Workflow 生成 QR C

coffeescript 1.8.0 documents

CoffeeScript is a little language that compiles into JavaScript. Underneath that awkward Java-esque patina, JavaScript has always had a gorgeous heart. CoffeeScript is an attempt to expose the good parts of JavaScript in a simple way. The golden rule

github上所有大于800 star OC框架

https://github.com/XCGit/awesome-objc-frameworks#awesome-objc-frameworks awesome-objc-frameworks ID Framework Images 1 AFNetworking/AFNetworking 19,058 A delightful iOS and OS X networking framework 2 rs/SDWebImage 10,139 Asynchronous image downloade

selenium docs

Note to the Reader - Docs Being Revised for Selenium 2.0! Introduction Test Automation for Web Applications To Automate or Not to Automate? Introducing Selenium Brief History of The Selenium Project Selenium’s Tool Suite Choosing Your Selenium Tool S

编码UI测试

转自他人博客 使用 UI 自动化验证代码 Visual Studio 2013 驱动器通过其用户界面 (UI) 的应用程序的自动化的测试称为编码的 UI 测试的 (CUITs). 这些测试包括用户界面控件的功能测试. 它们使您可以验证整个应用程序,包括其用户界面,能正常工作. 没有验证或在用户界面中,例如在网页中的其他逻辑时,编码的 UI 测试将特别有用. 他们还经常用于自动执行现有手动测试. 下面的插图所示,一种典型的开发体验可能位置,开始时,您只需生成您的应用程序 (F5) 然后单击通过 U

Bundling and Minification(转)

原文地址:https://go.microsoft.com/fwlink/?LinkId=301862 Bundling and minification are two techniques you can use in ASP.NET 4.5 to improve request load time. Bundling and minification improves load time by reducing the number of requests to the server an