├── .gitignore ├── .travis.sh ├── .travis.yml ├── CHANGELOG.md ├── Hypertext.podspec ├── LICENSE ├── Package.swift ├── README.md ├── Sources ├── Doctype.swift ├── Hypertext.swift └── Tags.swift ├── Tests ├── HypertextTests │ └── HypertextTests.swift └── LinuxMain.swift └── header.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahandnayebaziz/Hypertext/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahandnayebaziz/Hypertext/HEAD/.travis.sh -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahandnayebaziz/Hypertext/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahandnayebaziz/Hypertext/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Hypertext.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahandnayebaziz/Hypertext/HEAD/Hypertext.podspec -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahandnayebaziz/Hypertext/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahandnayebaziz/Hypertext/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahandnayebaziz/Hypertext/HEAD/README.md -------------------------------------------------------------------------------- /Sources/Doctype.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahandnayebaziz/Hypertext/HEAD/Sources/Doctype.swift -------------------------------------------------------------------------------- /Sources/Hypertext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahandnayebaziz/Hypertext/HEAD/Sources/Hypertext.swift -------------------------------------------------------------------------------- /Sources/Tags.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahandnayebaziz/Hypertext/HEAD/Sources/Tags.swift -------------------------------------------------------------------------------- /Tests/HypertextTests/HypertextTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahandnayebaziz/Hypertext/HEAD/Tests/HypertextTests/HypertextTests.swift -------------------------------------------------------------------------------- /Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahandnayebaziz/Hypertext/HEAD/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahandnayebaziz/Hypertext/HEAD/header.jpg --------------------------------------------------------------------------------