From cfbe70d874d7149c9d3b77c19d855fbbb1a886f1 Mon Sep 17 00:00:00 2001 From: Santiago Soler Date: Tue, 2 Apr 2019 16:39:16 -0300 Subject: [PATCH] Add Markdown source code for each license --- README.md | 29 ++++++++++++++++++++++++++++- 1 file changed, 28 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 539e4eb..60ad955 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Creative Commons Licenses for GitHub Projects In this repo you can find easy ways for applying Creative Commons Licenses on -Github repositories. +Github repositories through Markdown language. > **WARNING:** > Your shouldn't use Creative Commons licenses for software. @@ -39,6 +39,19 @@ License][cc-by]. [cc-by-image]: https://i.creativecommons.org/l/by/4.0/88x31.png [cc-by-shield]: https://img.shields.io/badge/License-CC%20BY%204.0-lightgrey.svg +```markdown +Shield: [![CC BY 4.0][cc-by-shield]][cc-by] + +This work is licensed under a [Creative Commons Attribution 4.0 International +License][cc-by]. + +[![CC BY 4.0][cc-by-image]][cc-by] + + +[cc-by]: http://creativecommons.org/licenses/by/4.0/ +[cc-by-image]: https://i.creativecommons.org/l/by/4.0/88x31.png +[cc-by-shield]: https://img.shields.io/badge/License-CC%20BY%204.0-lightgrey.svg +``` ## CC Attribution-ShareAlike 4.0 International @@ -52,3 +65,17 @@ International License][cc-by-sa]. [cc-by-sa]: http://creativecommons.org/licenses/by-sa/4.0/ [cc-by-sa-image]: https://licensebuttons.net/l/by-sa/4.0/88x31.png [cc-by-sa-shield]: https://img.shields.io/badge/License-CC%20BY--SA%204.0-lightgrey.svg + + +```markdown +Shield: [![CC BY-SA 4.0][cc-by-sa-shield]][cc-by-sa] + +This work is licensed under a [Creative Commons Attribution-ShareAlike 4.0 +International License][cc-by-sa]. + +[![CC BY-SA 4.0][cc-by-sa-image]][cc-by-sa] + +[cc-by-sa]: http://creativecommons.org/licenses/by-sa/4.0/ +[cc-by-sa-image]: https://licensebuttons.net/l/by-sa/4.0/88x31.png +[cc-by-sa-shield]: https://img.shields.io/badge/License-CC%20BY--SA%204.0-lightgrey.svg +```