I am trying to create internal link to element of the list. Example:
[file1.md]
This is my list
1. apples
child section of apples
2. bananas
3. oranges
child section of oranges
[file2.md]
this is link to third element of the list in other file!
![[file1#^oranges]]
Things I have tried
I’ve tried using blocks to link but whole list is detected as one block. Because of this i cannot link selected element of the list, only list as a whole.
I know that separating elements of the list like that:
1. first
2. second
3. third
fixes this block detection, but I am not satisfied with this solution.
Is there a way to link directly to list element?
Is there a way of separating text to block other then newline?
Is there a way of linking to selected word or line?
Hi I really appreciate your help. I marked this problem as solved because your solution works for question I created. Unfortunately I still have a problem and I am totally lost, I am attaching gif and whole code section. I am not able to create working link to element for some reason without separating elements by newline.
5. Tautologia - zdanie które zawsze ma wartość równoważną z 1
prawo de Morgana -> $\sim(p\wedge q)<=> \sim p\vee \sim q$
rozwiązanie prawa de Morgana przez tabele bitową:
| p | q | $\sim (p \wedge q)$ | $\sim p \vee \sim q$ | <=> |
| --- | --- | ------------------- | -------------------- | --- |
| 1 | 0 | 1 | 1 | 1 |
| 0 | 1 | 1 | 1 | 1 |
| 1 | 1 | 0 | 0 | 1 |
| 0 | 0 | 1 | 1 | 1 |
jak widać wartość końcowa zdania zawsze jest równa 1 - niezależnie od wartości `p` i `q`. W ten sposób udowodniliśmy, że to zdanie to tautologia. Innym sposobem rozwiązania tautologii może być sprowadzenie do podstawowych tautologii. Poniżej parę przykładów innych tautologii:
![[tautologie.png]]
6. Funkcje zdaniowe - wyrażenie o zmiennej wartości
$\large x \in R$
$\large \Phi(x): sin(x)>0$
$\large \Phi (\frac{\pi}{2})\Leftrightarrow1$
$\large \Phi\left(\frac{\pi}{2}\right)\Leftrightarrow0$ ^test-1
7. Zakres zmienności
Zakresem zmienności nazywamy zbiory z których możemy czerpać wartości dla zmiennych w funkcjach zdaniowych
![[Untitled#^test-1]]
In general things work best in Markdown (and extensions to Markdown) when you separate different things with blank lines, even when it’s not strictly required.
Normally that’s not needed with list items (they are the same, not different), but your list items have multiple lines. You may have done your multi-line list items incorrectly. Check Reading View — if you see unexpected results (like each list item being its own list) then you did the list wrong. Indent the second and further lines of each item by 1 tab or 4 spaces. If that doesn’t work, you may also need blank lines.
As Cawlin said, Markdown works best when you separate elements with a blank line. Here your ![[tautologie.png]] image and 6. Funkcje... aren’t separated and 6/7 aren’t considered list items, but the blockID embed does work in Reading view.