EDIT: In 0.7.0 version you can put a backlinks pane below. So there will be no need for CSS solution.
EDIT:
JS TRICK IS BROKEN NOW. THERE IS NO WAY TO INJECT JS FROM NOTES. THAT WAS MADE BECAUSE OF THE SECURITY REASONS.

EDIT: JS tweak will be broken in next releases of Obsidian. You could use that CSS Solution
=== Original ===
I really miss some features from Roam Researn. But I don’t like waiting, so I decided to do something with it.
This is a piece of code which can help us to achieve this.
(function(){
const backlinks = document.querySelector('.side-dock-plugin-panel.mod-backlinks');
const editor = document.querySelector('.CodeMirror-sizer').parentElement;
editor.appendChild(backlinks);
backlinks.style.display = 'flex';
backlinks.style.width = 'calc(100% - 35px)';
backlinks.style.marginLeft = '25px';
backlinks.style.marginTop = '50px';
})()
We just need something to run this code. There are couple ways. Just put one of code snippets below in your note and go to the view mode.
- If you decided to use a button, you’ll see a button which must be clicked.
- The second snippet will apply automatically, when you go to the view mode.
After that you’ll be able to see backlinks in your note below the main content.
<!-- This will create a button -->
<button onclick="(function(){ const backlinks = document.querySelector('.side-dock-plugin-panel.mod-backlinks'); const editor = document.querySelector('.CodeMirror-sizer').parentElement; editor.appendChild(backlinks); backlinks.style.display = 'flex'; backlinks.style.width = 'calc(100% - 35px)'; backlinks.style.marginLeft = '25px'; backlinks.style.marginTop = '50px'; })()">Put backlinks into the editor section</button>
<!-- This will start a script when note loaded -->
<img src onerror="(function(){ const backlinks = document.querySelector('.side-dock-plugin-panel.mod-backlinks'); const editor = document.querySelector('.CodeMirror-sizer').parentElement; editor.appendChild(backlinks); backlinks.style.display = 'flex'; backlinks.style.width = 'calc(100% - 35px)'; backlinks.style.marginLeft = '25px'; backlinks.style.marginTop = '50px'; })()">
EDIT:
- You need to put code and press button only in one note. Backlinks will appear in other notes as well
- Backlinks will appear only in edit mode.
EDIT:
CSS Solution which will put right sidepanel at the bottom of the screen