179 lines
		
	
	
		
			6.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			179 lines
		
	
	
		
			6.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!DOCTYPE html>
 | 
						|
<html lang="en">
 | 
						|
 | 
						|
<head>
 | 
						|
  <meta charset="UTF-8">
 | 
						|
  <title>Contribution Guidelines | freeCodeCamp.org</title>
 | 
						|
  <link rel="icon" href="images/branding/favicon.ico">
 | 
						|
  <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
 | 
						|
  <meta name="description" content="Description">
 | 
						|
  <meta name="viewport"
 | 
						|
    content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
 | 
						|
  <!--social-->
 | 
						|
  <meta content='freeCodeCamp.org' name='og:title' />
 | 
						|
  <meta content='Learn to code at home. Build projects. Earn certifications.'
 | 
						|
    + 'Since 2015, 40,000 graduates have gotten jobs at tech '
 | 
						|
    + 'companies including Google, Apple, Amazon, and Microsoft.' name='og:description' />
 | 
						|
  <meta content='https://cdn.freecodecamp.org/platform/universal/fcc-og-1200-social-green.png' property='og:image' />
 | 
						|
 | 
						|
  <meta content='summary_large_image' key='twitter:card' name='twitter:card' />
 | 
						|
  <meta content='https://cdn.freecodecamp.org/platform/universal/fcc-twitter-1120X600-social-green.png'
 | 
						|
    name='twitter:image:src' />
 | 
						|
  <meta content='freeCodeCamp.org' name='twitter:title' />
 | 
						|
  <meta content='Learn to code at home. Build projects. Earn certifications.'
 | 
						|
    + 'Since 2015, 40,000 graduates have gotten jobs at tech '
 | 
						|
    + 'companies including Google, Apple, Amazon, and Microsoft.' name='twitter:description' />
 | 
						|
 | 
						|
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/css/all.min.css"
 | 
						|
    integrity="sha512-1PKOgIY59xJ8Co8+NE6FZ+LOAZKjy+KY8iq0G4B3CyeY6wYHN3yt9PW0XpSriVlkMXe40PTKnXrLnZ9+fkDaog=="
 | 
						|
    crossorigin="anonymous" />
 | 
						|
 | 
						|
  <!-- Theme -->
 | 
						|
  <!-- <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsify-themeable@0/dist/css/theme-simple.css"> -->
 | 
						|
  <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsify/themes/vue.css">
 | 
						|
  <!-- Custom theme stylesheet -->
 | 
						|
  <link rel="stylesheet" href="_theme.css">
 | 
						|
 | 
						|
</head>
 | 
						|
 | 
						|
