Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Nord Docs Transition #14

Merged
merged 1 commit into from
Dec 20, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 7 additions & 10 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,11 @@
# ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
# title Circle CI Build Configuration +
# project nord-highlightjs +
# repository https://github.com/arcticicestudio/nord-highlightjs +
# author Arctic Ice Studio +
# email development@arcticicestudio.com +
# copyright Copyright (C) 2017 +
# ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
# Copyright (C) 2017-present Arctic Ice Studio <development@arcticicestudio.com>
# Copyright (C) 2017-present Sven Greb <development@svengreb.de>
#
# [References]
# Circle CI
# Project: Nord highlight.js
# Repository: https://github.com/arcticicestudio/nord-highlightjs
# License: MIT
#
# References:
# https://circleci.com/docs
version: 2
jobs:
Expand Down
21 changes: 14 additions & 7 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -1,18 +1,25 @@
# ++++++++++++++++++++++
# Copyright (C) 2017-present Arctic Ice Studio <development@arcticicestudio.com>
# Copyright (C) 2017-present Sven Greb <development@svengreb.de>
#
# Project: Nord highlight.js
# Repository: https://github.com/arcticicestudio/nord-highlightjs
# License: MIT

# +--------------------+
# + Base Configuration +
# ++++++++++++++++++++++
# +--------------------+
[*]
charset = utf-8
end_of_line = lf
indent_size = 2
indent_style = space
insert_final_newline = true
max_line_length = 160
max_line_length = 120
trim_trailing_whitespace = true

# +++++++++++++
# +-----------+
# + Languages +
# +++++++++++++
# +++ Markdown +++
[*.{md,gfm}]
# +-----------+
# +--- Markdown ---+
[*.{md}]
trim_trailing_whitespace = false
23 changes: 15 additions & 8 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,15 +1,22 @@
# Copyright (C) 2017-present Arctic Ice Studio <development@arcticicestudio.com>
# Copyright (C) 2017-present Sven Greb <development@svengreb.de>
#
# Project: Nord highlight.js
# Repository: https://github.com/arcticicestudio/nord-highlightjs
# License: MIT

# +------+
# + Logs +
# +------+
logs/
**/*.log
npm-debug.log*

# +---------+
# + Node.js +
# +---------+
node_modules
npm-debug.log
**/node_modules/
.npm/
*.log
# Runtime data
pids
*.pid
*.seed
*.pid.lock

# +-------------------+
# + Project Structure +
Expand Down
7 changes: 7 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# Copyright (C) 2017-present Arctic Ice Studio <development@arcticicestudio.com>
# Copyright (C) 2017-present Sven Greb <development@svengreb.de>
#
# Project: Nord highlight.js
# Repository: https://github.com/arcticicestudio/nord-highlightjs
# License: MIT

assets/**
src/**
.circleci/**
Expand Down
8 changes: 8 additions & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -1 +1,9 @@
# Copyright (C) 2017-present Arctic Ice Studio <development@arcticicestudio.com>
# Copyright (C) 2017-present Sven Greb <development@svengreb.de>
#
# Project: Nord highlight.js
# Repository: https://github.com/arcticicestudio/nord-highlightjs
# License: MIT

package-lock=true
save-exact=true
36 changes: 18 additions & 18 deletions .stylelintrc.js
Original file line number Diff line number Diff line change
@@ -1,31 +1,31 @@
/*
* Copyright (c) 2017-present Arctic Ice Studio <development@arcticicestudio.com>
* Copyright (c) 2017-present Sven Greb <code@svengreb.de>
* Copyright (C) 2017-present Arctic Ice Studio <development@arcticicestudio.com>
* Copyright (C) 2017-present Sven Greb <development@svengreb.de>
*
* Project: Nord highlight.js
* Repository: https://github.com/arcticicestudio/nord-highlightjs
* License: MIT
*/

