diff --git a/en/device-dev/kernel/kernel-mini-basic-interrupt.md b/en/device-dev/kernel/kernel-mini-basic-interrupt.md
index 892ff1dd410e531baf4f0622144a3302058b1499..9b4f44f7b8bdda88255da9486a31607327e32d38 100644
--- a/en/device-dev/kernel/kernel-mini-basic-interrupt.md
+++ b/en/device-dev/kernel/kernel-mini-basic-interrupt.md
@@ -1,11 +1,5 @@
# Interrupt Management
-- [Basic Concepts](#section1699312388210)
-- [Available APIs](#section158501652121514)
-- [How to Develop](#section11841123033618)
-- [Development Example](#section460018317164)
-- [Verification](#section668510614519)
-
## Basic Concepts
An interrupt is a signal to the processor emitted by hardware or software indicating an event that needs immediate attention. An interrupt alerts the processor to a high-priority condition requiring the interruption of the current code being executed by the processor. When a hardware interrupt is triggered, the interrupt handler is located based on the interrupt ID and then executed to handle the interrupt.