From 03df6e4a57f72519ea93fb8496a4e4299f55f594 Mon Sep 17 00:00:00 2001 From: Jonas Smedegaard Date: Sun, 17 Sep 2017 16:54:23 +0200 Subject: Convert ligatures to markdown. --- pocketCSS.md | 22 +++++++++++----------- pocketHelp.md | 8 ++++---- 2 files changed, 15 insertions(+), 15 deletions(-) diff --git a/pocketCSS.md b/pocketCSS.md index 527feb0..b50c4c2 100644 --- a/pocketCSS.md +++ b/pocketCSS.md @@ -11,7 +11,7 @@ ## Simple selectors -

assume throughout that `E` and `F` are elements, they can have attribute `foo` e.g. <e foo="bar"> you can replace these with any elements or attributes.

+

assume throughout that `E` and `F` are elements, they can have attribute `foo` e.g. you can replace these with any elements or attributes.

In HTML, elements in CSS can be uppercase like these examples. In XHTML, elements must be lower case. Classes and IDs are always case sensitive

universal selector, match any element @@ -20,17 +20,17 @@ type (or element) selector `E` -ID selector an E element with ID equal to "myid", e.g. `<e id="myid">` +ID selector an E element with ID equal to "myid", e.g. `` `E#myid` -class selector an E element whose class is "myclass", e.g. `<e class="myclass">` +class selector an E element whose class is "myclass", e.g. `` `E.myclass` --- --- -## Combinators & negation +## Combinators & negation descendant combinator to style an F element, which is a descendant of an E element `E F` @@ -56,22 +56,22 @@ element E with a "foo" attribute `E[foo]` -E’s attribute `foo`, value exactly equal to `bar` +E’s attribute `foo`, value exactly equal to `bar` `E[foo="bar"]` -E’s attribute `foo`, value is whitespace-separated values, one of which is exactly "bar" +E’s attribute `foo`, value is whitespace-separated values, one of which is exactly "bar" `E[foo~="bar"]` -E’s attribute `foo`, value begins exactly "bar" +E’s attribute `foo`, value begins exactly "bar" `E[foo^="bar"]` -E’s attribute `foo`, value ends exactly "bar" +E’s attribute `foo`, value ends exactly "bar" `E[foo$="bar"]` -E’s attribute `foo`, value contains substring "bar" +E’s attribute `foo`, value contains substring "bar" `E[foo*="bar"]` -E’s attribute `foo` has a hyphen-separated list of values beginning (from the left) with "en" +E’s attribute `foo` has a hyphen-separated list of values beginning (from the left) with "en" `E[foo|="en"]` --- @@ -155,7 +155,7 @@ --- -## Forms & Pseudo-elements +## Forms & Pseudo-elements a user interface element E which is enabled `E:enabled` diff --git a/pocketHelp.md b/pocketHelp.md index 36772b0..27e3a40 100644 --- a/pocketHelp.md +++ b/pocketHelp.md @@ -37,7 +37,7 @@ --- -## find & open +## find & open list all files recursively in subdomains `find .` @@ -64,7 +64,7 @@ --- -## move, remove & copy +## move, remove & copy move or rename a file or directory `mv oldname newname` @@ -119,7 +119,7 @@ --- -## subversion & download +## subversion & download is this directory checked out from svn? and where? `svn info` @@ -143,7 +143,7 @@ --- -## help & information +## help & information run any command as root `sudo your-command-here` -- cgit v1.2.3