Skip to content

Latest commit

 

History

History
90 lines (62 loc) · 3.94 KB

readme.org

File metadata and controls

90 lines (62 loc) · 3.94 KB

Repository as a copy and paste guide to README and Licensing using Org files.

Use Creative Commons Atribution Share Alike, but commerciable (V 4.0).

That means people can share, mix, and redistribute a new version, as they see fit. Also, they can profit on it. And, the particular file(s) that use this project will have to be open sourced under this same license.

Symbols

Use this code at the end of your file, as a footer. These are the symbols.

Shield:
[[http://creativecommons.org/licenses/by-sa/4.0/][https://img.shields.io/badge/License-CC%20BY--SA%204.0-lightgrey.svg]]

This work is licensed under a
[[http://creativecommons.org/licenses/by-sa/4.0/][Creative Commons
Attribution-ShareAlike 4.0 International License]].

[[http://creativecommons.org/licenses/by-sa/4.0/][https://licensebuttons.net/l/by-sa/4.0/88x31.png]]

License per se

Use this license, as the LICENSE file.

The code should render as the following

Shield: https://img.shields.io/badge/License-CC%20BY--SA%204.0-lightgrey.svg

This work is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License.

https://licensebuttons.net/l/by-sa/4.0/88x31.png

Unicode support

There exists Common’s License symbol’s support now. They are the following

CodeSymbolName
1F16D🅭Circled CC
1F16E🅮Circled C With Overlaid Backslash
1F16F🅯Circled Human Figure
1F10D🄍Circled Zero with Slash
1F10E🄎Circled Anticlockwise Arrow
1F10F🄏Circled Dollar Sign With Overlaid Backslash

You may install this font, locally. There is no broad coverage by standard fonts, although it’s a standard since 2020. Credit for Daniel Aleksandersen for making this minimalistic font available. More on how to use it on the web.

If you use an arch-based system, you could replicate the install, by following this post.

How it renders in the browser, onde the font is installed:

./resources/cc-render.png

Emacs CC Unicode

This is a setup for rendering the symbols in Emacs, once it’s installed.

;; look-up table of symbols
;;https://en.wikipedia.org/wiki/Enclosed_Alphanumeric_Supplement
;; "CCSymbol"  U+1F16D - U+1F10F
(set-fontset-font "fontset-default"
                  (cons (decode-char 'ucs #x1F10D)
                        (decode-char 'ucs #x1F10f))
                  "CC Symbols")

(set-fontset-font "fontset-default"
                  (cons (decode-char 'ucs #x1F16D)
                        (decode-char 'ucs #x1F16f))
                  "CC Symbols")

;; CCSymbols:style=Regular:fullname CC Symbols

;; See it render
;; | Code  | Symbol | Name                                        |
;; |-------+--------+---------------------------------------------|
;; | 1F16D | 🅭      | Circled CC                                  |
;; | 1F16E | 🅮      | Circled C With Overlaid Backslash           |
;; | 1F16F | 🅯      | Circled Human Figure                        |
;; | 1F10D | 🄍      | Circled Zero with Slash                     |
;; | 1F10E | 🄎      | Circled Anticlockwise Arrow                 |
;; | 1F10F | 🄏      | Circled Dollar Sign With Overlaid Backslash |