diff --git a/src/gen-xml.ts b/src/gen-xml.ts
index 3a8d5d4ec..233931c30 100644
--- a/src/gen-xml.ts
+++ b/src/gen-xml.ts
@@ -43,6 +43,11 @@ import {
 	valToPts,
 } from './gen-utils'
 
+// Bob Dolan 2025-01-27 | Issue #1299
+import PptxGenJS from '../types'
+import TableToSlidesProps = PptxGenJS.TableToSlidesProps
+// Bob Dolan 2025-01-27 | Issue #1299
+
 const ImageSizingXml = {
 	cover: function (imgSize: { w: number, h: number }, boxDim: { w: number, h: number, x: number, y: number }) {
 		const imgRatio = imgSize.h / imgSize.w
@@ -179,7 +184,17 @@ function slideObjectToXml (slide: PresSlide | SlideLayout): string {
 					''
 				strXml += ``
-				strXml += ''
+
+				// Bob Dolan 2025-01-27 | Issue #1299
+				// strXml += ''
+				// if autoPageRepeatHeader is true, first row of table should be marked as a header row to improve accessibility and to pass PowerPoint accessibility review
+				strXml += ''
+				// Bob Dolan 2025-01-27 | Issue #1299
+
 				// + '        ';
 				// TODO: Support banded rows, first/last row, etc.
 				// NOTE: Banding, etc. only shows when using a table style! (or set alt row color if banding)