<body class="close">
 | 
						|
  <!-- Navigation (we are using a div, instead of nav to avoid conflict with docsify's nav) -->
 | 
						|
  <div class='universal-nav'>
 | 
						|
    <a class="app-name-link" data-nosearch="" href="/">
 | 
						|
      <img alt="freeCodeCamp.org" src="images/branding/primary_logo.svg">
 | 
						|
    </a>
 | 
						|
    <a class="translations-link" data-nosearch="" href="/#/i18n">
 | 
						|
      Translations
 | 
						|
    </a>
 | 
						|
  </div>
 | 
						|
 | 
						|
  <!-- App with its own nav, search and sidebar -->
 | 
						|
  <div id="app"></div>
 | 
						|
  <script>
 | 
						|
    window.$docsify = {
 | 
						|
 | 
						|
      homepage: 'index',
 | 
						|
 | 
						|
      relativePath: true,
 | 
						|
      // common aliases
 | 
						|
      alias: {
 | 
						|
        '.*/_navbar.md': '/_navbar.md',
 | 
						|
        '/i18n/?': '/_translations.md'
 | 
						|
      },
 | 
						|
 | 
						|
 | 
						|
      // break the caching
 | 
						|
      requestHeaders: {
 | 
						|
        'cache-control': 'no-cache'
 | 
						|
      },
 | 
						|
 | 
						|
      // Cover Page
 | 
						|
      coverpage: true,
 | 
						|
      onlyCover: true,
 | 
						|
 | 
						|
 | 
						|
      // Navigation
 | 
						|
      autoHeader: true,
 | 
						|
      auto2top: true,
 | 
						|
 | 
						|
      loadSidebar: true,
 | 
						|
      maxLevel: 2,
 | 
						|
      subMaxLevel: 2,
 | 
						|
 | 
						|
      topMargin: 90,
 | 
						|
 | 
						|
      // we do not use the built in navbar other then in mobile view
 | 
						|
      loadNavbar: true,
 | 
						|
      mergeNavbar: true,
 | 
						|
 | 
						|
      // Plugins
 | 
						|
      search: {
 | 
						|
        depth: 3,
 | 
						|
        noData: 'No results!',
 | 
						|
        placeholder: 'Search...'
 | 
						|
      },
 | 
						|
 | 
						|
      'flexible-alerts': {
 | 
						|
        style: 'callout'
 | 
						|
      },
 | 
						|
 | 
						|
      pagination: {
 | 
						|
        crossChapter: true
 | 
						|
      },
 | 
						|
 | 
						|
      remoteMarkdown: {
 | 
						|
        tag: 'remote-markdown-url',
 | 
						|
      },
 | 
						|
 | 
						|
      plugins: [
 | 
						|
        function (hook, vm) {
 | 
						|
 | 
						|
          hook.beforeEach(function (markdown) {
 | 
						|
 | 
						|
            // -- ignore the translations list page
 | 
						|
            if (vm.route.file === '_translations.md') return markdown;
 | 
						|
 | 
						|
            // -- add "Update this translation" link for all i18n language pages
 | 
						|
            if (vm.route.path.search('i18n') !== -1) {
 | 
						|
              var dynamicText =
 | 
						|
                '[<i class="far fa-edit"></i> Update the translation](' +
 | 
						|
                'https://translate.freecodecamp.org/contributing-docs' +
 | 
						|
                ') or [visit the English version](' +
 | 
						|
                '/' + vm.route.path.split('/').pop() +
 | 
						|
                ') of this guide to update instructions.';
 | 
						|
            }
 | 
						|
 | 
						|
            // -- add "Edit this guide on GitHub" link for all English language pages
 | 
						|
            if (vm.route.path.search('i18n') === -1) {
 | 
						|
              var dynamicText =
 | 
						|
                '[<i class="far fa-edit"></i> Edit this guide on GitHub](' +
 | 
						|
                'https://github.com/freeCodeCamp/freeCodeCamp/blob/master/docs/' +
 | 
						|
                vm.route.file +
 | 
						|
                ')';
 | 
						|
            }
 | 
						|
 | 
						|
            // Used from https://github.com/ckoliber/docsify-rtl/blob/master/build/docsify-rtl.js,
 | 
						|
            // Currently this is a hack because can't use the plugin as is.
 | 
						|
            if (vm.route.path.search('Arabic') !== -1) {
 | 
						|
              for (var counter = 0, elements = document.getElementsByClassName("markdown-section"); counter < elements.length; counter++) {
 | 
						|
                var item = elements[counter];
 | 
						|
                item.dir = "rtl";
 | 
						|
              }
 | 
						|
            };
 | 
						|
 | 
						|
            return (
 | 
						|
              markdown +
 | 
						|
              '\n----\n' +
 | 
						|
              dynamicText
 | 
						|
            );
 | 
						|
            // -- do not add logic below this line --
 | 
						|
 | 
						|
          });
 | 
						|
        }
 | 
						|
      ]
 | 
						|
 | 
						|
    }
 | 
						|
  </script>
 | 
						|
 | 
						|
  <script src="https://cdn.jsdelivr.net/npm/docsify/lib/docsify.min.js"></script>
 | 
						|
 | 
						|
  <!-- Theme -->
 | 
						|
  <!-- <script src="https://cdn.jsdelivr.net/npm/docsify-themeable@0"></script> -->
 | 
						|
 | 
						|
  <!-- Plugins -->
 | 
						|
  <script src="https://cdn.jsdelivr.net/npm/docsify/lib/plugins/emoji.min.js"></script>
 | 
						|
  <script src="https://cdn.jsdelivr.net/npm/docsify/lib/plugins/zoom-image.min.js"></script>
 | 
						|
  <script src="https://cdn.jsdelivr.net/npm/docsify-copy-code@2"></script>
 | 
						|
  <script src="https://cdn.jsdelivr.net/npm/docsify@4/lib/plugins/search.js"></script>
 | 
						|
  <script src="https://cdn.jsdelivr.net/npm/docsify-plugin-flexible-alerts@1"></script>
 | 
						|
 | 
						|
  <script src="https://unpkg.com/docsify-pagination/dist/docsify-pagination.min.js"></script>
 | 
						|
  <script src="https://unpkg.com/docsify-remote-markdown/dist/docsify-remote-markdown.min.js"></script>
 | 
						|
 | 
						|
  <script src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/js/all.min.js"
 | 
						|
    integrity="sha512-YSdqvJoZr83hj76AIVdOcvLWYMWzy6sJyIMic2aQz5kh2bPTd9dzY3NtdeEAzPp/PhgZqr4aJObB3ym/vsItMg=="
 | 
						|
    crossorigin="anonymous"></script>
 | 
						|
 | 
						|
</body>
 | 
						|
 | 
						|
</html> |