Skip to content

Commit f86f518

Browse files
Fix image rendering
1 parent 56688b2 commit f86f518

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

content/blog/lpython_mvp.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Based on the novel Abstract Semantic Representation (ASR) shared with LFortran,
1515

1616
In this blog, we describe features of LPython including Ahead-of-Time (AoT) compilation, JIT compilation, and interoperability with CPython. We also showcase LPython's performance against its competitors such as Numba and C++ via several benchmarks.
1717

18-
![LCompilers-Diagram](images/lcompilers_diagram.png)
18+
![LCompilers-Diagram](https://github.com/lcompilers/lpython.org-deploy/blob/main/content/blog/images/lcompilers_diagram.png)
1919

2020

2121
## Features of LPython
@@ -1520,7 +1520,7 @@ def plot_graph(x, y1, y2, y3):
15201520
(lp) 23:10:44:~/lpython_project % # Works see the graph below
15211521
```
15221522

1523-
![Output graph](images/graph.png)
1523+
![Output graph](https://github.com/lcompilers/lpython.org-deploy/blob/main/content/blog/images/graph.png)
15241524

15251525
**Visualization using Matplotlib: Mandelbrot Set**
15261526

@@ -1618,10 +1618,10 @@ $ lpython main.py --backend=c --link-numpy
16181618
Done.
16191619
```
16201620

1621-
![mandelbrot-set-gray](images/gray.png)
1621+
![mandelbrot-set-gray](https://github.com/lcompilers/lpython.org-deploy/blob/main/content/blog/images/gray.png)
16221622

16231623

1624-
![mandelbrot-set-color](images/color.png)
1624+
![mandelbrot-set-color](https://github.com/lcompilers/lpython.org-deploy/blob/main/content/blog/images/color.png)
16251625

16261626

16271627
## Conclusion

0 commit comments

Comments
 (0)