2018-03-02 19:13:52 -05:00
|
|
|
import { DictEntry } from './dict-entry';
|
|
|
|
import { isTranslation } from './extractor';
|
|
|
|
|
|
|
|
export function translationHasNotCodeExample(entry: DictEntry): boolean {
|
|
|
|
return entry.translation.indexOf('<code-example') === -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
export function originalIsNotChinese(entry: DictEntry): boolean {
|
|
|
|
return !isTranslation(entry.original);
|
|
|
|
}
|
|
|
|
|
2018-03-06 23:57:17 -05:00
|
|
|
export function originalIsNotAlertDivTag(entry: DictEntry): boolean {
|
|
|
|
return !/^<div class="alert [^>\n]*>$/.test(entry.original);
|
2018-03-02 22:45:03 -05:00
|
|
|
}
|
|
|
|
|
2018-03-06 20:08:44 -05:00
|
|
|
export function isOnlyBeginTag(text: string) {
|
2018-03-02 22:45:03 -05:00
|
|
|
return /^\s*<\w+>\s*$/.test(text);
|
2018-03-02 19:13:52 -05:00
|
|
|
}
|
|
|
|
|
2018-03-06 20:08:44 -05:00
|
|
|
export function originalIsNotOnlyBeginTag(entry: DictEntry): boolean {
|
|
|
|
return !isOnlyBeginTag(entry.original);
|
2018-03-02 19:13:52 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
export function isNotImg(entry: DictEntry): boolean {
|
|
|
|
return !/^<(img|figure)/.test(entry.translation);
|
|
|
|
}
|
|
|
|
|
|
|
|
export function isNotCheatSheet(entry: DictEntry): boolean {
|
|
|
|
return !/cheatsheet.md$/.test(entry.sourceFile);
|
|
|
|
}
|
|
|
|
|
|
|
|
export function isNotMarketingDocs(entry: DictEntry): boolean {
|
|
|
|
return !/marketing\/docs.md$/.test(entry.sourceFile);
|
|
|
|
}
|
|
|
|
|
|
|
|
export function isNotCnPages(entry: DictEntry): boolean {
|
|
|
|
return !/cn\/.*?.md$/.test(entry.sourceFile);
|
|
|
|
}
|
|
|
|
|
|
|
|
export function isHead(line: string): boolean {
|
|
|
|
return /^#/.test(line);
|
|
|
|
}
|
2018-03-02 22:01:57 -05:00
|
|
|
|
|
|
|
export function normalizeLines(text: string): string {
|
2018-03-06 20:41:45 -05:00
|
|
|
text = '\n' + text + '\n';
|
2018-03-02 22:01:57 -05:00
|
|
|
// 列表、标题等自带换行含义的markdown
|
2018-03-03 04:47:09 -05:00
|
|
|
const blockElementPattern = /(?=\n *(\d+\.|-|\*) )\n/g;
|
2018-03-02 22:45:03 -05:00
|
|
|
text = text.replace(blockElementPattern, '\n\n');
|
2018-03-06 21:47:14 -05:00
|
|
|
const hxPattern = /(\n *#+ .*)(?=\n)/g;
|
2018-03-06 21:43:12 -05:00
|
|
|
text = text.replace(hxPattern, '\n$1\n');
|
2018-03-06 22:28:11 -05:00
|
|
|
const oneLinePairedTagPattern = /\n( *)<(p|div|h\d+|code-example|section)( ?[^>\n]*)>([^<\n]*)<\/\2>( *)(?=\n)/g;
|
2018-03-06 21:43:12 -05:00
|
|
|
text = text.replace(oneLinePairedTagPattern, '\n\n$1<$2$3>$4</$2>$5\n');
|
|
|
|
const oneLineThTdTagPattern = /\n( *)<(th|td|li)( ?[^>\n]*)>(.*)<\/\2>( *)(?=\n)/g;
|
|
|
|
text = text.replace(oneLineThTdTagPattern, '\n\n$1<$2$3>\n\n$1 $4\n\n$1</$2>$5\n');
|
2018-03-06 23:26:05 -05:00
|
|
|
const oneLineCommentPattern = /\n( *)(<!--[\s\S]*?-->)( *)(?=\n)/g;
|
2018-03-06 21:43:12 -05:00
|
|
|
text = text.replace(oneLineCommentPattern, '\n\n$1$2$3\n');
|
|
|
|
const oneLineBrTagPattern = /\n( *)(<br class="clear">)( *)(?=\n)/g;
|
|
|
|
text = text.replace(oneLineBrTagPattern, '\n\n$1$2$3\n');
|
2018-03-06 23:45:12 -05:00
|
|
|
const backToTopPattern = /\n( *)(<a href="#toc">Back to top<\/a>)( *)(?=\n)/g;
|
|
|
|
text = text.replace(backToTopPattern, '\n\n$1$2$3\n');
|
2018-03-06 21:43:12 -05:00
|
|
|
const atTagCommentPattern = /\n( *)({@a.*})( *)(?=\n)/g;
|
|
|
|
text = text.replace(atTagCommentPattern, '\n\n$1$2$3\n');
|
2018-03-06 22:25:41 -05:00
|
|
|
const oneLineClosedTagPattern = /\n( *)<(hr)(\/?)>( *)(?=\n)/g;
|
2018-03-06 21:43:12 -05:00
|
|
|
text = text.replace(oneLineClosedTagPattern, '\n\n$1<$2$3>$4\n');
|
2018-03-06 22:25:41 -05:00
|
|
|
const multiLinePairedTagPattern = /\n( *)<(header)( *[^>\n]*)>\n*(.*?)\n*( *)<\/\2>( *)(?=\n)/g;
|
2018-03-06 21:43:12 -05:00
|
|
|
text = text.replace(multiLinePairedTagPattern, '\n\n$1<$2$3>\n\n$4\n\n$5</$2>$6\n');
|
|
|
|
|
2018-03-06 23:45:12 -05:00
|
|
|
const trTagPattern = /( *)(<tr\b *[^>\n]*>)(.*)(<\/tr>)/g;
|
|
|
|
text = text.replace(trTagPattern, '\n\n$1$2\n\n$1 $3\n\n$1$4\n\n');
|
|
|
|
|
2018-03-07 00:09:36 -05:00
|
|
|
const thTdTagPattern = /( *)<(th|td)\b( *[^>\n]*)>(.*?)<\/\2>/g;
|
|
|
|
text = text.replace(thTdTagPattern, '\n\n$1<$2$3>\n\n$1 $4\n\n$1</$2>\n\n');
|
|
|
|
|
2018-03-06 23:26:05 -05:00
|
|
|
const blockTagPattern = /\n( *)<(\/?)(td|th|div|code-example|code-tabs|h\d+|p|tr)\b( *[^>\n]*)>( *)(?=\n)/g;
|
2018-03-06 21:43:12 -05:00
|
|
|
text = text.replace(blockTagPattern, '\n\n$1<$2$3$4>$5\n');
|
|
|
|
|
|
|
|
const multiLineCodePattern = /\n( *)```(\w*)( *)(?=\n)/g;
|
|
|
|
text = text.replace(multiLineCodePattern, '\n\n$1```$2$3\n');
|
2018-03-06 04:32:21 -05:00
|
|
|
|
2018-03-06 04:08:10 -05:00
|
|
|
const multipleBlankLinePattern = /\n\s*\n+/g;
|
|
|
|
text = text.replace(multipleBlankLinePattern, '\n\n');
|
2018-03-06 21:43:12 -05:00
|
|
|
|
|
|
|
text = text.replace(/^\n+/, '\n').replace(/\n+$/, '\n');
|
|
|
|
|
|
|
|
return text;
|
2018-03-02 22:01:57 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
export function indentOf(line): number {
|
|
|
|
let pattern = /^( *)[\s\S]*/;
|
|
|
|
if (!pattern.test(line)) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
const leadSpaces = line.replace(pattern, '$1').length;
|
|
|
|
if (/^ *(\d+\.|-|\*) /.test(line)) {
|
|
|
|
return leadSpaces + 3;
|
|
|
|
} else {
|
|
|
|
return leadSpaces;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export function repeat(indent: number): string {
|
|
|
|
let result = '';
|
|
|
|
for (let i = 0; i < indent; ++i) {
|
|
|
|
result = result + ' ';
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|