diff --git a/src/material-examples/example-module.ts b/src/material-examples/example-module.ts index ed950aa52cfc..23a4d39a2bdb 100644 --- a/src/material-examples/example-module.ts +++ b/src/material-examples/example-module.ts @@ -697,7 +697,7 @@ export const EXAMPLE_COMPONENTS = { selectorName: null }, 'table-overview': { - title: 'Feature-rich data table', + title: 'Data table with sorting, pagination, and filtering.', component: TableOverviewExample, additionalFiles: null, selectorName: null diff --git a/tools/gulp/tasks/docs.ts b/tools/gulp/tasks/docs.ts index e17749077865..76897af88225 100644 --- a/tools/gulp/tasks/docs.ts +++ b/tools/gulp/tasks/docs.ts @@ -100,7 +100,7 @@ task('markdown-docs', () => { } }; - return src(['src/lib/**/*.md', 'guides/*.md']) + return src(['src/lib/**/!(README).md', 'guides/*.md']) .pipe(rename({prefix: 'material-'})) .pipe(markdown(markdownOptions)) .pipe(transform(transformMarkdownFiles)) @@ -112,7 +112,7 @@ task('markdown-docs', () => { // disambiguating the output. /** Generates html files from the markdown overviews and guides for the cdk. */ task('markdown-docs-cdk', () => { - return src(['src/cdk/**/*.md']) + return src(['src/cdk/**/!(README).md']) .pipe(rename({prefix: 'cdk-'})) .pipe(markdown(markdownOptions)) .pipe(transform(transformMarkdownFiles))