Summarise fusion code

Hi, how can I summarise this fusion code (link1 to link8 are alway the same) ? Is there a solution?

prototype(Ws.Fshsite:HomeGrid) < prototype(Neos.Neos:Content) {
attributes.class = 'container sj-homegrid'
templatePath = 'resource://Ws.Fshsite/Private/Templates/NodeTypes/HomeGrid.html'
columns.iterationName = 'multiColumnIteration'
link1.@process.convertUris = Neos.Neos:ConvertUris {
    forceConversion = true
}
link2.@process.convertUris = Neos.Neos:ConvertUris {
    forceConversion = true
}
link3.@process.convertUris = Neos.Neos:ConvertUris {
    forceConversion = true
}
link4.@process.convertUris = Neos.Neos:ConvertUris {
    forceConversion = true
}
link5.@process.convertUris = Neos.Neos:ConvertUris {
    forceConversion = true
}
link6.@process.convertUris = Neos.Neos:ConvertUris {
    forceConversion = true
}
link7.@process.convertUris = Neos.Neos:ConvertUris {
    forceConversion = true
}
link8.@process.convertUris = Neos.Neos:ConvertUris {
    forceConversion = true
}

}

How about doing the @process only on the whole thing?

Thanks für your answer. Yes, but how does it work?

This don’t work:

.@process.convertUris = Neos.Neos:ConvertUris { forceConversion = true }

ahh, I try this and it works:
@process.convertUris = Neos.Neos:ConvertUris { forceConversion = true }

Is that a fine synthax?

Thanks a lot to show me the right way!