/**
* Configuration for stylelint.
*
* @see https://stylelint.io
* @see https://stylelint.io/user-guide/rules
* @see https://github.com/stylelint/stylelint-config-standard
*/
* Configuration for stylelint.
*
* @see https://stylelint.io
* @see https://stylelint.io/user-guide/rules
* @see https://github.com/stylelint/stylelint-config-standard
*/
module.exports = {
"extends": "stylelint-config-standard",
"rules": {
extends: "stylelint-config-standard",
rules: {
"color-hex-case": "lower",
"comment-empty-line-before": null,
"selector-pseudo-element-colon-notation": "single",
"at-rule-empty-line-before": [ "always", {
except: [
"blockless-after-same-name-blockless",
"first-nested"
],
ignoreAtRules: ["after-comment", "import"]
}]
"at-rule-empty-line-before": [
"always",
{
except: ["blockless-after-same-name-blockless", "first-nested"],
ignoreAtRules: ["after-comment", "import"]
}
]
}
}
};
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Copyright (c) 2017-present Arctic Ice Studio <development@arcticicestudio.com>
# Copyright (c) 2017-present Sven Greb <code@svengreb.de>
# Copyright (C) 2017-present Arctic Ice Studio <development@arcticicestudio.com>
# Copyright (C) 2017-present Sven Greb <development@svengreb.de>

# Project: Nord highlight.js
# Repository: https://github.com/arcticicestudio/nord-highlightjs
Expand Down
46 changes: 24 additions & 22 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
<p align="center"><img src="https://cdn.rawgit.com/arcticicestudio/nord-highlightjs/develop/assets/nord-highlightjs-banner.svg"/></p>
<p align="center"><a href="https://www.nordtheme.com/ports/highlightjs" target="_blank"><img src="https://raw.githubusercontent.com/arcticicestudio/nord-docs/develop/assets/images/ports/highlightjs/repository-hero.svg?sanitize=true"/></a></p>

<p align="center"></a> <img src="https://assets-cdn.github.com/favicon.ico" width=24 height=24/> <a href="https://github.com/arcticicestudio/nord-highlightjs/releases/latest"><img src="https://img.shields.io/github/release/arcticicestudio/nord-highlightjs.svg?style=flat-square"/></a> <a href="https://github.com/arcticicestudio/nord/releases/tag/v0.2.0"><img src="https://img.shields.io/badge/Nord-v0.2.0-88C0D0.svg?style=flat-square"/></a> <img src="https://www.npmjs.com/static/images/touch-icons/favicon-32x32.png" width=24 height=24/> <a href="https://www.npmjs.com/package/nord"><img src="https://img.shields.io/npm/v/nord-highlightjs.svg?style=flat-square"/></a> <a href="https://www.npmjs.com/package/nord"><img src="https://img.shields.io/npm/dt/nord-highlightjs.svg?style=flat-square"/></a> <a href="https://www.npmjs.com/package/nord"><img src="https://img.shields.io/npm/dm/nord-highlightjs.svg?style=flat-square"/></a></p>
<p align="center"><a href="https://github.com/arcticicestudio/nord-highlightjs/releases/latest"><img src="https://img.shields.io/github/release/arcticicestudio/nord-highlightjs.svg?style=flat-square&label=Release&logo=github&logoColor=eceff4&colorA=4c566a&colorB=88c0d0"/></a> <a href="https://www.nordtheme.com/docs/ports/highlightjs"><img src="https://img.shields.io/github/release/arcticicestudio/nord-highlightjs.svg?style=flat-square&label=Docs&colorA=4c566a&colorB=88c0d0&logo=data%3Aimage%2Fsvg%2Bxml%3Bbase64%2CPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiI%2BCiAgICA8cGF0aCBmaWxsPSIjZDhkZWU5IiBkPSJNMTMuNzQ2IDIuODEzYS42Ny42NyAwIDAgMC0uNTU5LS4xMzNMOCAzLjg0OGwtNS4xODgtMS4xOGEuNjY5LjY2OSAwIDAgMC0uNTcuMTMzLjY3Ny42NzcgMCAwIDAtLjI0Mi41MzF2OC4xMzNjLS4wMDguMzIuMjEuNTk4LjUyLjY2OGw1LjMzMiAxLjE5OWguMjk2bDUuMzMyLTEuMmEuNjY4LjY2OCAwIDAgMCAuNTItLjY2N1YzLjMzMmEuNjU5LjY1OSAwIDAgMC0uMjU0LS41MnpNMy4zMzIgNC4xNjhsNCAuODk4djYuNzY2bC00LS44OTh6bTkuMzM2IDYuNzY2bC00IC44OThWNS4wNjZsNC0uODk4em0wIDAiLz4KPC9zdmc%2BCg%3D%3D"/></a></p>

---
<p align="center">Changelog for <a href="https://www.nordtheme.com/ports/highlightjs" target="_blank">Nord highlight.js</a> — An arctic, north-bluish clean and elegant <a href="https://highlightjs.org" target="_blank">highlight.js</a> theme.</p>

