Bullets which include links will prevent correct copy/paste content from word document to wiki page.

I have a word document around 20 pages which contains the following sentence (a bullet with two links):-
Now if I remove this sentence then copy/paste the 20 pages from word to wiki page they will be pasted correctly inside the wiki page , where all the pages, bullets, etc will be mapped correctly inside the wiki page as HTML tables, bullets ,etc.
But the problem if I kept the above sentence then the whole 20 pages will be pasted as plain text inside the wiki page.
So can anyone advice on this ?and how I can overcome it ?

Hi John,
You can try this (1) Save as Word Doc as single file web page (2) Open that file in normal text editor(notepad or so) and copy all (3) Goto Wiki page edit source and paste all (4) Save it
Let us know how it goes.
please 'Propose as answer' if it help you, also de-mark it if it didn't. Thank you!
the result will be as follow, not sure if this is a valid approach can you adivce ?:-

Similar Messages

  • How to copy-paste frames from one document to other with there respective layers intact?

    Hi All,
         I am facing an issue while copy paste frames from one document to other. I have a 3 frames in first documents each one on different layer. First document has 3 layers. The second document too have 3 layers , I am copying frames from first document to scrapdata using 'ICopyCmdData ' and 'kCopyCmdBoss'. I have 'Paste Remembers Layers' menu 'Checked' on Layer panel. I am using following function to copy frames to scrapdata.
    bool16 copyStencilsFromTheTemplateDocumentIntoScrapData(PMString & templateFilePath)
         bool16 result = kFalse;
        do
            SDKLayoutHelper sdklhelp;
            PMString filePathItemsToBeCopiedFrom(templateFilePath);  //("c:\\test\\aa.indt");
            IDFile templateIDFile(filePathItemsToBeCopiedFrom);
            UIDRef templateDocUIDRef = sdklhelp.OpenDocument(templateIDFile);
            if(templateDocUIDRef == UIDRef ::gNull)                 
                break;
            ErrorCode err = sdklhelp.OpenLayoutWindow(templateDocUIDRef);
            if(err == kFailure)                 
                break;
            InterfacePtr<IDocument> templatedoc(templateDocUIDRef,UseDefaultIID());
            if(templatedoc == nil)               
                break;
            InterfacePtr<ISpreadList>templateSpreadUIDList(templatedoc,UseDefaultIID());
            if(templateSpreadUIDList == nil)                  
                break;
            IDataBase * templateDocDatabase = templateDocUIDRef.GetDataBase();
            if(templateDocDatabase == nil)                  
                break;
            UIDRef templateDocFirstSpreadUIDRef(templateDocDatabase, templateSpreadUIDList->GetNthSpreadUID(0));
            InterfacePtr<ISpread> templateSpread(templateDocFirstSpreadUIDRef, IID_ISPREAD);
            if(templateSpread == nil)                 
                break;
            UIDList templateFrameUIDList(templateDocDatabase);
            if(templateSpread->GetNthPageUID(0)== kInvalidUID)                  
                break;      
            templateSpread->GetItemsOnPage(0,&templateFrameUIDList,kFalse,kTrue);  
            InterfacePtr<ICommand> copyStencilsCMD(CmdUtils::CreateCommand(kCopyCmdBoss));
            if(copyStencilsCMD == nil)                
                break;
            InterfacePtr<ICopyCmdData> cmdData(copyStencilsCMD, IID_ICOPYCMDDATA);
            if(cmdData == nil)                 
                break;
            // Copy cmd will own this list
            UIDList* listCopy = new UIDList(templateFrameUIDList);
            InterfacePtr<IClipboardController> clipboardController(gSession,UseDefaultIID());
            if(clipboardController == nil)              
                break;
            ErrorCode status = clipboardController->PrepareForCopy();
            if(status == kFailure)                  
                break;
            InterfacePtr<IDataExchangeHandler> scrapHandler(clipboardController->QueryHandler(kPageItemFlavor));
            if(scrapHandler == nil)                 
                break;
            clipboardController->SetActiveScrapHandler(scrapHandler);
            InterfacePtr<IPageItemScrapData> scrapData(scrapHandler, UseDefaultIID());
            if(scrapData== nil)                
                break;
            UIDRef parent = scrapData->GetRootNode();
            cmdData->Set(copyStencilsCMD, listCopy, parent, scrapHandler);
            if(templateFrameUIDList.Length() == 0)       
                return kFalse;      
            else      
                status = CmdUtils::ProcessCommand(copyStencilsCMD);    
            if(status != kFailure)
              result = kTrue;
            sdklhelp.CloseDocument(templateDocUIDRef,kFalse,K2::kSuppressUI, kFalse);
        }while(kFalse);
        return result;
    After this I need to close first document. Now I am opening the second document from indt file which has same number of layers as first document. I am trying to paste frames from scrap data to second document using '' 'ICopyCmdData ' and 'kPasteCmdBoss' as shown in follwoing function
    bool16 pasteTheItemsFromScrapDataOntoOpenDocument(UIDRef &documentDocUIDRef )
        bool16 result = kFalse;
        do
               InterfacePtr<IClipboardController> clipboardController(gSession,UseDefaultIID());
                if(clipboardController == nil)
                    break;
               InterfacePtr<IDataExchangeHandler> scrapHandler(clipboardController->QueryHandler(kPageItemFlavor));
               if(scrapHandler == nil)               
                    break;
               InterfacePtr<IPageItemScrapData> scrapData(scrapHandler, UseDefaultIID());
                if(scrapData == nil)
                   break;
                     //This will give the list of items present on the scrap
                UIDList* scrapContents = scrapData->CreateUIDList();
                if (scrapContents->Length() >= 1)
                    InterfacePtr<IDocument> dataToBeSprayedDocument(documentDocUIDRef,UseDefaultIID());
                    if(dataToBeSprayedDocument == nil)
                       break;
                    InterfacePtr<ISpreadList>dataToBeSprayedDocumentSpreadList(dataToBeSprayedDocument,UseDef aultIID());
                    if(dataToBeSprayedDocumentSpreadList == nil)
                         break;
                    IDataBase * dataToBeSprayedDocDatabase = documentDocUIDRef.GetDataBase();
                    if(dataToBeSprayedDocDatabase == nil)
                         break;    
                    UIDRef spreadUIDRef(dataToBeSprayedDocDatabase, dataToBeSprayedDocumentSpreadList->GetNthSpreadUID(0));               
                    SDKLayoutHelper sdklhelp;
                    UIDRef parentLayerUIDRef = sdklhelp.GetSpreadLayerRef(spreadUIDRef);
                    InterfacePtr<IPageItemScrapData> localScrapData(scrapHandler, UseDefaultIID());
                    if(localScrapData == nil)
                        break;
                    if(parentLayerUIDRef.GetUID() == kInvalidUID)
                        break;
                    InterfacePtr<ICommand> pasteToClipBoardCMD (CmdUtils::CreateCommand(kPasteCmdBoss));
                    if(pasteToClipBoardCMD == nil)
                        break;
                    InterfacePtr<ICopyCmdData> cmdData(pasteToClipBoardCMD, UseDefaultIID());
                    if(cmdData == nil)
                        break;
                    if(scrapContents == nil)
                        break;               
                    PMPoint offset(0.0, 0.0);
                    cmdData->SetOffset(offset);
                    cmdData->Set(pasteToClipBoardCMD, scrapContents, parentLayerUIDRef );
                    ErrorCode status = CmdUtils::ProcessCommand(pasteToClipBoardCMD);
                    if(status == kSuccess)
                        CA("result = kTrue");
                        result = kTrue;
                }//end if (scrapContents->Length() >= 1)       
        }while(kFalse);
        return result;
         Here in above function its required to set Parent Layer UIDRef and because of this all frames are getting paste in one layer.
    Is there any way we can paste frame in there respective layers?
         Also I need to work this code with CS4 server and desktop indesign.
    Thanks in advance,
    Rahul Dalvi

    Try,
    // dstDoc must be FrontDocument
    InterfacePtr<ILayoutControlData> layoutData(Utils<ILayoutUIUtils>()->QueryFrontLayoutData());
    InterfacePtr<ICommand> createMasterFromMasterCmd(CmdUtils::CreateCommand(kCreateMasterFromMasterCmdBoss));
    createMasterFromMasterCmd->SetItemList(UIDList(srcMasterSpreadUIDRef));
    InterfacePtr<ILayoutCmdData> layoutCmdData(createMasterFromMasterCmd, UseDefaultIID());
    layoutCmdData->Set(::GetUIDRef(layoutData->GetDocument()), layoutData);
    CmdUtils::ProcessCommand(createMasterFromMasterCmd);

  • Copy Paste content from PDF shows a missing character

    Our website, a4academics provides a platform for sharing academic projects and seminar reports in PDF for Students. We are getting a complaint from students, that when they copy and paste the content from PDF, the word " F " is not getting copied in some reports. What might be the reason ? Is it because of the issue with the software which created the PDF report. Its happening in few PDF files only.

    Currently to download the PDF FB like is needed. That why i asked your mail id. If you dont want to give FB like, please send the mail id.
    PDF is attached at the bottom of the link  given below
    http://a4academics.com/final-year-be-project/12-be-ece-electronics-and-communication-proje ct/503-home-based-wireless-health-monitoring-system
    I had copy pasted a part of the report to notepad++. Its appears as shown below. F is missing in defining
    "de ning the "Einthoven triangle" - an equilateral triangle with the heart at the centre."

  • Copy/paste text from Word doc or PDF to Robohelp

    Bolded words, indentions, paragraphs, line spacing, font, and
    text size amongst other things are lost when I do a simple
    copy/paste... Any way to relieve this?
    Thanks

    Hi
    I'd like to answer this in a slightly different way..
    It's a good idea to format anything you paste into RH in RH
    using paragraph styles etc. Hardcoded formatting won't be under
    stylesheet control which is very bad news.
    In fact I generally paste stuff from a word doc into notepad
    first to remove any formatting soI have "clean" text to begin with.
    That way you ensure consistency when styles are updated etc
    as well maintaining consistency with what's already there.

  • Copy/paste Footnotes from Word

    I am writing my thesis and want to format in Pages. I did most of my work on Word, but it does not format pictures nearly as well. I copy-pasted my essay to Pages, but the new program does not recognizemy footnotes. Any help or suggestions?

    Pages divorces foot notes from what it classifies as body text. If the footnotes are not preserved in the Pages body text, you will have to perform insert footnote to in the corresponding location of the original Word text.
    Select the actual footnote text in word, copy, and in Pages, single click the corresponding footnote text area at the bottom of the Pages document. This will display as a box around the footnote text area. Double-click in this specific footnote text area, and then paste the content from the Word footnote text.

  • Freeze when copy paste text from word to Indesign CC

    Hi,
    I have a problem when working with indesign CC. When i'm copying text from word to Indesign, after a while my windows system freezes. Only Indesign works. Windows and word are frozen. After a while (several minutes) the system works agian.
    This problem occurs sinc I have Indesign CC.
    Windows 8, indesign CC, Word 2013
    I hope someone has a solution.
    Ragards Bas

    It's the PDF.
    Usually, you can copy text out of a PDF, but there is no guarantee *at all*. Older software used to take shortcuts to subset fonts: first character it encountered got coded as #1, the next as #2, etc. etc. If you do a search & replace of each of the nonsense characters, you'll slowly see the original text appearing (thst's not as simple as it sounds, though).
    A similar "problem" is that sometimes spaces don't get copied (there is no need for a "Space Character" in a PDF), and that you cannot copy contiguous lines of text as a single paragraph. All of it is because a PDF is not intended nor designed to be re-used after creation.
    If you really need this text and don't want to type it in, try to get hold of the original file.

  • Copy/paste in a Word document loses its format (bullet points, coloured tex, etc) when Firefox is open. When I close Firefox it is fine again. I am not talking about copying and pasting text between MS Word and Firefox. It is within MS Word itself.

    Firefox 11.0
    MS Word 2003 Basic Edition SP3

    Disabling the the Skype Click to Call extension fixed the problem.
    Many thanks !!!!!!

  • Copy/Paste Text from Word

    I've written a seminar on Word (Greek & English). I want
    this text on Director.
    When I copy the Word text and paste it on Director (on a text
    field) it changes the fonts.
    The problem is that, although I change the fonts on the whole
    text (to "Times New Roman Greek"), the english words sometimes look
    strange. So, I have to mark every english word and change its fonts
    from "Times New Roman Greek" to Times New Roman. As you see, it's a
    very time-consuming process and very exhausting. Is there an easier
    way doing this?

    download and extract to your director xtras folder:
    http://xtrema.rtr.gr/beta/xtrema.zip
    Copy the text you want to translate to clipboard, and then,
    from your
    message window, try:
    _d().fromClip().toS(1253).toClip()
    then try pasting the text.
    1253 is the code page for greek.
    For mac code pages supported by windows (values you can pass
    to the toS()
    command), check the second link - for greek, it's 10006.
    http://www.microsoft.com/globaldev/reference/WinCP.mspx
    http://support.microsoft.com/kb/187858
    "Renos83" <[email protected]> wrote in
    message
    news:g1ehdb$a5s$[email protected]..
    > I've written a seminar on Word (Greek & English). I
    want this text on
    > Director.
    > When I copy the Word text and paste it on Director (on a
    text field) it
    > changes the fonts.
    > The problem is that, although I change the fonts on the
    whole text (to
    > "Times
    > New Roman Greek"), the english words sometimes look
    strange. So, I have to
    > mark
    > every english word and change its fonts from "Times New
    Roman Greek" to
    > Times
    > New Roman. As you see, it's a very time-consuming
    process and very
    > exhausting.
    > Is there an easier way doing this?
    >

  • Copy Chinese Text from Word to SAP Script

    Hi,
    I need to change Chinese form. I am not able to copy Chinese text from word document to SAP Script.
    When I copy Chinese text from word to SAP Script, I am getting the Chinese text &#25215;&#36816;&#21830;&#31614; as ?????.
    I have done the following steps in my PC and SAP front end settings.
    1. At the Operating system level install the Chinees language.[Control panel - >Regional and language Option - >language Tab - > Click on Install Files for East Asian languages] If these language already installed then click on Detail and add the Chinese languages[Chinese (PRS) and Chinese(Taiwan).
    2. At SAP level click on Customizing of Local layout[Alt+F12] and click on options.Go to tab I18N and click on Activate the multi-byte functionalities to support check box.
    4.Take care of the Font while assigning to Character formar or paragraph format. Dont use normal font name. Example of chinese phone "CNSONG".
    Please help on the same.
    Thanks & Regards,
    Govind.

    Hello,
    I hope when you are changing form ,you hv logged in  chinese language .
    Sap log-in: Chinese ,PC-setting : chinese font loaded & correct charcter format in script : chinese font.
    If all this is there then you should not hv trouble in getting chinese text from word to SAP script.
    Thanks.

  • Formatting issues in sharepoint 2013 when copy/paste from word document

    Hi, 
    When we copy/paste content(rich text, tables, styles) from a word document to SharePoint site whole formatting is messed up.
    is this the limitation of SharePoint 2013?
    Thanks, 
    Shiva.

    Hi Shiva,
    Some styles for font of rich text aren't be kept when I copy the content from Word 2013 and paste into a wiki page from SharePoint 2010/2013(even SharePoint 2007 like this
    post) site as same as yours, it looks like a limitation.
    As a workaround, we can publish the Word content as a Blog article in SharePoint site, then copy the content from the blog page to the needed SharePoint page, it will keep the rich text content format, you can have a try.
    http://plexhosted.com/billing/knowledgebase/274/How-to-publish-a-SharePoint-blog-article-via-Microsoft-Word-2013-SharePoint-2013.html
    Thanks
    Daniel Yang
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Does anyone know of a VI or how to go about writing one that will prevent the computers time/date from being disabled while an application is running.

    Does anyone know of a VI or how to go about writing one that will prevent the computers clock/time from being disabled while an application is running. The time and date can normally be reset while an application is running by clicking on the time/date in the lower right-hand corner of the computer screen. I have an application that runs over several days and it is critical that the time and date of the computer not be changed. Is there an easy way to lock this out from the user? Note that I am what I consider an advanced beginner in LV.
    Thank you,
    Chuck
    Solved!
    Go to Solution.

    That is not something you can do from LabVIEW, as it is an operating system operation, and it will depend on the operating system that you're using. On Windows you can use a group policy to control this. Please Google on "prevent time and date change in windows".
    Also, please try to refrain from stuffing your entire message in the subject block. Keep the subject short, but descriptive enough so it can be understood what you are basically asking. Thanks.

  • When I try copying some content from a webpage and paste it to quickoffice document or in e Mail. all the text copies but, no graphics/pictures. how to get them pasted?

    I tried copying some content from various websites (open content from plian HTML pages) and tried to paste it in Quickoffice document as well as in mai application. all the text got pasted properly however the content had some graphics and pictures in it that did not get pasted. So, I want to know if there is any way I can do the copy and paste from website including embedded graphics

    You will need to copy and paste the images separately from the text. Or you can try pasting into TextEdit. However, it should work if the editor can handle RTFD files as does TextEdit. You cannot copy images to a plain text document or editor.

  • Hyphenation issues when copying from word document

    OS X Mavericks / Indesign CC2014
    I'm having an issue copying & pasting text from Microsoft Word into an Indesign document. Mainly happens with copy in foreign language (in my case Spanish & Polish). If I copy a block of text with a hyphen in it, the hyphen comes over as a character (like a manually inserted hyphen) and stays with the copy, even in the middle of a paragraph. If I select all of the copy in Word, then turn off hyphenation, I don't have the issue as all of the automatic hyphenation is removed. But sometimes I forget...
    Any thoughts on why this occurs - don't really notice it happening with English copy.

    What happens when you place the same block of text instead of copying & pasting? Sometimes I have to do some pretty extensive file massage (conversion to other formats, opening those other formats in OpenOffice, etc.) to get multilingual stuff to work at all.
    Word's handling of hyphenation is odd, and I don't trust the clipboard. If you're using Word files supplied by third parties (which seems likely) you could have files from a variety of platforms and versions in play. Maybe somebody inserted Optional Hyphens in these languages?
    There's a preference for "Clipboard Handling" that will let you choose whether you're pasting raw text or rich text

  • Can't shown chinese text when copy & paste data from server to Outlook, Word & notepad, etc.( Office 2013)

    Can't shown chinese text when copy & paste data from server to Outlook, Word & notepad, etc.( Office 2013)

    Hi
    As per the information and details provided by you, when you copy & paste a data from server to Outlook, word, notepad, then you do not receive the Chinese text.
    For Outlook, please follow these steps: -
    Close and reopen Outlook in your western locale (or switch the windows system to your Western locale if you changed that),
    Manually change the message from Western to Chinese encoding, which you can do in all versions up to Outlook 2007.
    If you want to stay in your Chinese locale in Outlook 2007, then:
    After you hit reply, go to the Option tab > More Options.
    In the Encoding drop-down menu, select the Chinese encoding you are working in (Not the encoding used by the person who will receive the message)
    Note:
    To set the Chinese locale in all versions up to 2007 the controls are under.
    Tools > Options. In Outlook 2010 File tab > Options > Advanced > International options.
    Unicode (UTF-8)
    is a good setting for multilingual users.
    Check the
    Auto select 2007)/ Automatically select (2010) encoding box.
    I hope this information will be helpful for you.
    Thanks and regards
    Shweta@G 

  • Can you copy/paste files from the Finder to Mail in Lion, or drag them onto the Mail icon in the Dock to create a new message and attach the files to it?

    Message title says it: Can you copy/paste files from the Finder to Mail in Lion, or drag them onto the Mail icon in the Dock to create a new message and attach the files to it?
    I can't find anything in the Knowledge Base that says these two options no longer work or still do.
    I do not have a system capable of running Lion, but I need to know the answer nonetheless.

    Gee, I don't know: "paste attachments mail Lion"? ;-)
    One further question, if I may: in Panther (which is where I've aggregated nearly 7 years of mail), if you copy more than one file in the Finder, switch to Mail, and paste the files into a new message, only the file names paste in. If you copy one file and paste it into a Mail message, you get the file, not just the name. Is that still true, or has that (IMHO) bug been fixed since 10.3.9?

Maybe you are looking for