feat(guide): Import guide in to the client app

This commit is contained in:
Bouncey
2018-10-04 14:47:55 +01:00
committed by Stuart Taylor
parent 2723a943c9
commit 6e728ce16d
4338 changed files with 148283 additions and 4200 deletions

6
client/utils/regEx.js Normal file
View File

@ -0,0 +1,6 @@
exports.httpsRE = /https?\:\/\//;
exports.isAFileRE = /(\.md|\.jsx?|\.html?)$/;
exports.isAStubRE = /This\sis\sa\sstub.+?Help\sour\scommunity\sexpand\sit/;
exports.markdownLinkRE = /\!?\[.*?\]\(.+?\)/g;
exports.metaTitleRE = /^---\r?\ntitle:([^\n]*)\n---$/m;
exports.shouldBeIgnoredRE = /^(\_|\.)/;