mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-02 23:10:06 +08:00
Add blog and changelog categories
This commit is contained in:
parent
bae4c4aacc
commit
1176ed3e70
@ -1,3 +1,7 @@
|
||||
---
|
||||
categories: blog
|
||||
---
|
||||
|
||||
# [Blogs](https://spacevim.org/community#blogs) > Use Vim as a Java IDE
|
||||
|
||||
I am a vimmer and a java developer. Here are some useful plugins for developing java in vim/neovim.
|
||||
|
@ -24,8 +24,10 @@ To report an issue or give feedback to the developers, please use the [issue tra
|
||||
|
||||
<ul>
|
||||
{% for post in site.posts %}
|
||||
{% if post.categories == "blog" %}
|
||||
<li>
|
||||
<a href="{{ post.url }}">{{ post.title }}</a>
|
||||
</li>
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</ul>
|
||||
|
@ -32,3 +32,15 @@ endfunction
|
||||
```
|
||||
|
||||
4. send PR to SpaceVim.
|
||||
|
||||
## Changelog
|
||||
|
||||
<ul>
|
||||
{% for post in site.posts %}
|
||||
{% if post.categories == "changelog" %}
|
||||
<li>
|
||||
<a href="{{ post.url }}">{{ post.title }}</a>
|
||||
</li>
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</ul>
|
||||
|
Loading…
Reference in New Issue
Block a user