Changing labels with CssSelector
Open
@Shadowfiend is already working on this.
Since May 13, 2014.
- Dominant language
- Scala
- Stars
- 1.3k
- Forks
- 275
- PR merge metrics
- No merged PRs in 30d
Description
This ticket follows the discussion on the mailing list about rewrapping Elem:
https://groups.google.com/d/topic/liftweb/uVW4xOPgnk8/discussion
For example:
``` xml
foo
barbaz
```
```
Into:
```
``` xml
foo
barbaz
```
Proposed solution:
```
"people" #> ((ns: NodeSeq) => {
val kids = ns.asInstanceOf[Elem].child
("name" #> ((ns: NodeSeq) => {ns.asInstanceOf[Elem].child})).apply(kids)
})
```
But should be simpler.
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Assessment
This issue has not been assessed yet.