How to create tags? Docpad - tags

How can I make the tags?
For example http://dogfeet.github.io
Are there other examples?
I'm add docpad-plugin-tagging but, Digital tags are not displayed alttest.herokuapp.com/tags/404.html :(
and how to create tags to one page alttest.herokuapp.com/posts/2013/2013-03-24_car_driving? Only Tags page, not all
my repo https://github.com/npofopr/_altyncev_test

You can add tags as an array or Comma Separated Value inside your meta data:
----
title: "My post title"
tags: "tag1 tag2 tag3"
----
Then access the tags for the current document via:
#document.tags

Related

Azure DevOps Wiki: How to link inside a page?

At my DevOps Wiki I have a page and want to create a index including links to the articles.
Mainly I find this manual to do this: learn.microsoft.com...
But I don't get it working.
How can I link inside a Wiki page? Could you show an example?
I guess I have to set a anchor to the headers and link than the Index item to the anchor?!
Here a example:
Index
1.First article
2.Second article
#1.First article
bla bla bla ...
#2.Second article
bla bla bla ...
and a image
I suspect you are suffering a bit of a nomenclature issue. Re: "I have a page and want to create a index including links to the articles."
As a rule 'page' and "article" are synonymous. As best I can tell, when you say "article" you mean sub-sections of the same page/article. Subsections of a page/article are delineated by you and your use of headers.
When you say "index", I imagine you mean the result provided by a Table of contents (TOC). If you wanted greater control than the TOC provides, you could construct your own "index" of links to just the headers of your choosing, e.g this sample page:
# My Index
1. [First Index Item, H1](#heading1).
1. [Second Index Item, H2.1](#heading2.1).
1. [Third Index Item, H4](#heading4).
# Heading1
Add a bunch of filler here to space out the page so you can see the result of selecting your '_Index_" items ([My Index](#my-index) above).
# Heading2
Add a bunch of filler here to space out the page.
## Heading2.1
Add a bunch of filler here to space out the page.
# Heading3
Add a bunch of filler here to space out the page.
# Heading4
Add a bunch of filler here to space out the page.
here's an example for the syntax:
- [Article1](/Articles/Aricle1)
In the round brackets the path to the article relative to that wikipage is written.

Search for pages tagged with a tag title

In order to get pages tagged with a certain tag in AEM query builder, we will do as this doc (https://helpx.adobe.com/experience-manager/6-2/sites/developing/using/querybuilder-api.html)
path=/content/...
type=cq:Page
tagid=marketing:interest/product
tagid.property=jcr:content/cq:tags
But how do we get pages that have the same tag title without using the whole tag's ID or full path above ?
For example
path=/content/...
type=cq:Page
tagtitle=product
tagid.property=jcr:content/cq:tags
You could use something like that:
JCR like:
path=/content/..
type=cq:Page
property=jcr:content/#cq:tags
property.value=%tagname
property.operation=like
This would search for cq:tags property with value that ends with "product".
See more about jcr:like function.
Another possible solution:
Full text search:
path=/content/somesite
type=cq:Page
fulltext.relPath=jcr:content/#cq:tags
fulltext=tagname
See more about jcr:contains function

CKAN - Add Tags at Resources

i'm trying to add tags to a Resource. For now, it is handling it as a simple string, and i want to be saved as a list of tags, not a string with tags separated by commas.

Implement a tag system in SugarCRM

I'd like to implement a tag system to a SugarCRM that has the following characteristics:
User can create any new tag just by writing the new tag into the tag field
Existing tags are suggested for user to choose, in order to avoid having similar tags (e.g. if user tried to enter "sugar" as tag, it should be suggested for them to choose "SugarCRM")
Search by tag should result only records that have that tag, but not records that have that tag as a keyword in title or description fields
All record in all modules should have a tag field
It would be nice if a search by tag could be made throughout all modules
Does anyone know if there is already some implementation for this?
There are several on SugarForge. I've used SugarTAGS from CARRENET (http://www.sugarforge.org/projects/sugartags/) as a starting point before.

Build Typo3 links from a Link-Type field

I have a link-type field in the backend. This stores the information like this:
"3 _blank" <----- for internal pages
"http://www.google.com _blank" <--- for external pages
How can I build links in Typoscript, using this values? Common typolink technique wont apply here.
it will apply put these values as typolink's parameter
lib.mylink = TEXT
lib.mylink.parameter = 3 _blank
It will create a link to page
Page title here