I'm trying to send text from a multiline SharePoint column to a Word doc, using Power Automate. The html_to_text action recognises a bulleted list (which I don't need), but it doesn't seem to recognise words in bold, which I do need.
Any ideas how to pass the bold formatting?
Currently we cannot pass the bold formatting.
This is by design that Bold will not be retained, and Unordered lists will use * as prefix when we use Content Conversion service:
More information about Html to text action for your reference:
https://learn.microsoft.com/en-us/connectors/conversionservice/#html-to-text
Related
is there any way I could open an office document (Word, excel) with the cursor position at a specific string that is given as input ?
The requirement is part of a search and replace functionality and the client would like to open a document with the cursor positioned at the first occurrence of the search term. Highlighting it as well if possible. I have tried researching for this, but didn't find any helpful resources.
We are using Aspose and the Component Object Model (COM)
Help would be much appreciated!
It is possible to search text using Aspose.Words and Aspose.Cells. You can also highlight the searched term in the search results. For example you can search in an excel document using Worksheet.Cells.Find() method. Once cell is found, it could be highlighted with any color using Cell.SetStyle() method. Please visit the following links for details on how to search and highlight text using Aspose.Words and Aspose.Cells:
Aspose.Words: How to Find and Highlight Text
Aspose.Cells: Find or Search Data
Aspose.Cells: Setting Colors and Background Patterns
I work with Aspose as Developer evangelist.
I am trying to insert bold characters in a text data tag on my Docusign template.
I have tried many different ways of bolding characters (<b>, <em>, <strong>, <h1>, <h2>, <h3>, **) but none of these succeed.
I am aware that I can set the data field to be bold but I only want some of the data to be affected and splitting up my data to have bold and non-bold areas would make the template chaotic and difficult to maintain.
Any ideas?
Thank you.
DocuSign does not support partial formatting of Text tags. The formatting options available are for the the entire tag.
From Documentation
Formatting - defines the font family, size, and color, and character styling; for text fields, there is an additional formatting property to hide the text entered with asterisks, concealing the data from anyone else viewing the document.
I should like to append a string to the end of a Rich Text Box, on a button press.
I have configured the button to "set a field's value" on press, with the value being configured as:
concat(richTextBox, string_to_append)
However the concat function removes any existing formatting on the text in the text box.
Is there any way to tell concat() to preserve existing formatting
OR
Is there some way to convert the strings to byte arrays, then join and convert back?
(Using Infopath 2010 to edit a Sharepoint form.)
In my SharePoint site I have a list wich has a column that contains rich text in it. (i.e text with bold, color and italic style).
Now when user perform search, If the search key word match with the data in rich text column it will show that record as a search result which is perfect.
But the result in search result page show that text in plain format and my requirement is to show that result along with its formating i.e with bold and italic style.
Can any one tell me how to achieve this...!
Thanks
Sachin !
You need to implement custom search result page. Example here.
When I go over a text document ,I divide the content into different categories by highlighting sentences with different colors.
I would like to have the ability to create a set of categories , and then go over the text and mark a sentence and assign it to one of the categories.
and then have the option to see a filtered text, that contains only the sentences of one or more categories.
I would like to find out ,whether open-office or microsoft office support this, and if not, if there are plugins for that, and if not, to have some directions for how to use the api of open office for that.
Using colors would make this difficult, but in Microsoft Office (for example) you can use styles as a starting point. Create multiple styles, each of which have a meaningful name (such as "Important", "Irrelevant" or "Miscategorized") and associated each style with a color.
You can then create a macro fairly easily which will hide the style you don't want to see. Or you can temporarily change the colors or the font sizes to be invisible.