Skip to content

Latest commit

 

History

History
129 lines (125 loc) · 10 KB

file_list.md

File metadata and controls

129 lines (125 loc) · 10 KB

## File List

# Here is a list of files included in this repository:

<script> document.addEventListener("DOMContentLoaded", function() { const lazyLoadElements = document.querySelectorAll('.lazyload-placeholder');
if ("IntersectionObserver" in window) {
    let rootMargin = '0px 0px 400px 0px';
    let threshold = 0.5;
    if (window.innerWidth <= 768) {  // Mobile devices
        rootMargin = '0px 0px 100px 0px';
        threshold = 0.1;
    } else if (window.innerWidth <= 1024) {  // Tablets
        rootMargin = '0px 0px 200px 0px';
        threshold = 0.3;
    } else if (window.innerWidth <= 1440) {  // Small desktops
        rootMargin = '0px 0px 300px 0px';
        threshold = 0.4;
    } else {  // Large desktops
        rootMargin = '0px 0px 400px 0px';
        threshold = 0.5;
    }
    let observer = new IntersectionObserver((entries, observer) => {
        entries.forEach(entry => {
            if (entry.isIntersecting) {
                let placeholder = entry.target;
                let contentId = placeholder.dataset.content;
                let file_list_html = '';
                switch(contentId) {
                    case 'file-list-1':
                        file_list_html = `<ul><h2 style="color: #e680bf;">Repo Root</h2>
  • .gitignore
  • .jsbeautifyrc
  • .pre-commit-config.yaml
  • .prettierrc
  • .stylelintrc.json
  • .vale.ini
  • .yamllint
  • CNAME
  • CODE_OF_CONDUCT.md
  • CONTRIBUTING.md
  • README.md
  • dockerfile
  • favicon.ico
  • file_list.html
  • file_list.md
  • readme.html
  • requirements.txt
  • sitemap.xml

  • JavaScript

  • .eslintrc.js

  • YAML

  • .github/dependabot.yml
  • .github/workflows/ActionLint.yml
  • .github/workflows/greetings.yml
  • .github/workflows/main.yml
  • .github/workflows/sitemap.yml
  • .github/workflows/stale.yml
  • .github/workflows/static.yml
  • .markdownlint.yml
  • .scss-lint.yml
  • _config.yml
  • action.yml

  • src

  • src/generate_file_list.py
  • `; break; } placeholder.innerHTML = file_list_html; observer.unobserve(placeholder); console.log(`Loaded content for ${contentId}`); } }); }, { rootMargin: rootMargin, threshold: threshold });
        lazyLoadElements.forEach(element => {
            element.style.marginTop = '-17px';
            observer.observe(element);
        });
    } else {
        lazyLoadElements.forEach(placeholder => {
            let contentId = placeholder.dataset.content;
            let file_list_html = '';
            switch(contentId) {
                case 'file-list-1':
                    file_list_html = `<ul><h2 style="color: #e680bf;">Repo Root</h2>
    
  • .gitignore
  • .jsbeautifyrc
  • .pre-commit-config.yaml
  • .prettierrc
  • .stylelintrc.json
  • .vale.ini
  • .yamllint
  • CNAME
  • CODE_OF_CONDUCT.md
  • CONTRIBUTING.md
  • README.md
  • dockerfile
  • favicon.ico
  • file_list.html
  • file_list.md
  • readme.html
  • requirements.txt
  • sitemap.xml

  • JavaScript

  • .eslintrc.js

  • YAML

  • .github/dependabot.yml
  • .github/workflows/ActionLint.yml
  • .github/workflows/greetings.yml
  • .github/workflows/main.yml
  • .github/workflows/sitemap.yml
  • .github/workflows/stale.yml
  • .github/workflows/static.yml
  • .markdownlint.yml
  • .scss-lint.yml
  • _config.yml
  • action.yml

  • src

  • src/generate_file_list.py
  • `; break; } placeholder.innerHTML = file_list_html; }); } }); </script>