I used this following video to install Obsidian -
- Now because of what I had to do in Centering image globally , it is recommended that at 5:48 we choose relative path instead of shortest.
- After installation, remember to change the link system in Obsidian as relative path as well!
segments.push(formatDate(getDate(cfg, fileData)!, cfg.locale)) }
Replaced with -
```js
const fileName = fileData.name; // Assuming fileData has a name property
// Check if the file is not index.md
if (fileName !== 'index.md' && fileData.dates) {
const lastUpdatedDate = formatDate(getDate(cfg, fileData)!, cfg.locale);
segments.push(`Last updated ${lastUpdatedDate}`);
}
- Completely revamped the date settings and format.
- Removed discord community from the footer in layout
- In
base.scss
thestrong
tag uses a variable fromvariable.scss
. I changed a few vars here so this is the code:
$pageWidth: 700px;
$mobileBreakpoint: 600px;
$tabletBreakpoint: 1000px;
$sidePanelWidth: 325px;
$topSpacing: 6rem;
$fullPageWidth: $pageWidth + 2 * $sidePanelWidth;
$boldWeight: 700;
$semiBoldWeight: 600;
$normalWeight: 400;