| layout | page |
|---|---|
| title | About |
| permalink | about |
A place to collect all the little quirks with fonts and software
Slack Group: FontMasters{:target="_blank"}
This project is independend of any company – just people passionated about fonts.
Feel free to contribute via Github{:target="_blank"}
<script> document.addEventListener("DOMContentLoaded", function () { const repoOwner = "ollimeier"; // Change to your GitHub username or organization const repoName = "fonttechknowledge"; // Change to your repository name const contributorsContainer = document.getElementById("contributors"); fetch(`https://api.github.com/repos/${repoOwner}/${repoName}/contributors`) .then(response => response.json()) .then(contributors => { contributorsContainer.innerHTML = ""; contributors.forEach(contributor => { const contributorElement = document.createElement("div"); contributorElement.innerHTML = `
${contributor.login} (${contributor.contributions} contributions)
`; contributorsContainer.appendChild(contributorElement); }); }) .catch(error => { contributorsContainer.innerHTML = "Error loading contributors.
"; console.error("Error fetching contributors:", error); }); }); </script>