Skip to content

Latest commit

 

History

History
89 lines (66 loc) · 2.31 KB

index.md

File metadata and controls

89 lines (66 loc) · 2.31 KB
layout title body
default
Home
home

This project aims to provide a collection of research and guides on the inner workings of Epic Mickey. Though most of the content on this site currently focuses on the first game, some of it will apply to the sequel as well.

Contributors

Suggestions and contributions are welcome via GitHub pull request.

    <script async> fetch("https://api.github.com/repos/andrewplus/epic-mickey-docs/contributors") .then(response => response.json()) .then(data => show_contributors(data));
    function show_contributors(contributors) {
        contributors.forEach(function(contributor) {
            var li = document.createElement("li");
            li.innerHTML = `<a href="${contributor.html_url}">${contributor.login}</a> (${contributor.contributions} commits)`;
            document.getElementById("contributor-list").appendChild(li);
        });
    }
    
    </script>