<!--lint disable no-duplicate-headings-->

# 0.1.0

![Release Date: 2017-10-20](https://img.shields.io/badge/Release_Date-2017--10--20-88C0D0.svg?style=flat-square) [![Project Board](https://img.shields.io/badge/Project_Board-0.1.0-88C0D0.svg?style=flat-square)](https://github.com/arcticicestudio/nord-highlightjs/projects/2) [![Milestone](https://img.shields.io/badge/Milestone-0.1.0-88C0D0.svg?style=flat-square)](https://github.com/arcticicestudio/nord-highlightjs/milestone/1)

## Feature
Expand All @@ -19,43 +22,42 @@ All [modules][nord-hljs-modules] are imported from the main [`nord.scss`][nord-h

❯ Implemented language-specific styles to adhere to the [Nord Style Guidelines][nord-gh]. (@arcticicestudio, #2 in PR #4 / #5 in PR #6, 2f74d76d / 15ffa3f9)

<p align="center"><strong>Bash</strong><br><img src="https://raw.githubusercontent.com/arcticicestudio/nord-highlightjs/v0.1.0/assets/scrot-lang-bash.png"/></p>

<p align="center"><strong>Bash</strong><br><img src="https://raw.githubusercontent.com/arcticicestudio/nord-highlightjs/develop/assets/scrot-lang-bash.png"/></p>

<p align="center"><strong>C</strong><br><img src="https://raw.githubusercontent.com/arcticicestudio/nord-highlightjs/develop/assets/scrot-lang-c.png"/></p>
<p align="center"><strong>C</strong><br><img src="https://raw.githubusercontent.com/arcticicestudio/nord-highlightjs/v0.1.0/assets/scrot-lang-c.png"/></p>

<p align="center"><strong>C++</strong><br><img src="https://raw.githubusercontent.com/arcticicestudio/nord-highlightjs/develop/assets/scrot-lang-cpp.png"/></p>
<p align="center"><strong>C++</strong><br><img src="https://raw.githubusercontent.com/arcticicestudio/nord-highlightjs/v0.1.0/assets/scrot-lang-cpp.png"/></p>

<p align="center"><strong>C#</strong><br><img src="https://raw.githubusercontent.com/arcticicestudio/nord-highlightjs/develop/assets/scrot-lang-cs.png"/></p>
<p align="center"><strong>C#</strong><br><img src="https://raw.githubusercontent.com/arcticicestudio/nord-highlightjs/v0.1.0/assets/scrot-lang-cs.png"/></p>

<p align="center"><strong>CSS</strong><br><img src="https://raw.githubusercontent.com/arcticicestudio/nord-highlightjs/develop/assets/scrot-lang-css.png"/></p>
<p align="center"><strong>CSS</strong><br><img src="https://raw.githubusercontent.com/arcticicestudio/nord-highlightjs/v0.1.0/assets/scrot-lang-css.png"/></p>

<p align="center"><strong>diff</strong><br><img src="https://raw.githubusercontent.com/arcticicestudio/nord-highlightjs/develop/assets/scrot-lang-diff.png"/></p>
<p align="center"><strong>diff</strong><br><img src="https://raw.githubusercontent.com/arcticicestudio/nord-highlightjs/v0.1.0/assets/scrot-lang-diff.png"/></p>

<p align="center"><strong>Go</strong><br><img src="https://raw.githubusercontent.com/arcticicestudio/nord-highlightjs/develop/assets/scrot-lang-go.png"/></p>
<p align="center"><strong>Go</strong><br><img src="https://raw.githubusercontent.com/arcticicestudio/nord-highlightjs/v0.1.0/assets/scrot-lang-go.png"/></p>

<p align="center"><strong>HTML</strong><br><img src="https://raw.githubusercontent.com/arcticicestudio/nord-highlightjs/develop/assets/scrot-lang-html.png"/></p>
<p align="center"><strong>HTML</strong><br><img src="https://raw.githubusercontent.com/arcticicestudio/nord-highlightjs/v0.1.0/assets/scrot-lang-html.png"/></p>

<p align="center"><strong>Java</strong><br><img src="https://raw.githubusercontent.com/arcticicestudio/nord-highlightjs/develop/assets/scrot-lang-java.png"/></p>
<p align="center"><strong>Java</strong><br><img src="https://raw.githubusercontent.com/arcticicestudio/nord-highlightjs/v0.1.0/assets/scrot-lang-java.png"/></p>

<p align="center"><strong>JOSN</strong><br><img src="https://raw.githubusercontent.com/arcticicestudio/nord-highlightjs/develop/assets/scrot-lang-json.png"/></p>
<p align="center"><strong>JOSN</strong><br><img src="https://raw.githubusercontent.com/arcticicestudio/nord-highlightjs/v0.1.0/assets/scrot-lang-json.png"/></p>

<p align="center"><strong>PHP</strong><br><img src="https://raw.githubusercontent.com/arcticicestudio/nord-highlightjs/develop/assets/scrot-lang-php.png"/></p>
<p align="center"><strong>PHP</strong><br><img src="https://raw.githubusercontent.com/arcticicestudio/nord-highlightjs/v0.1.0/assets/scrot-lang-php.png"/></p>

<p align="center"><strong>Ruby</strong><br><img src="https://raw.githubusercontent.com/arcticicestudio/nord-highlightjs/develop/assets/scrot-lang-ruby.png"/></p>
<p align="center"><strong>Ruby</strong><br><img src="https://raw.githubusercontent.com/arcticicestudio/nord-highlightjs/v0.1.0/assets/scrot-lang-ruby.png"/></p>

<p align="center"><strong>Rust</strong><br><img src="https://raw.githubusercontent.com/arcticicestudio/nord-highlightjs/develop/assets/scrot-lang-rust.png"/></p>
<p align="center"><strong>Rust</strong><br><img src="https://raw.githubusercontent.com/arcticicestudio/nord-highlightjs/v0.1.0/assets/scrot-lang-rust.png"/></p>

<p align="center"><strong>Scala</strong><br><img src="https://raw.githubusercontent.com/arcticicestudio/nord-highlightjs/develop/assets/scrot-lang-scala.png"/></p>
<p align="center"><strong>Scala</strong><br><img src="https://raw.githubusercontent.com/arcticicestudio/nord-highlightjs/v0.1.0/assets/scrot-lang-scala.png"/></p>

<p align="center"><strong>SQL</strong><br><img src="https://raw.githubusercontent.com/arcticicestudio/nord-highlightjs/develop/assets/scrot-lang-sql.png"/></p>
<p align="center"><strong>SQL</strong><br><img src="https://raw.githubusercontent.com/arcticicestudio/nord-highlightjs/v0.1.0/assets/scrot-lang-sql.png"/></p>

<p align="center"><strong>Swift</strong><br><img src="https://raw.githubusercontent.com/arcticicestudio/nord-highlightjs/develop/assets/scrot-lang-swift.png"/></p>
<p align="center"><strong>Swift</strong><br><img src="https://raw.githubusercontent.com/arcticicestudio/nord-highlightjs/v0.1.0/assets/scrot-lang-swift.png"/></p>

<p align="center"><strong>YAML</strong><br><img src="https://raw.githubusercontent.com/arcticicestudio/nord-highlightjs/develop/assets/scrot-lang-yaml.png"/></p>
<p align="center"><strong>YAML</strong><br><img src="https://raw.githubusercontent.com/arcticicestudio/nord-highlightjs/v0.1.0/assets/scrot-lang-yaml.png"/></p>

[hljs-css-class-ref]: http://highlightjs.readthedocs.io/en/latest/css-classes-reference.html
[hljs-style-guide]:http://highlightjs.readthedocs.io/en/latest/style-guide.html
[hljs-style-guide]: http://highlightjs.readthedocs.io/en/latest/style-guide.html
[nord-gh]: https://github.com/arcticicestudio/nord
[nord-hljs-scss]: https://github.com/arcticicestudio/nord-highlightjs/blob/develop/src/nord.scss
[nord-hljs-modules]: https://github.com/arcticicestudio/nord-highlightjs/tree/develop/src/modules
Expand Down
4 changes: 2 additions & 2 deletions LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
MIT License (MIT)

Copyright (c) 2017-present Arctic Ice Studio <development@arcticicestudio.com> (http://arcticicestudio.com)
Copyright (c) 2017-present Sven Greb <code@svengreb.de> (http://svengreb.de)
Copyright (C) 2017-present Arctic Ice Studio <development@arcticicestudio.com> (https://www.arcticicestudio.com)
Copyright (C) 2017-present Sven Greb <development@svengreb.de> (https://www.svengreb.de)

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
Loading