From 1fed4be5c93b9b648803fe678a653c71bd4212cd Mon Sep 17 00:00:00 2001 From: "M. Tayyab Tahir Qureshi" <109274085+ttqureshi@users.noreply.github.com> Date: Wed, 3 Dec 2025 18:49:59 +0500 Subject: [PATCH] refactor: Enable the Extracted HTML XBlock (#37669) In this commit we are rolling out the Extracted HTML XBlock by toggling the USE_EXTRACTED_HTML_BLOCK flag to True. Note: The HTML Block subclasses (StaticTab, About, CourseInfo) still use the built-in code. We'll update it to use the extracted code in a separate PR. Part of: https://github.com/openedx/edx-platform/issues/37254 --- openedx/envs/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openedx/envs/common.py b/openedx/envs/common.py index d35bc5f391..de9e45f235 100644 --- a/openedx/envs/common.py +++ b/openedx/envs/common.py @@ -1706,7 +1706,7 @@ USE_EXTRACTED_LTI_BLOCK = False # .. toggle_warning: Not production-ready until relevant subtask https://github.com/openedx/edx-platform/issues/34827 is done. # .. toggle_creation_date: 2024-11-10 # .. toggle_target_removal_date: 2025-06-01 -USE_EXTRACTED_HTML_BLOCK = False +USE_EXTRACTED_HTML_BLOCK = True # .. toggle_name: USE_EXTRACTED_DISCUSSION_BLOCK # .. toggle_default: False