# What's the difference between org tags and org-roam tags?

**URL:** <https://org-roam.discourse.group/t/whats-the-difference-between-org-tags-and-org-roam-tags/1163>\
**Category:** How To\
**Created:** [January 13, 2021, 6:34am UTC](https://org-roam.discourse.group/t/whats-the-difference-between-org-tags-and-org-roam-tags/1163 "2021-01-13T06:34:08Z")\
**Posts on this page:** 1\
**Showing post:** 4

<div class="post-metadata">

**Author:** ![real-or-random](https://yyz2.discourse-cdn.com/free1/user_avatar/org-roam.discourse.group/real-or-random/32/514_2.png) [@real-or-random](https://org-roam.discourse.group/u/real-or-random)\
**Post date:** [January 18, 2021, 9:47am UTC](https://org-roam.discourse.group/t/whats-the-difference-between-org-tags-and-org-roam-tags/1163/4 "2021-01-18T09:47:15Z")

</div>

As the previous posts said, it seems that there’s no single answer and people use them for very different purposes.

If you’re replicating tags from other fields, then you may look into the corresponding section in the [Org-roam User Manual](https://www.orgroam.com/manual.html#Customizing-Tag-Extraction).

I currently simply define tags to be my org CATEGORY:

```auto
  (defun org-roam--extract-tags-category (_file)
    "Extract category from the current buffer's \"#category\" global property."
    (cdr (assoc "CATEGORY" (org-roam--collect-keywords '("CATEGORY")))))
  (setq org-roam-tag-sources '(prop category))

```

I use a handful very simple broad categories like Personal and Work.  
Categories anyway show up in the agenda and I have a simple way of filtering my notes.

---

_[View the full topic](https://org-roam.discourse.group/t/whats-the-difference-between-org-tags-and-org-roam-tags/1163)._
