mirror of
https://github.com/reactjs/react.dev.git
synced 2026-02-22 03:42:14 +00:00
Add React Denver to the Meetups page (#4727)
Co-authored-by: Rick Hanlon <rickhanlonii@fb.com>
This commit is contained in:
@@ -17,4 +17,4 @@ module.exports = {
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
};
|
||||
|
||||
@@ -4,12 +4,14 @@
|
||||
|
||||
// Do not delete or move this file.
|
||||
// Many fiddles reference it so we have to keep it here.
|
||||
(function() {
|
||||
(function () {
|
||||
var tag = document.querySelector(
|
||||
'script[type="application/javascript;version=1.7"]'
|
||||
);
|
||||
if (!tag || tag.textContent.indexOf('window.onload=function(){') !== -1) {
|
||||
alert('Bad JSFiddle configuration, please fork the original React JSFiddle');
|
||||
alert(
|
||||
'Bad JSFiddle configuration, please fork the original React JSFiddle'
|
||||
);
|
||||
}
|
||||
tag.setAttribute('type', 'text/babel');
|
||||
tag.textContent = tag.textContent.replace(/^\/\/<!\[CDATA\[/, '');
|
||||
|
||||
@@ -4,12 +4,14 @@
|
||||
|
||||
// Do not delete or move this file.
|
||||
// Many fiddles reference it so we have to keep it here.
|
||||
(function() {
|
||||
(function () {
|
||||
var tag = document.querySelector(
|
||||
'script[type="application/javascript;version=1.7"]'
|
||||
);
|
||||
if (!tag || tag.textContent.indexOf('window.onload=function(){') !== -1) {
|
||||
alert('Bad JSFiddle configuration, please fork the original React JSFiddle');
|
||||
alert(
|
||||
'Bad JSFiddle configuration, please fork the original React JSFiddle'
|
||||
);
|
||||
}
|
||||
tag.setAttribute('type', 'text/jsx;harmony=true');
|
||||
tag.textContent = tag.textContent.replace(/^\/\/<!\[CDATA\[/, '');
|
||||
|
||||
@@ -2,10 +2,10 @@ const fs = require('fs');
|
||||
|
||||
module.exports = function walk(dir) {
|
||||
let results = [];
|
||||
/**
|
||||
/**
|
||||
* If the param is a directory we can return the file
|
||||
*/
|
||||
if(dir.includes('md')){
|
||||
if (dir.includes('md')) {
|
||||
return [dir];
|
||||
}
|
||||
const list = fs.readdirSync(dir);
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
const validateHeaderIds = require('./headingIDHelpers/validateHeadingIDs');
|
||||
const generateHeadingIds = require('./headingIDHelpers/generateHeadingIDs');
|
||||
|
||||
/**
|
||||
/**
|
||||
* yarn lint-heading-ids --> Checks all files and causes an error if heading ID is missing
|
||||
* yarn lint-heading-ids --fix --> Fixes all markdown file's heading IDs
|
||||
* yarn lint-heading-ids path/to/markdown.md --> Checks that particular file for missing heading ID (path can denote a directory or particular file)
|
||||
* yarn lint-heading-ids --fix path/to/markdown.md --> Fixes that particular file's markdown IDs (path can denote a directory or particular file)
|
||||
*/
|
||||
*/
|
||||
|
||||
const markdownPaths = process.argv.slice(2);
|
||||
if (markdownPaths.includes('--fix')) {
|
||||
|
||||
@@ -169,6 +169,7 @@ Do you have a local React.js meetup? Add it here! (Please keep the list alphabet
|
||||
* [Cleveland, OH - ReactJS](https://www.meetup.com/Cleveland-React/)
|
||||
* [Columbus, OH - ReactJS](https://www.meetup.com/ReactJS-Columbus-meetup/)
|
||||
* [Dallas, TX - ReactJS](https://www.meetup.com/ReactDallas/)
|
||||
* [Denver, CO - React Denver](https://reactdenver.com/)
|
||||
* [Detroit, MI - Detroit React User Group](https://www.meetup.com/Detroit-React-User-Group/)
|
||||
* [Indianapolis, IN - React.Indy](https://www.meetup.com/React-Indy)
|
||||
* [Irvine, CA - ReactJS](https://www.meetup.com/ReactJS-OC/)
|
||||
|
||||
Reference in New Issue
Block a user