diff --git a/src/workspace/outline.rs b/src/workspace/outline.rs index 78484d646..1041d897f 100644 --- a/src/workspace/outline.rs +++ b/src/workspace/outline.rs @@ -133,7 +133,7 @@ impl OutlineCaptionKind { pub fn parse(environment_name: &str) -> Option { match environment_name { "figure" | "subfigure" => Some(Self::Figure), - "table" => Some(Self::Table), + "table" | "subtable" => Some(Self::Table), "listing" | "lstlisting" => Some(Self::Listing), "algorithm" => Some(Self::Algorithm), _ => None,