Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/utils/prepareMDX.js
Original file line numberDiff line numberDiff line change
Expand Up@@ -7,7 +7,7 @@ import {Children} from 'react';
// TODO: Esta lógica podría estar en plugins MDX en lugar de esto.

// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
export const PREPARE_MDX_CACHE_BREAKER = 3;
export const PREPARE_MDX_CACHE_BREAKER = 4;
// !!! IMPORTANT !!! Bump this if you change any logic.
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Expand DownExpand Up@@ -65,7 +65,7 @@ function getTableOfContents(children, depth) {
if (anchors.length > 0) {
anchors.unshift({
url: '#',
text: 'Overview',
text: 'Descripción general',
depth: 2,
});
}
Expand Down