I do a program in Java 8, it reads the emails from my inbox, that its by using te API Trello, creates a card.
The card its formed by Title, description, label (Priority), and attatchments.
My problem its in the section of description.
I do that the attachments received, in case of i received, it puts the images in description, but i have the problem that it puts the images but after o before, it puts a text like "[image]".
According to see some threads, API Trello does not have posibility to control this.
I attach a photo.
Hi!
You're right that the Trello API doesn't have built-in options to control or remove the "[image]" text that appears when you add attachments to the description. However, you can handle this in your script. For instance, you could use a simple regex replacement to strip out the "[image]" text from the descriptions. This way, after you add the attachments, you can clean up the description by removing any unwanted text.
While there's no direct API parameter to solve this, handling it in your script should do the trick.
Let me know if you have any questions!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.