From 5232d2aa177757d4d8984eef08201908f872b85a Mon Sep 17 00:00:00 2001 From: mango-db <58707794+mango-db@users.noreply.github.com> Date: Thu, 7 May 2020 10:39:59 -0400 Subject: [PATCH] DOP-1008: Ignore raw directive (#188) --- docs-tools | 2 +- src/components/ComponentFactory.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs-tools b/docs-tools index 56a4df3f5..e52235b93 160000 --- a/docs-tools +++ b/docs-tools @@ -1 +1 @@ -Subproject commit 56a4df3f5d0222ccca57f0759ad99fcc41c0a00d +Subproject commit e52235b937ceeb24e01534256d72cbb789c95b3d diff --git a/src/components/ComponentFactory.js b/src/components/ComponentFactory.js index 14d738002..73ddb6426 100644 --- a/src/components/ComponentFactory.js +++ b/src/components/ComponentFactory.js @@ -54,7 +54,7 @@ import RoleClass from './Roles/Class'; import RoleFile from './Roles/File'; import RoleGUILabel from './Roles/GUILabel'; -const IGNORED_NAMES = ['default-domain', 'toctree']; +const IGNORED_NAMES = ['default-domain', 'raw', 'toctree']; const IGNORED_TYPES = ['comment', 'substitution_definition']; export default class ComponentFactory extends Component {