Skip to content
This repository has been archived by the owner on Dec 5, 2024. It is now read-only.

Commit

Permalink
Merge pull request #18 from froschdesign/hotfix/docs/styling-problems
Browse files Browse the repository at this point in the history
Fixes problems in Markdown files and updates the readme file
  • Loading branch information
Ocramius authored Dec 12, 2021
2 parents b8bc7ec + 9dfd5a1 commit b169322
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 173 deletions.
157 changes: 0 additions & 157 deletions CHANGELOG.md

This file was deleted.

4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,11 @@
>
> - [symfony/dom-crawler](https://symfony.com/doc/current/components/dom_crawler.html)
[![Build Status](https://travis-ci.com/laminas/laminas-dom.svg?branch=master)](https://travis-ci.com/laminas/laminas-dom)
[![Coverage Status](https://coveralls.io/repos/github/laminas/laminas-dom/badge.svg?branch=master)](https://coveralls.io/github/laminas/laminas-dom?branch=master)
[![Build Status](https://github.com/laminas/laminas-dom/actions/workflows/continuous-integration.yml/badge.svg)](https://github.com/laminas/laminas-dom/actions/workflows/continuous-integration.yml)

The `Laminas\Dom` component provides tools for working with DOM documents and
structures. Currently, we offer `Laminas\Dom\Query`, which provides a unified
interface for querying DOM documents utilizing both XPath and CSS selectors.


- File issues at https://github.com/laminas/laminas-dom/issues
- Documentation is at https://docs.laminas.dev/laminas-dom
10 changes: 0 additions & 10 deletions docs/book/index.html

This file was deleted.

6 changes: 3 additions & 3 deletions docs/book/query.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ following, in any combination:
- **id attributes**: element ID attributes to match: `#content`, `div#nav`, etc.
- **arbitrary attributes**: arbitrary element attributes to match. Three
different types of matching are provided:
- **exact match**: the attribute *exactly* matches the specified string.
`div[bar="baz"]` would match a `div` element with a `bar` attribute that
exactly matches the value `baz`.
- **exact match**: the attribute *exactly* matches the specified string.
`div[bar="baz"]` would match a `div` element with a `bar` attribute that
exactly matches the value `baz`.
- **word match**: the attribute contains a *word* matching the string.
`div[bar~="baz"]` would match a `div` element with a `bar` attribute that
contains the word `baz`. `<div bar="foo baz">` would match, but
Expand Down

0 comments on commit b169322

Please sign in to comment.