scoped_css

package
v1.0.1-0...-5011f7a Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 9, 2024 License: MIT Imports: 5 Imported by: 0

README

Scoped CSS

单篇文章的样式文件应该只应用到文章本身,而不应该影响到其它文章。 编写样式的时候,不应该手动限制样式为当前文章标签,这样会有较大的心智负担。

比较,文章里面可以这样写:

<style>
table {
	min-width: 100px;
}
</style>

当把多篇文章显示在同一个页面下时,会影响到所有表格,这种行为是不预期的。 所以应该限定一下范围(scope),比如改写成如下形式:

<style>
article#123 table {
	min-width: 100px;
}
</style>

把其范围限制到只对文章(编号为 123)有效。

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type ScopedCSS

type ScopedCSS struct {
	// contains filtered or unexported fields
}

func New

func New(scope string) *ScopedCSS

func (*ScopedCSS) TransformHtml

func (p *ScopedCSS) TransformHtml(doc *goquery.Document) error

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL